diff --git a/src/grammar.json b/src/grammar.json index ea7b64c..7d962dd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -41,6 +41,10 @@ "type": "SYMBOL", "name": "drop_function_statement" }, + { + "type": "SYMBOL", + "name": "drop_type_statement" + }, { "type": "SYMBOL", "name": "create_table_statement" @@ -95,6 +99,97 @@ } ] }, + "drop_type_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[dD][rR][oO][pP]" + }, + "named": false, + "value": "drop" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + }, + "named": false, + "value": "type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_exists" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[cC][aA][sS][cC][aA][dD][eE]" + }, + "named": false, + "value": "cascade" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[rR][eE][sS][tT][rR][iI][cC][tT]" + }, + "named": false, + "value": "restrict" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, "update_statement": { "type": "SEQ", "members": [ @@ -787,6 +882,23 @@ { "type": "SYMBOL", "name": "select_statement" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "select_statement" + }, + { + "type": "STRING", + "value": ")" + } + ] } ] }, @@ -4615,6 +4727,10 @@ "type": "SYMBOL", "name": "get_diagnostics_statement" }, + { + "type": "SYMBOL", + "name": "open_cursor_statement" + }, { "type": "SYMBOL", "name": "return_statement" @@ -4647,6 +4763,46 @@ } ] }, + "open_cursor_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[oO][pP][eE][nN]" + }, + "named": false, + "value": "open" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + }, + "named": false, + "value": "for" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_statement" + }, + { + "type": "SYMBOL", + "name": "execute_statement" + } + ] + } + ] + }, "get_diagnostics_statement": { "type": "SEQ", "members": [ @@ -6667,7 +6823,7 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "_type" }, { "type": "SYMBOL", @@ -6695,7 +6851,7 @@ }, { "type": "SYMBOL", - "name": "identifier" + "name": "_type" } ] }, @@ -7470,6 +7626,10 @@ "type": "SYMBOL", "name": "function_call" }, + { + "type": "SYMBOL", + "name": "array_constructor" + }, { "type": "SYMBOL", "name": "op_expression" @@ -7501,6 +7661,61 @@ } ] }, + "array_constructor": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[aA][rR][rR][aA][yY]" + }, + "named": false, + "value": "array" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, "dollar_quote_string": { "type": "SEQ", "members": [ @@ -7518,7 +7733,7 @@ }, { "type": "PATTERN", - "value": "(([^$]+)|(%\\d+\\$s)|(\\$\\d+))+" + "value": "(([^$]+)|(%\\d+\\$[sI])|(\\$\\d+))+" }, { "type": "STRING", @@ -7970,7 +8185,7 @@ }, { "type": "SYMBOL", - "name": "identifier" + "name": "_type" } ] } diff --git a/src/node-types.json b/src/node-types.json index 69daf32..8e8e077 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -11,6 +11,10 @@ "type": "alter_column_type", "named": true }, + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -70,6 +74,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -288,6 +296,69 @@ "named": true, "fields": {} }, + { + "type": "array_constructor", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array_constructor", + "named": true + }, + { + "type": "dollar_quote_string", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "op_expression", + "named": true + }, + { + "type": "select_statement", + "named": true + }, + { + "type": "star", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "time_expression", + "named": true + }, + { + "type": "true", + "named": true + } + ] + } + }, { "type": "as", "named": true, @@ -311,6 +382,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -441,6 +516,10 @@ "type": "drop_function_statement", "named": true }, + { + "type": "drop_type_statement", + "named": true + }, { "type": "execute_statement", "named": true @@ -465,6 +544,10 @@ "type": "insert_statement", "named": true }, + { + "type": "open_cursor_statement", + "named": true + }, { "type": "perform_statement", "named": true @@ -523,6 +606,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "constraint_foreign_key", "named": true @@ -601,6 +688,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -1083,6 +1174,25 @@ ] } }, + { + "type": "drop_type_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "if_exists", + "named": true + } + ] + } + }, { "type": "execute_statement", "named": true, @@ -1091,6 +1201,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -1158,6 +1272,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -1246,6 +1364,10 @@ "type": "alter_table_statement", "named": true }, + { + "type": "array_constructor", + "named": true + }, { "type": "assign_statement", "named": true @@ -1294,6 +1416,10 @@ "type": "drop_function_statement", "named": true }, + { + "type": "drop_type_statement", + "named": true + }, { "type": "execute_statement", "named": true @@ -1342,6 +1468,10 @@ "type": "op_expression", "named": true }, + { + "type": "open_cursor_statement", + "named": true + }, { "type": "perform_statement", "named": true @@ -1473,6 +1603,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -1548,6 +1682,10 @@ "type": ".", "named": false }, + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -1622,6 +1760,10 @@ "type": "identifier", "named": true }, + { + "type": "predefined_types", + "named": true + }, { "type": "return_setof", "named": true @@ -1795,6 +1937,10 @@ "type": "alter_table_statement", "named": true }, + { + "type": "array_constructor", + "named": true + }, { "type": "assign_statement", "named": true @@ -1843,6 +1989,10 @@ "type": "drop_function_statement", "named": true }, + { + "type": "drop_type_statement", + "named": true + }, { "type": "execute_statement", "named": true @@ -1891,6 +2041,10 @@ "type": "op_expression", "named": true }, + { + "type": "open_cursor_statement", + "named": true + }, { "type": "perform_statement", "named": true @@ -1942,6 +2096,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2072,6 +2230,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2204,6 +2366,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2310,6 +2476,10 @@ "type": "and", "named": true }, + { + "type": "array_constructor", + "named": true + }, { "type": "cast", "named": true @@ -2378,6 +2548,10 @@ "type": "plus", "named": true }, + { + "type": "predefined_types", + "named": true + }, { "type": "select_statement", "named": true @@ -2401,6 +2575,29 @@ ] } }, + { + "type": "open_cursor_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "execute_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "select_statement", + "named": true + } + ] + } + }, { "type": "or", "named": true, @@ -2424,6 +2621,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2557,6 +2758,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2619,6 +2824,10 @@ { "type": "identifier", "named": true + }, + { + "type": "predefined_types", + "named": true } ] } @@ -2631,6 +2840,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2754,6 +2967,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2813,6 +3030,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2872,6 +3093,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2931,6 +3156,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -2990,6 +3219,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -3269,6 +3502,10 @@ "type": "drop_function_statement", "named": true }, + { + "type": "drop_type_statement", + "named": true + }, { "type": "grant_statement", "named": true @@ -3356,6 +3593,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "constraint_foreign_key", "named": true @@ -3424,6 +3665,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -3483,6 +3728,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -3631,6 +3880,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -3736,6 +3989,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -3799,6 +4056,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "array_constructor", + "named": true + }, { "type": "dollar_quote_string", "named": true @@ -4056,6 +4317,10 @@ "type": "and", "named": false }, + { + "type": "array", + "named": false + }, { "type": "as", "named": false @@ -4460,6 +4725,10 @@ "type": "on", "named": false }, + { + "type": "open", + "named": false + }, { "type": "or", "named": false diff --git a/src/parser.c b/src/parser.c index e1a745a..148fd32 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2127 +#define STATE_COUNT 2380 #define LARGE_STATE_COUNT 5 -#define SYMBOL_COUNT 383 +#define SYMBOL_COUNT 388 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 206 +#define TOKEN_COUNT 208 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -26,20 +26,20 @@ enum { anon_sym_SEMI = 1, - aux_sym_update_statement_token1 = 2, - aux_sym_update_statement_token2 = 3, - aux_sym_update_statement_token3 = 4, - anon_sym_COMMA = 5, - aux_sym_update_statement_token4 = 6, - aux_sym_drop_function_statement_token1 = 7, - aux_sym_drop_function_statement_token2 = 8, - aux_sym_drop_function_statement_token3 = 9, - aux_sym_drop_function_statement_token4 = 10, - anon_sym_LPAREN = 11, - anon_sym_RPAREN = 12, - aux_sym_create_type_statement_token1 = 13, - aux_sym_create_type_statement_token2 = 14, - aux_sym_create_type_statement_token3 = 15, + aux_sym_drop_type_statement_token1 = 2, + aux_sym_drop_type_statement_token2 = 3, + anon_sym_COMMA = 4, + aux_sym_drop_type_statement_token3 = 5, + aux_sym_drop_type_statement_token4 = 6, + aux_sym_update_statement_token1 = 7, + aux_sym_update_statement_token2 = 8, + aux_sym_update_statement_token3 = 9, + aux_sym_update_statement_token4 = 10, + aux_sym_drop_function_statement_token1 = 11, + anon_sym_LPAREN = 12, + anon_sym_RPAREN = 13, + aux_sym_create_type_statement_token1 = 14, + aux_sym_create_type_statement_token2 = 15, aux_sym_insert_statement_token1 = 16, aux_sym_insert_statement_token2 = 17, aux_sym_insert_items_token1 = 18, @@ -123,309 +123,314 @@ enum { aux_sym_trigger_scope_token3 = 96, aux_sym_trigger_exec_token1 = 97, aux_sym_trigger_cond_token1 = 98, - aux_sym_get_diagnostics_statement_token1 = 99, - aux_sym_get_diagnostics_statement_token2 = 100, - aux_sym_get_diagnostics_statement_token3 = 101, - aux_sym_for_statement_token1 = 102, - anon_sym_DOT_DOT = 103, - aux_sym_for_statement_token2 = 104, - aux_sym_for_statement_token3 = 105, - aux_sym_raise_statement_token1 = 106, - aux_sym_if_statement_token1 = 107, - aux_sym_if_statement_token2 = 108, - aux_sym_if_statement_token3 = 109, - aux_sym_if_statement_token4 = 110, - aux_sym_if_statement_token5 = 111, - anon_sym_COLON_EQ = 112, - aux_sym_return_statement_token1 = 113, - aux_sym_return_statement_token2 = 114, - aux_sym_perform_statement_token1 = 115, - aux_sym_select_statement_token1 = 116, - aux_sym_with_query_item_token1 = 117, - aux_sym_into_token1 = 118, - aux_sym_select_having_token1 = 119, - aux_sym_select_limit_token1 = 120, - aux_sym_select_offset_token1 = 121, - aux_sym_select_offset_token2 = 122, - aux_sym_select_order_by_token1 = 123, - aux_sym_join_item_token1 = 124, - aux_sym_join_item_token2 = 125, - aux_sym_join_item_token3 = 126, - aux_sym_join_type_token1 = 127, - aux_sym_join_type_token2 = 128, - aux_sym_join_type_token3 = 129, - aux_sym_join_type_token4 = 130, - aux_sym_join_type_token5 = 131, - aux_sym_create_function_statement_token1 = 132, - aux_sym_function_run_as_token1 = 133, - aux_sym_function_run_as_token2 = 134, - aux_sym_function_run_as_token3 = 135, - aux_sym_function_return_token1 = 136, - aux_sym_return_setof_token1 = 137, - aux_sym_function_volatility_token1 = 138, - aux_sym_function_volatility_token2 = 139, - aux_sym_function_volatility_token3 = 140, - aux_sym_body_token1 = 141, - anon_sym_DOLLAR = 142, - aux_sym_declarations_token1 = 143, - aux_sym_where_filter_token1 = 144, - aux_sym_or_replace_token1 = 145, - aux_sym_temporary_token1 = 146, - aux_sym_temporary_token2 = 147, - aux_sym_if_not_exists_token1 = 148, - anon_sym_LBRACK = 149, - anon_sym_RBRACK = 150, - aux_sym__type_token1 = 151, - aux_sym__type_token2 = 152, - aux_sym_predefined_types_token1 = 153, - anon_sym_SQUOTE = 154, - aux_sym_string_token1 = 155, - aux_sym_string_token2 = 156, - sym_comment = 157, - anon_sym_DOT = 158, - aux_sym_dollar_quote_string_token1 = 159, - aux_sym_time_expression_token1 = 160, - aux_sym_time_expression_token2 = 161, - aux_sym_time_expression_token3 = 162, - aux_sym_time_expression_token4 = 163, - aux_sym__interval_fields_token1 = 164, - aux_sym__interval_fields_token2 = 165, - aux_sym__interval_fields_token3 = 166, - aux_sym__interval_fields_token4 = 167, - aux_sym__interval_fields_token5 = 168, - aux_sym__interval_fields_token6 = 169, - anon_sym_STAR = 170, - anon_sym_SLASH = 171, - anon_sym_PERCENT = 172, - anon_sym_DASH = 173, - anon_sym_PLUS = 174, - anon_sym_LT = 175, - anon_sym_GT = 176, - anon_sym_LT_EQ = 177, - anon_sym_GT_EQ = 178, - anon_sym_LT_GT = 179, - anon_sym_BANG_EQ = 180, - aux_sym_contains_op_token1 = 181, - aux_sym_contains_op_token2 = 182, - aux_sym_contains_op_token3 = 183, - aux_sym_comparison_null_token1 = 184, - aux_sym_comparison_null_token2 = 185, - aux_sym_comparison_null_token3 = 186, - aux_sym_comparison_null_token4 = 187, - aux_sym_comparison_kw_token1 = 188, - aux_sym_comparison_kw_token2 = 189, - aux_sym_comparison_kw_token3 = 190, - anon_sym_PIPE_PIPE = 191, - anon_sym_LT_AT = 192, - anon_sym_AT_GT = 193, - anon_sym_LT_LT = 194, - anon_sym_GT_GT = 195, - anon_sym_AMP_AMP = 196, - anon_sym_AMP_LT = 197, - anon_sym_AMP_GT = 198, - anon_sym_DASH_PIPE_DASH = 199, - sym_cast = 200, - aux_sym_and_token1 = 201, - aux_sym_true_token1 = 202, - aux_sym_false_token1 = 203, - sym_number = 204, - sym__identifier = 205, - sym_source_file = 206, - sym__statement = 207, - sym_update_statement = 208, - sym_drop_function_statement = 209, - sym_drop_function_item = 210, - sym_create_type_statement = 211, - sym__with_query_statement = 212, - sym_insert_statement = 213, - sym_insert_items = 214, - sym_insert_item = 215, - sym_insert_conflict = 216, - sym_conflict_target = 217, - sym_update_set = 218, - sym_update_value = 219, - sym_returning = 220, - sym_create_table_statement = 221, - sym_create_table_item = 222, - sym_create_schema_statement = 223, - sym_schema_role = 224, - sym_create_index_statement = 225, - sym_index_using = 226, - sym_index_col = 227, - sym_index_col_dir = 228, - sym_index_col_nulls = 229, - sym_index_includes = 230, - sym_delete_statement = 231, - sym_delete_using = 232, - sym_alter_table_statement = 233, - sym_alter_table_change = 234, - sym_alter_table_action = 235, - sym_alter_column_action = 236, - sym_table_constraint = 237, - sym_constraint_when = 238, - sym_table_constraint_ty = 239, - sym_constraint_foreign_key = 240, - sym_fk_action = 241, - sym_fk_ref_action = 242, - sym_alter_column_type = 243, - sym_alter_table_fk_ref_action = 244, - sym_table_column_item = 245, - sym_column_constraint = 246, - sym_column_constraint_ty = 247, - sym_alter_table_rename_column = 248, - sym_alter_table_rename_constraint = 249, - sym_alter_table_rename_table = 250, - sym_alter_table_change_schema = 251, - sym_grant_statement = 252, - sym_grant_roles = 253, - sym_grant_privileges = 254, - sym_grant_targets = 255, - sym_grant_function = 256, - sym_psql_statement = 257, - sym_create_sequence_statement = 258, - sym_sequence_increment = 259, - sym_sequence_min = 260, - sym_sequence_max = 261, - sym_sequence_start = 262, - sym_sequence_cache = 263, - sym_sequence_cycle = 264, - sym_sequence_owned = 265, - sym_create_trigger_statement = 266, - sym_trigger_when = 267, - sym_trigger_event = 268, - sym_trigger_scope = 269, - sym_trigger_exec = 270, - sym_trigger_cond = 271, - sym__plpgsql_statement = 272, - sym_get_diagnostics_statement = 273, - sym_for_statement = 274, - sym_raise_statement = 275, - sym_if_statement = 276, - sym_execute_statement = 277, - sym_execute_using = 278, - sym_assign_statement = 279, - sym_return_statement = 280, - sym_perform_statement = 281, - sym_do_block = 282, - sym_select_statement = 283, - sym_with_query = 284, - sym_with_query_item = 285, - sym_into = 286, - sym_select_having = 287, - sym__select_limit_offset = 288, - sym_select_limit = 289, - sym_select_offset = 290, - sym_select_group_by = 291, - sym_select_order_by = 292, - sym_order_by_item = 293, - sym_order_by_direction = 294, - sym_select_where = 295, - sym_select_item = 296, - sym_select_from = 297, - sym_from_item = 298, - sym_from_select = 299, - sym_from_table = 300, - sym_from_function = 301, - sym_join_item = 302, - sym_join_condition = 303, - sym_join_type = 304, - sym_create_function_statement = 305, - sym_function_run_as = 306, - sym_function_return = 307, - sym_return_setof = 308, - sym_return_table = 309, - sym_function_volatility = 310, - sym_block = 311, - sym_body = 312, - sym_dollar_quote = 313, - sym_declarations = 314, - sym_var_definition = 315, - sym_function_signature = 316, - sym_function_parameters = 317, - sym_var_declaration = 318, - sym_where_filter = 319, - sym_or_replace = 320, - sym_temporary = 321, - sym_if_not_exists = 322, - sym_if_exists = 323, - sym_as = 324, - sym__type = 325, - sym_predefined_types = 326, - sym_precision = 327, - sym_string = 328, - sym__value_expression = 329, - sym_dollar_quote_string = 330, - sym_time_expression = 331, - sym__interval_fields = 332, - sym_function_call = 333, - sym_op_expression = 334, - sym__list_of_identifiers = 335, - sym_comparison_op = 336, - sym_contains_op = 337, - sym_comparison_null = 338, - sym_comparison_kw = 339, - sym_other_op = 340, - sym_minus = 341, - sym_plus = 342, - sym_not = 343, - sym_and = 344, - sym_or = 345, - sym_true = 346, - sym_false = 347, - sym_null = 348, - sym_star = 349, - sym_identifier = 350, - aux_sym_source_file_repeat1 = 351, - aux_sym_update_statement_repeat1 = 352, - aux_sym_update_statement_repeat2 = 353, - aux_sym_drop_function_statement_repeat1 = 354, - aux_sym_drop_function_item_repeat1 = 355, - aux_sym_create_type_statement_repeat1 = 356, - aux_sym_create_type_statement_repeat2 = 357, - aux_sym_insert_items_repeat1 = 358, - aux_sym_conflict_target_repeat1 = 359, - aux_sym_update_set_repeat1 = 360, - aux_sym_returning_repeat1 = 361, - aux_sym_create_table_statement_repeat1 = 362, - aux_sym_create_index_statement_repeat1 = 363, - aux_sym_alter_table_change_repeat1 = 364, - aux_sym_constraint_foreign_key_repeat1 = 365, - aux_sym_table_column_item_repeat1 = 366, - aux_sym_grant_roles_repeat1 = 367, - aux_sym_grant_privileges_repeat1 = 368, - aux_sym_grant_targets_repeat1 = 369, - aux_sym_grant_function_repeat1 = 370, - aux_sym_psql_statement_repeat1 = 371, - aux_sym_create_sequence_statement_repeat1 = 372, - aux_sym_trigger_event_repeat1 = 373, - aux_sym_for_statement_repeat1 = 374, - aux_sym_if_statement_repeat1 = 375, - aux_sym_with_query_repeat1 = 376, - aux_sym_select_order_by_repeat1 = 377, - aux_sym_from_item_repeat1 = 378, - aux_sym_block_repeat1 = 379, - aux_sym_declarations_repeat1 = 380, - aux_sym__type_repeat1 = 381, - aux_sym_string_repeat1 = 382, + aux_sym_open_cursor_statement_token1 = 99, + aux_sym_get_diagnostics_statement_token1 = 100, + aux_sym_get_diagnostics_statement_token2 = 101, + aux_sym_get_diagnostics_statement_token3 = 102, + aux_sym_for_statement_token1 = 103, + anon_sym_DOT_DOT = 104, + aux_sym_for_statement_token2 = 105, + aux_sym_for_statement_token3 = 106, + aux_sym_raise_statement_token1 = 107, + aux_sym_if_statement_token1 = 108, + aux_sym_if_statement_token2 = 109, + aux_sym_if_statement_token3 = 110, + aux_sym_if_statement_token4 = 111, + aux_sym_if_statement_token5 = 112, + anon_sym_COLON_EQ = 113, + aux_sym_return_statement_token1 = 114, + aux_sym_return_statement_token2 = 115, + aux_sym_perform_statement_token1 = 116, + aux_sym_select_statement_token1 = 117, + aux_sym_with_query_item_token1 = 118, + aux_sym_into_token1 = 119, + aux_sym_select_having_token1 = 120, + aux_sym_select_limit_token1 = 121, + aux_sym_select_offset_token1 = 122, + aux_sym_select_offset_token2 = 123, + aux_sym_select_order_by_token1 = 124, + aux_sym_join_item_token1 = 125, + aux_sym_join_item_token2 = 126, + aux_sym_join_item_token3 = 127, + aux_sym_join_type_token1 = 128, + aux_sym_join_type_token2 = 129, + aux_sym_join_type_token3 = 130, + aux_sym_join_type_token4 = 131, + aux_sym_join_type_token5 = 132, + aux_sym_create_function_statement_token1 = 133, + aux_sym_function_run_as_token1 = 134, + aux_sym_function_run_as_token2 = 135, + aux_sym_function_run_as_token3 = 136, + aux_sym_function_return_token1 = 137, + aux_sym_return_setof_token1 = 138, + aux_sym_function_volatility_token1 = 139, + aux_sym_function_volatility_token2 = 140, + aux_sym_function_volatility_token3 = 141, + aux_sym_body_token1 = 142, + anon_sym_DOLLAR = 143, + aux_sym_declarations_token1 = 144, + aux_sym_where_filter_token1 = 145, + aux_sym_or_replace_token1 = 146, + aux_sym_temporary_token1 = 147, + aux_sym_temporary_token2 = 148, + aux_sym_if_not_exists_token1 = 149, + anon_sym_LBRACK = 150, + anon_sym_RBRACK = 151, + aux_sym__type_token1 = 152, + aux_sym__type_token2 = 153, + aux_sym_predefined_types_token1 = 154, + anon_sym_SQUOTE = 155, + aux_sym_string_token1 = 156, + aux_sym_string_token2 = 157, + sym_comment = 158, + anon_sym_DOT = 159, + aux_sym_array_constructor_token1 = 160, + aux_sym_dollar_quote_string_token1 = 161, + aux_sym_time_expression_token1 = 162, + aux_sym_time_expression_token2 = 163, + aux_sym_time_expression_token3 = 164, + aux_sym_time_expression_token4 = 165, + aux_sym__interval_fields_token1 = 166, + aux_sym__interval_fields_token2 = 167, + aux_sym__interval_fields_token3 = 168, + aux_sym__interval_fields_token4 = 169, + aux_sym__interval_fields_token5 = 170, + aux_sym__interval_fields_token6 = 171, + anon_sym_STAR = 172, + anon_sym_SLASH = 173, + anon_sym_PERCENT = 174, + anon_sym_DASH = 175, + anon_sym_PLUS = 176, + anon_sym_LT = 177, + anon_sym_GT = 178, + anon_sym_LT_EQ = 179, + anon_sym_GT_EQ = 180, + anon_sym_LT_GT = 181, + anon_sym_BANG_EQ = 182, + aux_sym_contains_op_token1 = 183, + aux_sym_contains_op_token2 = 184, + aux_sym_contains_op_token3 = 185, + aux_sym_comparison_null_token1 = 186, + aux_sym_comparison_null_token2 = 187, + aux_sym_comparison_null_token3 = 188, + aux_sym_comparison_null_token4 = 189, + aux_sym_comparison_kw_token1 = 190, + aux_sym_comparison_kw_token2 = 191, + aux_sym_comparison_kw_token3 = 192, + anon_sym_PIPE_PIPE = 193, + anon_sym_LT_AT = 194, + anon_sym_AT_GT = 195, + anon_sym_LT_LT = 196, + anon_sym_GT_GT = 197, + anon_sym_AMP_AMP = 198, + anon_sym_AMP_LT = 199, + anon_sym_AMP_GT = 200, + anon_sym_DASH_PIPE_DASH = 201, + sym_cast = 202, + aux_sym_and_token1 = 203, + aux_sym_true_token1 = 204, + aux_sym_false_token1 = 205, + sym_number = 206, + sym__identifier = 207, + sym_source_file = 208, + sym__statement = 209, + sym_drop_type_statement = 210, + sym_update_statement = 211, + sym_drop_function_statement = 212, + sym_drop_function_item = 213, + sym_create_type_statement = 214, + sym__with_query_statement = 215, + sym_insert_statement = 216, + sym_insert_items = 217, + sym_insert_item = 218, + sym_insert_conflict = 219, + sym_conflict_target = 220, + sym_update_set = 221, + sym_update_value = 222, + sym_returning = 223, + sym_create_table_statement = 224, + sym_create_table_item = 225, + sym_create_schema_statement = 226, + sym_schema_role = 227, + sym_create_index_statement = 228, + sym_index_using = 229, + sym_index_col = 230, + sym_index_col_dir = 231, + sym_index_col_nulls = 232, + sym_index_includes = 233, + sym_delete_statement = 234, + sym_delete_using = 235, + sym_alter_table_statement = 236, + sym_alter_table_change = 237, + sym_alter_table_action = 238, + sym_alter_column_action = 239, + sym_table_constraint = 240, + sym_constraint_when = 241, + sym_table_constraint_ty = 242, + sym_constraint_foreign_key = 243, + sym_fk_action = 244, + sym_fk_ref_action = 245, + sym_alter_column_type = 246, + sym_alter_table_fk_ref_action = 247, + sym_table_column_item = 248, + sym_column_constraint = 249, + sym_column_constraint_ty = 250, + sym_alter_table_rename_column = 251, + sym_alter_table_rename_constraint = 252, + sym_alter_table_rename_table = 253, + sym_alter_table_change_schema = 254, + sym_grant_statement = 255, + sym_grant_roles = 256, + sym_grant_privileges = 257, + sym_grant_targets = 258, + sym_grant_function = 259, + sym_psql_statement = 260, + sym_create_sequence_statement = 261, + sym_sequence_increment = 262, + sym_sequence_min = 263, + sym_sequence_max = 264, + sym_sequence_start = 265, + sym_sequence_cache = 266, + sym_sequence_cycle = 267, + sym_sequence_owned = 268, + sym_create_trigger_statement = 269, + sym_trigger_when = 270, + sym_trigger_event = 271, + sym_trigger_scope = 272, + sym_trigger_exec = 273, + sym_trigger_cond = 274, + sym__plpgsql_statement = 275, + sym_open_cursor_statement = 276, + sym_get_diagnostics_statement = 277, + sym_for_statement = 278, + sym_raise_statement = 279, + sym_if_statement = 280, + sym_execute_statement = 281, + sym_execute_using = 282, + sym_assign_statement = 283, + sym_return_statement = 284, + sym_perform_statement = 285, + sym_do_block = 286, + sym_select_statement = 287, + sym_with_query = 288, + sym_with_query_item = 289, + sym_into = 290, + sym_select_having = 291, + sym__select_limit_offset = 292, + sym_select_limit = 293, + sym_select_offset = 294, + sym_select_group_by = 295, + sym_select_order_by = 296, + sym_order_by_item = 297, + sym_order_by_direction = 298, + sym_select_where = 299, + sym_select_item = 300, + sym_select_from = 301, + sym_from_item = 302, + sym_from_select = 303, + sym_from_table = 304, + sym_from_function = 305, + sym_join_item = 306, + sym_join_condition = 307, + sym_join_type = 308, + sym_create_function_statement = 309, + sym_function_run_as = 310, + sym_function_return = 311, + sym_return_setof = 312, + sym_return_table = 313, + sym_function_volatility = 314, + sym_block = 315, + sym_body = 316, + sym_dollar_quote = 317, + sym_declarations = 318, + sym_var_definition = 319, + sym_function_signature = 320, + sym_function_parameters = 321, + sym_var_declaration = 322, + sym_where_filter = 323, + sym_or_replace = 324, + sym_temporary = 325, + sym_if_not_exists = 326, + sym_if_exists = 327, + sym_as = 328, + sym__type = 329, + sym_predefined_types = 330, + sym_precision = 331, + sym_string = 332, + sym__value_expression = 333, + sym_array_constructor = 334, + sym_dollar_quote_string = 335, + sym_time_expression = 336, + sym__interval_fields = 337, + sym_function_call = 338, + sym_op_expression = 339, + sym__list_of_identifiers = 340, + sym_comparison_op = 341, + sym_contains_op = 342, + sym_comparison_null = 343, + sym_comparison_kw = 344, + sym_other_op = 345, + sym_minus = 346, + sym_plus = 347, + sym_not = 348, + sym_and = 349, + sym_or = 350, + sym_true = 351, + sym_false = 352, + sym_null = 353, + sym_star = 354, + sym_identifier = 355, + aux_sym_source_file_repeat1 = 356, + aux_sym_drop_type_statement_repeat1 = 357, + aux_sym_update_statement_repeat1 = 358, + aux_sym_update_statement_repeat2 = 359, + aux_sym_drop_function_statement_repeat1 = 360, + aux_sym_drop_function_item_repeat1 = 361, + aux_sym_create_type_statement_repeat1 = 362, + aux_sym_create_type_statement_repeat2 = 363, + aux_sym_insert_items_repeat1 = 364, + aux_sym_conflict_target_repeat1 = 365, + aux_sym_update_set_repeat1 = 366, + aux_sym_returning_repeat1 = 367, + aux_sym_create_table_statement_repeat1 = 368, + aux_sym_create_index_statement_repeat1 = 369, + aux_sym_alter_table_change_repeat1 = 370, + aux_sym_constraint_foreign_key_repeat1 = 371, + aux_sym_table_column_item_repeat1 = 372, + aux_sym_grant_roles_repeat1 = 373, + aux_sym_grant_targets_repeat1 = 374, + aux_sym_grant_function_repeat1 = 375, + aux_sym_psql_statement_repeat1 = 376, + aux_sym_create_sequence_statement_repeat1 = 377, + aux_sym_trigger_event_repeat1 = 378, + aux_sym_for_statement_repeat1 = 379, + aux_sym_if_statement_repeat1 = 380, + aux_sym_with_query_repeat1 = 381, + aux_sym_select_order_by_repeat1 = 382, + aux_sym_from_item_repeat1 = 383, + aux_sym_block_repeat1 = 384, + aux_sym_declarations_repeat1 = 385, + aux_sym__type_repeat1 = 386, + aux_sym_string_repeat1 = 387, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [anon_sym_SEMI] = ";", + [aux_sym_drop_type_statement_token1] = "drop", + [aux_sym_drop_type_statement_token2] = "type", + [anon_sym_COMMA] = ",", + [aux_sym_drop_type_statement_token3] = "cascade", + [aux_sym_drop_type_statement_token4] = "restrict", [aux_sym_update_statement_token1] = "update", [aux_sym_update_statement_token2] = "as", [aux_sym_update_statement_token3] = "set", - [anon_sym_COMMA] = ",", [aux_sym_update_statement_token4] = "from", - [aux_sym_drop_function_statement_token1] = "drop", - [aux_sym_drop_function_statement_token2] = "function", - [aux_sym_drop_function_statement_token3] = "cascade", - [aux_sym_drop_function_statement_token4] = "restrict", + [aux_sym_drop_function_statement_token1] = "function", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [aux_sym_create_type_statement_token1] = "create", - [aux_sym_create_type_statement_token2] = "type", - [aux_sym_create_type_statement_token3] = "enum", + [aux_sym_create_type_statement_token2] = "enum", [aux_sym_insert_statement_token1] = "insert", [aux_sym_insert_statement_token2] = "into", [aux_sym_insert_items_token1] = "default", @@ -509,6 +514,7 @@ 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_open_cursor_statement_token1] = "open", [aux_sym_get_diagnostics_statement_token1] = "get", [aux_sym_get_diagnostics_statement_token2] = "current", [aux_sym_get_diagnostics_statement_token3] = "diagnostics", @@ -569,6 +575,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_token2] = "string_token2", [sym_comment] = "comment", [anon_sym_DOT] = ".", + [aux_sym_array_constructor_token1] = "array", [aux_sym_dollar_quote_string_token1] = "dollar_quote_string_token1", [aux_sym_time_expression_token1] = "at", [aux_sym_time_expression_token2] = "time", @@ -618,6 +625,7 @@ static const char * const ts_symbol_names[] = { [sym__identifier] = "_identifier", [sym_source_file] = "source_file", [sym__statement] = "_statement", + [sym_drop_type_statement] = "drop_type_statement", [sym_update_statement] = "update_statement", [sym_drop_function_statement] = "drop_function_statement", [sym_drop_function_item] = "drop_function_item", @@ -683,6 +691,7 @@ static const char * const ts_symbol_names[] = { [sym_trigger_exec] = "trigger_exec", [sym_trigger_cond] = "trigger_cond", [sym__plpgsql_statement] = "_plpgsql_statement", + [sym_open_cursor_statement] = "open_cursor_statement", [sym_get_diagnostics_statement] = "get_diagnostics_statement", [sym_for_statement] = "for_statement", [sym_raise_statement] = "raise_statement", @@ -740,6 +749,7 @@ static const char * const ts_symbol_names[] = { [sym_precision] = "precision", [sym_string] = "string", [sym__value_expression] = "_value_expression", + [sym_array_constructor] = "array_constructor", [sym_dollar_quote_string] = "dollar_quote_string", [sym_time_expression] = "time_expression", [sym__interval_fields] = "_interval_fields", @@ -762,6 +772,7 @@ static const char * const ts_symbol_names[] = { [sym_star] = "star", [sym_identifier] = "identifier", [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_drop_type_statement_repeat1] = "drop_type_statement_repeat1", [aux_sym_update_statement_repeat1] = "update_statement_repeat1", [aux_sym_update_statement_repeat2] = "update_statement_repeat2", [aux_sym_drop_function_statement_repeat1] = "drop_function_statement_repeat1", @@ -778,7 +789,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_constraint_foreign_key_repeat1] = "constraint_foreign_key_repeat1", [aux_sym_table_column_item_repeat1] = "table_column_item_repeat1", [aux_sym_grant_roles_repeat1] = "grant_roles_repeat1", - [aux_sym_grant_privileges_repeat1] = "grant_privileges_repeat1", [aux_sym_grant_targets_repeat1] = "grant_targets_repeat1", [aux_sym_grant_function_repeat1] = "grant_function_repeat1", [aux_sym_psql_statement_repeat1] = "psql_statement_repeat1", @@ -798,20 +808,20 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [anon_sym_SEMI] = anon_sym_SEMI, + [aux_sym_drop_type_statement_token1] = aux_sym_drop_type_statement_token1, + [aux_sym_drop_type_statement_token2] = aux_sym_drop_type_statement_token2, + [anon_sym_COMMA] = anon_sym_COMMA, + [aux_sym_drop_type_statement_token3] = aux_sym_drop_type_statement_token3, + [aux_sym_drop_type_statement_token4] = aux_sym_drop_type_statement_token4, [aux_sym_update_statement_token1] = aux_sym_update_statement_token1, [aux_sym_update_statement_token2] = aux_sym_update_statement_token2, [aux_sym_update_statement_token3] = aux_sym_update_statement_token3, - [anon_sym_COMMA] = anon_sym_COMMA, [aux_sym_update_statement_token4] = aux_sym_update_statement_token4, [aux_sym_drop_function_statement_token1] = aux_sym_drop_function_statement_token1, - [aux_sym_drop_function_statement_token2] = aux_sym_drop_function_statement_token2, - [aux_sym_drop_function_statement_token3] = aux_sym_drop_function_statement_token3, - [aux_sym_drop_function_statement_token4] = aux_sym_drop_function_statement_token4, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [aux_sym_create_type_statement_token1] = aux_sym_create_type_statement_token1, [aux_sym_create_type_statement_token2] = aux_sym_create_type_statement_token2, - [aux_sym_create_type_statement_token3] = aux_sym_create_type_statement_token3, [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, @@ -895,6 +905,7 @@ 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_open_cursor_statement_token1] = aux_sym_open_cursor_statement_token1, [aux_sym_get_diagnostics_statement_token1] = aux_sym_get_diagnostics_statement_token1, [aux_sym_get_diagnostics_statement_token2] = aux_sym_get_diagnostics_statement_token2, [aux_sym_get_diagnostics_statement_token3] = aux_sym_get_diagnostics_statement_token3, @@ -955,6 +966,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_token2] = aux_sym_string_token2, [sym_comment] = sym_comment, [anon_sym_DOT] = anon_sym_DOT, + [aux_sym_array_constructor_token1] = aux_sym_array_constructor_token1, [aux_sym_dollar_quote_string_token1] = aux_sym_dollar_quote_string_token1, [aux_sym_time_expression_token1] = aux_sym_time_expression_token1, [aux_sym_time_expression_token2] = aux_sym_time_expression_token2, @@ -1004,6 +1016,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__identifier] = sym__identifier, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, + [sym_drop_type_statement] = sym_drop_type_statement, [sym_update_statement] = sym_update_statement, [sym_drop_function_statement] = sym_drop_function_statement, [sym_drop_function_item] = sym_drop_function_item, @@ -1069,6 +1082,7 @@ 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_open_cursor_statement] = sym_open_cursor_statement, [sym_get_diagnostics_statement] = sym_get_diagnostics_statement, [sym_for_statement] = sym_for_statement, [sym_raise_statement] = sym_raise_statement, @@ -1126,6 +1140,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_precision] = sym_precision, [sym_string] = sym_string, [sym__value_expression] = sym__value_expression, + [sym_array_constructor] = sym_array_constructor, [sym_dollar_quote_string] = sym_dollar_quote_string, [sym_time_expression] = sym_time_expression, [sym__interval_fields] = sym__interval_fields, @@ -1148,6 +1163,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_star] = sym_star, [sym_identifier] = sym_identifier, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_drop_type_statement_repeat1] = aux_sym_drop_type_statement_repeat1, [aux_sym_update_statement_repeat1] = aux_sym_update_statement_repeat1, [aux_sym_update_statement_repeat2] = aux_sym_update_statement_repeat2, [aux_sym_drop_function_statement_repeat1] = aux_sym_drop_function_statement_repeat1, @@ -1164,7 +1180,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_constraint_foreign_key_repeat1] = aux_sym_constraint_foreign_key_repeat1, [aux_sym_table_column_item_repeat1] = aux_sym_table_column_item_repeat1, [aux_sym_grant_roles_repeat1] = aux_sym_grant_roles_repeat1, - [aux_sym_grant_privileges_repeat1] = aux_sym_grant_privileges_repeat1, [aux_sym_grant_targets_repeat1] = aux_sym_grant_targets_repeat1, [aux_sym_grant_function_repeat1] = aux_sym_grant_function_repeat1, [aux_sym_psql_statement_repeat1] = aux_sym_psql_statement_repeat1, @@ -1190,6 +1205,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_drop_type_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_drop_type_statement_token2] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [aux_sym_drop_type_statement_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_drop_type_statement_token4] = { + .visible = true, + .named = false, + }, [aux_sym_update_statement_token1] = { .visible = true, .named = false, @@ -1202,10 +1237,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, [aux_sym_update_statement_token4] = { .visible = true, .named = false, @@ -1214,18 +1245,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_drop_function_statement_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_drop_function_statement_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_drop_function_statement_token4] = { - .visible = true, - .named = false, - }, [anon_sym_LPAREN] = { .visible = true, .named = false, @@ -1242,10 +1261,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_create_type_statement_token3] = { - .visible = true, - .named = false, - }, [aux_sym_insert_statement_token1] = { .visible = true, .named = false, @@ -1578,6 +1593,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_open_cursor_statement_token1] = { + .visible = true, + .named = false, + }, [aux_sym_get_diagnostics_statement_token1] = { .visible = true, .named = false, @@ -1818,6 +1837,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_array_constructor_token1] = { + .visible = true, + .named = false, + }, [aux_sym_dollar_quote_string_token1] = { .visible = false, .named = false, @@ -2014,6 +2037,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_drop_type_statement] = { + .visible = true, + .named = true, + }, [sym_update_statement] = { .visible = true, .named = true, @@ -2274,6 +2301,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_open_cursor_statement] = { + .visible = true, + .named = true, + }, [sym_get_diagnostics_statement] = { .visible = true, .named = true, @@ -2502,6 +2533,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_array_constructor] = { + .visible = true, + .named = true, + }, [sym_dollar_quote_string] = { .visible = true, .named = true, @@ -2590,6 +2625,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_drop_type_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_update_statement_repeat1] = { .visible = false, .named = false, @@ -2654,10 +2693,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_grant_privileges_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_grant_targets_repeat1] = { .visible = false, .named = false, @@ -2761,80 +2796,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(834); - if (lookahead == '!') ADVANCE(101); - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '\'') ADVANCE(1072); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1122); - if (lookahead == '.') ADVANCE(1088); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(100); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '[') ADVANCE(1065); - if (lookahead == '\\') ADVANCE(956); - if (lookahead == ']') ADVANCE(1066); - if (lookahead == '|') ADVANCE(106); + if (eof) ADVANCE(858); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '\'') ADVANCE(1099); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1152); + if (lookahead == '.') ADVANCE(1115); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(113); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '\\') ADVANCE(981); + if (lookahead == ']') ADVANCE(1093); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(180); + lookahead == 'a') ADVANCE(191); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(234); + lookahead == 'b') ADVANCE(245); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(107); + lookahead == 'c') ADVANCE(119); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(110); + lookahead == 'd') ADVANCE(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(121); + lookahead == 'e') ADVANCE(132); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(111); + lookahead == 'f') ADVANCE(123); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(289); + lookahead == 'g') ADVANCE(299); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(113); + lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(353); + lookahead == 'i') ADVANCE(366); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); + lookahead == 'j') ADVANCE(606); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(235); + lookahead == 'k') ADVANCE(296); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(114); + lookahead == 'l') ADVANCE(126); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(115); + lookahead == 'm') ADVANCE(127); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(126); + lookahead == 'n') ADVANCE(139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(358); + lookahead == 'o') ADVANCE(370); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(291); + lookahead == 'p') ADVANCE(304); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(777); + lookahead == 'q') ADVANCE(799); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(125); + lookahead == 'r') ADVANCE(138); if (lookahead == 'S' || - lookahead == 's') ADVANCE(181); + lookahead == 's') ADVANCE(192); if (lookahead == 'T' || - lookahead == 't') ADVANCE(144); + lookahead == 't') ADVANCE(157); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(524); + lookahead == 'u') ADVANCE(541); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(123); + lookahead == 'v') ADVANCE(134); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(396); + lookahead == 'w') ADVANCE(408); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'y') ADVANCE(297); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(609); + lookahead == 'z') ADVANCE(630); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2843,77 +2878,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(233); + if (lookahead == ' ') ADVANCE(244); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(367); + if (lookahead == ' ') ADVANCE(380); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(592); + if (lookahead == ' ') ADVANCE(613); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(374); + if (lookahead == ' ') ADVANCE(387); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1088); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(111); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == ']') ADVANCE(1093); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(542); + lookahead == 'a') ADVANCE(560); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(332); + lookahead == 'b') ADVANCE(346); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(392); + lookahead == 'c') ADVANCE(406); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(134); + lookahead == 'd') ADVANCE(312); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(643); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(582); + lookahead == 'f') ADVANCE(666); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(455); + lookahead == 'i') ADVANCE(473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(140); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(449); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(605); + lookahead == 'n') ADVANCE(626); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(522); + lookahead == 'o') ADVANCE(659); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(651); + lookahead == 'p') ADVANCE(674); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(284); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(311); + lookahead == 'r') ADVANCE(294); if (lookahead == 'T' || - lookahead == 't') ADVANCE(394); + lookahead == 't') ADVANCE(413); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(555); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(588); + lookahead == 'u') ADVANCE(577); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(402); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'w') ADVANCE(416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2924,58 +2951,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) END_STATE(); case 6: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(113); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(542); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(654); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(133); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(788); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(582); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(456); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(238); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(129); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(637); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(579); + lookahead == 'o') ADVANCE(1307); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(402); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2984,62 +2997,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(6) + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(542); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(654); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(133); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(788); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(582); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(458); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(238); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(129); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(522); + lookahead == 'o') ADVANCE(1305); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(579); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(704); + lookahead == 'r') ADVANCE(1266); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(402); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3048,54 +3051,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(7) + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(542); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(133); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(656); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(113); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(457); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(404); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(606); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(357); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(347); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(579); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3104,64 +3095,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(8) + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(541); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(654); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(135); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(788); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(656); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(113); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(456); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); + lookahead == 'i') ADVANCE(1372); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(236); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(128); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(357); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(579); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(618); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(402); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3170,60 +3139,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(9) + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(541); + lookahead == 'a') ADVANCE(562); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); + lookahead == 'b') ADVANCE(345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(135); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(818); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(587); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(582); + lookahead == 'd') ADVANCE(333); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(457); + lookahead == 'i') ADVANCE(474); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(404); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(426); + lookahead == 'l') ADVANCE(418); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(607); + lookahead == 'n') ADVANCE(627); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(359); + lookahead == 'o') ADVANCE(372); if (lookahead == 'R' || lookahead == 'r') ADVANCE(349); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(319); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(579); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(704); + lookahead == 'u') ADVANCE(728); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(395); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(286); + lookahead == 'w') ADVANCE(416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3234,46 +3193,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(10) END_STATE(); case 11: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + lookahead == 'a') ADVANCE(559); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(808); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(678); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(472); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(246); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1273); + lookahead == 'o') ADVANCE(371); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); + lookahead == 'r') ADVANCE(348); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3282,50 +3245,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + lookahead == 'a') ADVANCE(559); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'f') ADVANCE(808); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(472); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); + lookahead == 'o') ADVANCE(659); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(348); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3334,42 +3295,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(12) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + lookahead == 'a') ADVANCE(559); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(808); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(475); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(539); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(348); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(728); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(416); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3378,42 +3347,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(13) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + lookahead == 'a') ADVANCE(559); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(678); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); + lookahead == 'i') ADVANCE(474); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(418); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(627); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(371); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(347); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3422,48 +3393,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(14) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '(') ADVANCE(851); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '.') ADVANCE(1087); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1150); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1365); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1300); + lookahead == 'l') ADVANCE(1332); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); + lookahead == 'o') ADVANCE(1307); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3475,55 +3442,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1115); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == ']') ADVANCE(1093); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(561); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(346); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(406); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1169); + lookahead == 'd') ADVANCE(146); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'f') ADVANCE(634); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1167); + lookahead == 'h') ADVANCE(604); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(471); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(154); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1322); + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(626); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1273); + lookahead == 'o') ADVANCE(539); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(674); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); + lookahead == 'r') ADVANCE(294); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 's') ADVANCE(324); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(414); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(577); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(608); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1233); + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3532,56 +3511,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(16) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1169); + lookahead == 'd') ADVANCE(145); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'f') ADVANCE(808); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1167); + lookahead == 'h') ADVANCE(604); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(472); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(248); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1322); + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); + lookahead == 'o') ADVANCE(659); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(348); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 's') ADVANCE(329); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(600); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1233); + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3590,50 +3574,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(17) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1169); + lookahead == 'd') ADVANCE(145); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(808); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1425); + lookahead == 'h') ADVANCE(604); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(475); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(248); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1322); + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(539); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(348); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 's') ADVANCE(329); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(600); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(728); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(416); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1233); + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3642,50 +3639,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(18) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1169); + lookahead == 'd') ADVANCE(145); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(678); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1425); + lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); + lookahead == 'i') ADVANCE(474); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(418); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1322); + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(627); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(371); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(347); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 's') ADVANCE(329); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(600); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1233); + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3694,52 +3696,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(19) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(563); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(677); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(147); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(808); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(678); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(472); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(246); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1273); + lookahead == 'o') ADVANCE(371); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); + lookahead == 'r') ADVANCE(348); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(329); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); + lookahead == 't') ADVANCE(600); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(640); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3748,50 +3763,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(20) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(563); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(345); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(405); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(147); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'f') ADVANCE(633); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(604); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(474); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(418); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(443); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(628); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1273); + lookahead == 'o') ADVANCE(372); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(674); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); + lookahead == 'r') ADVANCE(349); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(329); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(600); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(577); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(416); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(297); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3800,50 +3828,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(21) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); + lookahead == 'o') ADVANCE(1305); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3855,45 +3881,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); + lookahead == 'o') ADVANCE(1307); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3905,39 +3933,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3949,37 +3977,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1372); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3991,39 +4021,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '.') ADVANCE(1114); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1332); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); + lookahead == 'o') ADVANCE(1307); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4035,37 +4071,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(113); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1321); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(1307); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4077,51 +4122,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1169); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1167); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1300); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1322); + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 'o') ADVANCE(1305); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1233); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4133,45 +4175,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1300); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4183,43 +4218,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(101); - if (lookahead == '%') ADVANCE(1120); - if (lookahead == '&') ADVANCE(45); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '/') ADVANCE(1119); - if (lookahead == ':') ADVANCE(99); - if (lookahead == '<') ADVANCE(1125); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '>') ADVANCE(1126); - if (lookahead == '@') ADVANCE(103); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1366); + lookahead == 'a') ADVANCE(1399); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1208); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1372); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1300); + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1409); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1275); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'o') ADVANCE(1476); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4231,25 +4261,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 31: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '[') ADVANCE(1065); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1199); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1197); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1333); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1354); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1305); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1263); + lookahead == 's') ADVANCE(1243); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4259,40 +4319,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(31) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 32: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1199); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1175); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1197); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1388); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1307); + lookahead == 'l') ADVANCE(1333); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1274); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 'o') ADVANCE(1307); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1243); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4301,39 +4376,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(32) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 33: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1175); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1199); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1459); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1388); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1307); + lookahead == 'l') ADVANCE(1353); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'o') ADVANCE(1476); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1243); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4342,29 +4428,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(33) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 34: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1199); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1459); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1372); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1353); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1476); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1243); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4373,30 +4480,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 35: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1242); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1305); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1441); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4405,32 +4534,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(35) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 36: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1333); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1248); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1307); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1441); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1316); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4439,20 +4586,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(36) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 37: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1353); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1476); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1441); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4462,28 +4631,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(37) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 38: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1349); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1372); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1353); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1476); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1441); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4492,35 +4674,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(38) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 39: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1557); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1332); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1236); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1248); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1307); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1316); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4529,37 +4723,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(39) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 40: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1199); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1175); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1197); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1388); + lookahead == 'i') ADVANCE(1371); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1306); + lookahead == 'l') ADVANCE(1332); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1354); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1443); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 'o') ADVANCE(1307); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1243); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4568,29 +4779,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(40) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 41: - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == '*') ADVANCE(1118); - if (lookahead == '+') ADVANCE(1124); - if (lookahead == '-') ADVANCE(1123); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '!') ADVANCE(114); + if (lookahead == '%') ADVANCE(1149); + if (lookahead == '&') ADVANCE(56); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(1151); + if (lookahead == '/') ADVANCE(1148); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(1155); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '>') ADVANCE(1156); + if (lookahead == '@') ADVANCE(116); + if (lookahead == '|') ADVANCE(118); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1239); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1176); + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1402); + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1332); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1549); + lookahead == 'n') ADVANCE(1443); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1307); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1441); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4599,16 +4829,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(41) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 42: - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead == '-') ADVANCE(1091); - if (lookahead == '/') ADVANCE(1089); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '%') ADVANCE(662); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1295); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4616,56 +4858,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1090); - if (lookahead != 0) ADVANCE(1094); + lookahead == 65279) SKIP(42) + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 43: - if (lookahead == '%') ADVANCE(649); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ':') ADVANCE(102); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '=') ADVANCE(872); - if (lookahead == '[') ADVANCE(1065); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == ']') ADVANCE(1093); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(683); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(393); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(142); + lookahead == 'a') ADVANCE(1498); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(788); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(656); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(112); + lookahead == 'f') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(237); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(168); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(130); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(360); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(651); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(285); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(325); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(557); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(122); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(403); + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4674,16 +4893,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(43) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 44: - if (lookahead == '%') ADVANCE(649); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == '[') ADVANCE(1065); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1498); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1206); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1422); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1339); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1532); + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1306); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4692,20 +4938,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 45: - if (lookahead == '&') ADVANCE(1152); - if (lookahead == '<') ADVANCE(1153); - if (lookahead == '>') ADVANCE(1154); - END_STATE(); - case 46: - if (lookahead == '\'') ADVANCE(1072); - if (lookahead == '-') ADVANCE(1076); - if (lookahead == '/') ADVANCE(1075); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1498); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1206); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1422); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1339); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4713,40 +4980,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1077); - if (lookahead != 0) ADVANCE(1074); + lookahead == 65279) SKIP(45) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 46: + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1498); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1273); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1207); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1436); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(46) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 47: - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'a') ADVANCE(1498); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'f') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1246); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1274); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1279); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4755,42 +5051,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(47) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 48: - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1246); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4800,35 +5074,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(48) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 49: - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'a') ADVANCE(1381); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4837,36 +5104,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 50: - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'a') ADVANCE(1498); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1594); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1389); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); + lookahead == 'n') ADVANCE(1452); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); + lookahead == 'r') ADVANCE(1267); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1279); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4875,40 +5143,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 51: - if (lookahead == '(') ADVANCE(851); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'a') ADVANCE(1498); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(1206); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); + lookahead == 'i') ADVANCE(1422); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1245); + lookahead == 'l') ADVANCE(1338); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); + lookahead == 'n') ADVANCE(1452); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1488); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4917,44 +5184,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 52: - if (lookahead == '(') ADVANCE(851); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '*') ADVANCE(1147); + if (lookahead == '+') ADVANCE(1154); + if (lookahead == '-') ADVANCE(1153); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(683); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(109); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(303); + lookahead == 'a') ADVANCE(1498); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(791); + lookahead == 'f') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(119); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(581); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(638); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(342); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(182); + lookahead == 'n') ADVANCE(1452); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1586); if (lookahead == 'T' || - lookahead == 't') ADVANCE(145); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(523); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(122); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(414); + lookahead == 't') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4963,31 +5217,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(52) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 53: - if (lookahead == '(') ADVANCE(851); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1389); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1367); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1484); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead == '-') ADVANCE(1120); + if (lookahead == '/') ADVANCE(1118); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4995,40 +5234,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(53) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + lookahead == 65279) ADVANCE(1119); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 54: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '%') ADVANCE(662); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '=') ADVANCE(896); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(706); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'c') ADVANCE(407); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(156); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(808); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(678); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(557); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); + lookahead == 'j') ADVANCE(606); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1246); + lookahead == 'l') ADVANCE(247); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(180); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); + lookahead == 'n') ADVANCE(143); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1274); + lookahead == 'o') ADVANCE(373); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(674); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); + lookahead == 'r') ADVANCE(295); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(338); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(577); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(133); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(417); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5037,39 +5291,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(54) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 55: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1246); + if (lookahead == '%') ADVANCE(662); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == '[') ADVANCE(1092); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'n') ADVANCE(1569); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5081,65 +5312,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 56: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(56) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '&') ADVANCE(1182); + if (lookahead == '<') ADVANCE(1183); + if (lookahead == '>') ADVANCE(1184); END_STATE(); case 57: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1389); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + if (lookahead == '\'') ADVANCE(1099); + if (lookahead == '-') ADVANCE(1103); + if (lookahead == '/') ADVANCE(1102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5147,34 +5330,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(57) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + lookahead == 65279) ADVANCE(1104); + if (lookahead != 0) ADVANCE(1101); END_STATE(); case 58: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1583); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1307); + lookahead == 'l') ADVANCE(1277); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1274); + lookahead == 'o') ADVANCE(1306); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); + lookahead == 'r') ADVANCE(1265); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5184,30 +5373,41 @@ 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(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 59: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); + lookahead == 'f') ADVANCE(1583); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1307); + lookahead == 'l') ADVANCE(1277); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1340); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5217,18 +5417,35 @@ 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(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 60: - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1265); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5238,25 +5455,35 @@ 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(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 61: - if (lookahead == ')') ADVANCE(852); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1423); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1484); + lookahead == 'r') ADVANCE(1265); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5268,21 +5495,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 62: - if (lookahead == ')') ADVANCE(852); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1276); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1235); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1484); + lookahead == 'r') ADVANCE(1340); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5292,22 +5535,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(62) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 63: - if (lookahead == ')') ADVANCE(852); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(706); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1297); + lookahead == 'c') ADVANCE(121); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(315); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1429); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1456); + lookahead == 'f') ADVANCE(814); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(558); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(136); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(603); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(660); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(357); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(193); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(158); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1386); + lookahead == 'u') ADVANCE(540); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(133); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(428); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5316,17 +5580,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(63) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); END_STATE(); case 64: - if (lookahead == ')') ADVANCE(852); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1242); + if (lookahead == '(') ADVANCE(876); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1423); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1400); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1340); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5336,59 +5614,217 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(64) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 65: - if (lookahead == '*') ADVANCE(69); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1277); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1306); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1265); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 66: - if (lookahead == '*') ADVANCE(66); - if (lookahead == '/') ADVANCE(1078); - if (lookahead != 0) ADVANCE(69); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1277); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1340); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 67: - if (lookahead == '*') ADVANCE(66); - if (lookahead == 's') ADVANCE(1099); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1098); - if (lookahead != 0) ADVANCE(69); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1265); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 68: - if (lookahead == '*') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1098); - if (lookahead != 0) ADVANCE(69); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1423); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1265); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 69: - if (lookahead == '*') ADVANCE(66); - if (lookahead != 0) ADVANCE(69); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1424); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1339); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1306); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 70: - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(1480); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); + lookahead == 'g') ADVANCE(1484); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + lookahead == 'h') ADVANCE(1198); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); + lookahead == 'i') ADVANCE(1424); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1245); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); + lookahead == 'l') ADVANCE(1339); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); + lookahead == 'o') ADVANCE(1308); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5400,26 +5836,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 71: - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1445); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1168); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1306); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1294); + lookahead == 'i') ADVANCE(1424); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5431,42 +5857,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 72: - if (lookahead == '-') ADVANCE(1086); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1424); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(72) + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 73: - if (lookahead == '-') ADVANCE(1155); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1424); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1266); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); + 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(1601); END_STATE(); case 74: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == '\\') ADVANCE(956); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1345); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1458); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1243); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1341); + lookahead == 'c') ADVANCE(1329); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1414); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1255); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1278); + lookahead == 'f') ADVANCE(1463); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1253); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1173); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1248); + lookahead == 'p') ADVANCE(1491); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1433); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1316); + lookahead == 'u') ADVANCE(1420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5476,38 +5934,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(74) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 75: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == '\\') ADVANCE(956); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1345); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1458); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1243); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1380); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1414); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1255); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1278); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1253); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1173); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1248); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1433); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1316); + lookahead == 'd') ADVANCE(1273); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5517,38 +5953,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(75) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 76: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == '\\') ADVANCE(956); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1345); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1458); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1243); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1557); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1414); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1255); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1278); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1253); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1173); + if (lookahead == ')') ADVANCE(877); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1248); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1433); + lookahead == 's') ADVANCE(1279); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1316); + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5557,116 +5973,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(76) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 77: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(957); - if (lookahead == '\t' || - 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(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 77: + if (lookahead == '*') ADVANCE(81); END_STATE(); case 78: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1474); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(78) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '*') ADVANCE(78); + if (lookahead == '/') ADVANCE(1105); + if (lookahead != 0) ADVANCE(81); END_STATE(); case 79: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1540); + if (lookahead == '*') ADVANCE(78); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(79) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + lookahead == 's') ADVANCE(1128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if (lookahead != 0) ADVANCE(81); END_STATE(); case 80: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1540); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(80) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '*') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if (lookahead != 0) ADVANCE(81); END_STATE(); case 81: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1349); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1537); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1464); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1426); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1199); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(81) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '*') ADVANCE(78); + if (lookahead != 0) ADVANCE(81); END_STATE(); case 82: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1349); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1276); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1340); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5676,17 +6037,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(82) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 83: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1249); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1252); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1480); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1198); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1424); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1338); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1308); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1326); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5698,61 +6070,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 84: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1296); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1429); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1456); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1386); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(84) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '-') ADVANCE(1113); END_STATE(); case 85: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1408); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(85) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == '-') ADVANCE(1185); END_STATE(); case 86: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == '\\') ADVANCE(981); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1377); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1408); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1407); + lookahead == 'c') ADVANCE(1494); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1373); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1448); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1286); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1310); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1468); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1284); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1204); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1279); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1467); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5762,15 +6117,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(86) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 87: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == '\\') ADVANCE(981); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1377); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1419); + lookahead == 'c') ADVANCE(1494); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1414); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1448); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1286); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1310); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1468); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1284); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1204); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1279); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1467); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5780,31 +6160,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(87) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 88: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == '\\') ADVANCE(981); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1377); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1461); + lookahead == 'c') ADVANCE(1494); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1594); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1547); + lookahead == 'f') ADVANCE(1448); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1286); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1389); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1427); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1247); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1186); + lookahead == 'i') ADVANCE(1310); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1367); + lookahead == 'o') ADVANCE(1468); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1284); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1308); + lookahead == 'r') ADVANCE(1204); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1279); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1484); + lookahead == 'u') ADVANCE(1467); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1348); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5814,24 +6203,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(88) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 89: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1539); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1450); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1544); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1269); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(982); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || @@ -5840,15 +6221,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 90: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1539); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1269); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1511); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5858,19 +6237,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(90) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 91: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1424); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1577); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1367); + lookahead == 'i') ADVANCE(1311); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5880,17 +6257,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(91) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 92: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1537); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1464); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1577); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5900,17 +6275,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(92) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 93: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1367); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1382); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1574); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1500); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1460); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1230); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1200); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5920,15 +6303,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(93) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 94: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1279); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1382); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5938,15 +6321,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(94) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 95: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1428); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1280); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1283); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5958,13 +6343,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 96: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1367); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1328); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1463); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1491); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5976,13 +6369,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 97: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1520); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1442); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5994,15 +6389,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 98: - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1268); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1442); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1170); + lookahead == 't') ADVANCE(1441); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6014,1937 +6409,2141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 99: - if (lookahead == ':') ADVANCE(1156); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1453); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(99) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 100: - if (lookahead == ':') ADVANCE(1156); - if (lookahead == '=') ADVANCE(1009); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1496); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1583); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1423); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1461); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1278); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1217); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1400); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1340); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(100) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 101: - if (lookahead == '=') ADVANCE(1130); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1456); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1400); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(101) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 102: - if (lookahead == '=') ADVANCE(1009); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1576); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1484); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1581); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1301); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(102) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 103: - if (lookahead == '>') ADVANCE(1149); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1576); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1301); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(103) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 104: - if (lookahead == '_') ADVANCE(807); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1574); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1500); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(104) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 105: - if (lookahead == 's') ADVANCE(1094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1400); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(105) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 106: - if (lookahead == '|') ADVANCE(1147); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1311); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(106) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 107: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(208); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(292); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(467); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(288); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(644); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(192); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1569); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1298); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1200); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(107) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 108: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(208); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(292); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(568); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(288); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(681); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(192); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1462); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(108) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 109: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(208); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(568); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(192); + lookahead == 'o') ADVANCE(1400); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(109) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 110: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(740); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(193); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(124); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(867); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(585); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1557); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(110) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 111: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(468); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(668); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(623); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(591); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(471); + if (lookahead == '.') ADVANCE(1020); END_STATE(); case 112: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(811); + if (lookahead == ':') ADVANCE(1186); END_STATE(); case 113: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(811); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(779); + if (lookahead == ':') ADVANCE(1186); + if (lookahead == '=') ADVANCE(1036); END_STATE(); case 114: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(544); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(365); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(452); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); + if (lookahead == '=') ADVANCE(1160); END_STATE(); case 115: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(766); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(525); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(549); + if (lookahead == '=') ADVANCE(1036); END_STATE(); case 116: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(176); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(430); + if (lookahead == '>') ADVANCE(1179); END_STATE(); case 117: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(912); + if (lookahead == '_') ADVANCE(829); END_STATE(); case 118: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(879); + if (lookahead == '|') ADVANCE(1177); END_STATE(); case 119: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(817); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(577); + lookahead == 'a') ADVANCE(218); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(484); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(302); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(668); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(203); END_STATE(); case 120: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(175); + lookahead == 'a') ADVANCE(218); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(302); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(704); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(203); END_STATE(); case 121: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(191); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(694); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(219); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(296); + lookahead == 'a') ADVANCE(218); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(203); END_STATE(); case 122: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(500); + lookahead == 'a') ADVANCE(764); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(204); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(135); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(891); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(607); END_STATE(); case 123: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(500); + lookahead == 'a') ADVANCE(485); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(690); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(469); + lookahead == 'o') ADVANCE(645); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(612); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(487); END_STATE(); case 124: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(382); + lookahead == 'a') ADVANCE(833); END_STATE(); case 125: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(433); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(370); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(379); + lookahead == 'a') ADVANCE(833); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(797); + lookahead == 'o') ADVANCE(802); END_STATE(); case 126: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(758); + lookahead == 'a') ADVANCE(566); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(468); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(926); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(475); + lookahead == 'o') ADVANCE(609); END_STATE(); case 127: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(758); + lookahead == 'a') ADVANCE(788); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(542); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(927); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(474); + lookahead == 'o') ADVANCE(571); END_STATE(); case 128: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(758); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(736); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(495); + lookahead == 'a') ADVANCE(187); END_STATE(); case 129: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(758); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); + lookahead == 'a') ADVANCE(187); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(447); END_STATE(); case 130: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(758); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(732); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(474); + lookahead == 'a') ADVANCE(937); END_STATE(); case 131: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); + lookahead == 'a') ADVANCE(904); END_STATE(); case 132: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(625); + lookahead == 'a') ADVANCE(202); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(717); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(230); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(307); END_STATE(); case 133: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); + lookahead == 'a') ADVANCE(517); END_STATE(); case 134: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); + lookahead == 'a') ADVANCE(517); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(489); END_STATE(); case 135: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(695); + lookahead == 'a') ADVANCE(396); END_STATE(); case 136: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(225); - END_STATE(); - case 137: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(464); - END_STATE(); - case 138: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(479); - END_STATE(); - case 139: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(641); - END_STATE(); - case 140: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(543); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(451); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); - END_STATE(); - case 141: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(645); - END_STATE(); - case 142: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(739); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(362); - END_STATE(); - case 143: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(655); - END_STATE(); - case 144: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(173); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(510); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(294); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(516); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(930); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(413); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(619); - END_STATE(); - case 145: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(173); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(510); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(412); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(619); - END_STATE(); - case 146: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(751); - END_STATE(); - case 147: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(554); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(778); - END_STATE(); - case 148: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(517); - END_STATE(); - case 149: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); - END_STATE(); - case 150: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(658); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(574); - END_STATE(); - case 151: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(664); - END_STATE(); - case 152: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(664); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(574); - END_STATE(); - case 153: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(204); - END_STATE(); - case 154: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(386); - END_STATE(); - case 155: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(770); - END_STATE(); - case 156: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(665); - END_STATE(); - case 157: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(754); - END_STATE(); - case 158: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(486); - END_STATE(); - case 159: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(446); - END_STATE(); - case 160: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(756); - END_STATE(); - case 161: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(757); - END_STATE(); - case 162: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(749); - END_STATE(); - case 163: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(501); - END_STATE(); - case 164: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(177); - END_STATE(); - case 165: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(502); - END_STATE(); - case 166: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(178); - END_STATE(); - case 167: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(178); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(222); - END_STATE(); - case 168: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(765); - END_STATE(); - case 169: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(179); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(930); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(789); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(619); - END_STATE(); - case 170: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(174); - END_STATE(); - case 171: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(773); - END_STATE(); - case 172: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(499); - END_STATE(); - case 173: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(488); - END_STATE(); - case 174: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(489); - END_STATE(); - case 175: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(489); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(721); - END_STATE(); - case 176: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(489); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(721); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(338); - END_STATE(); - case 177: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(492); - END_STATE(); - case 178: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(493); - END_STATE(); - case 179: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(494); - END_STATE(); - case 180: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(741); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(217); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(759); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(459); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(218); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(838); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1101); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(737); - END_STATE(); - case 181: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(398); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(184); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(116); - END_STATE(); - case 182: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(398); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(498); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(143); - END_STATE(); - case 183: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(595); - END_STATE(); - case 184: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(595); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(301); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(799); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(709); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(840); - END_STATE(); - case 185: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(895); - END_STATE(); - case 186: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(934); - END_STATE(); - case 187: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1069); - END_STATE(); - case 188: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(480); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(287); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(307); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(330); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(580); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(608); - END_STATE(); - case 189: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(894); - END_STATE(); - case 190: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(450); - END_STATE(); - case 191: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(389); - END_STATE(); - case 192: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(485); - END_STATE(); - case 193: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(496); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(150); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(336); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(185); - END_STATE(); - case 194: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(809); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(503); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); - END_STATE(); - case 195: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(806); - END_STATE(); - case 196: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(131); - END_STATE(); - case 197: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(689); - END_STATE(); - case 198: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(724); - END_STATE(); - case 199: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(725); - END_STATE(); - case 200: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(297); - END_STATE(); - case 201: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(728); - END_STATE(); - case 202: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(729); - END_STATE(); - case 203: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(738); - END_STATE(); - case 204: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(265); - END_STATE(); - case 205: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(271); - END_STATE(); - case 206: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(310); - END_STATE(); - case 207: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(322); - END_STATE(); - case 208: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(400); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(196); - END_STATE(); - case 209: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(787); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(301); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(808); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(840); - END_STATE(); - case 210: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(594); - END_STATE(); - case 211: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(287); - END_STATE(); - case 212: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(160); - END_STATE(); - case 213: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(772); - END_STATE(); - case 214: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(774); - END_STATE(); - case 215: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(775); - END_STATE(); - case 216: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(217); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(759); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(762); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(838); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(737); - END_STATE(); - case 217: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(904); - END_STATE(); - case 218: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1157); - END_STATE(); - case 219: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(996); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(505); - END_STATE(); - case 220: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(967); - END_STATE(); - case 221: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1116); - END_STATE(); - case 222: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(916); - END_STATE(); - case 223: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(876); - END_STATE(); - case 224: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1018); - END_STATE(); - case 225: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(3); - END_STATE(); - case 226: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(447); - END_STATE(); - case 227: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(262); - END_STATE(); - case 228: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(282); - END_STATE(); - case 229: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(417); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(600); - END_STATE(); - case 230: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(804); - END_STATE(); - case 231: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(317); - END_STATE(); - case 232: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(157); - END_STATE(); - case 233: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(449); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(805); - END_STATE(); - case 234: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(364); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(959); - END_STATE(); - case 235: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(820); - END_STATE(); - case 236: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(365); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(452); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); - END_STATE(); - case 237: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(365); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(511); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); - END_STATE(); - case 238: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(365); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(451); - END_STATE(); - case 239: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - END_STATE(); - case 240: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1008); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(354); - END_STATE(); - case 241: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1133); - END_STATE(); - case 242: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(968); - END_STATE(); - case 243: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1103); - END_STATE(); - case 244: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1159); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(212); - END_STATE(); - case 245: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(855); - END_STATE(); - case 246: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1104); - END_STATE(); - case 247: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(965); - END_STATE(); - case 248: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(966); - END_STATE(); - case 249: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1161); - END_STATE(); - case 250: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1135); - END_STATE(); - case 251: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(998); - END_STATE(); - case 252: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(877); - END_STATE(); - case 253: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1059); - END_STATE(); - case 254: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(971); - END_STATE(); - case 255: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); - END_STATE(); - case 256: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(900); - END_STATE(); - case 257: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1114); - END_STATE(); - case 258: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(929); - END_STATE(); - case 259: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1052); - END_STATE(); - case 260: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(887); - END_STATE(); - case 261: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(836); - END_STATE(); - case 262: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(849); - END_STATE(); - case 263: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1057); - END_STATE(); - case 264: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(983); - END_STATE(); - case 265: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1061); - END_STATE(); - case 266: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(991); - END_STATE(); - case 267: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(954); - END_STATE(); - case 268: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1045); - END_STATE(); - case 269: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(961); - END_STATE(); - case 270: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(960); - END_STATE(); - case 271: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(950); - END_STATE(); - case 272: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(974); - END_STATE(); - case 273: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1053); - END_STATE(); - case 274: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(915); - END_STATE(); - case 275: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1051); - END_STATE(); - case 276: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(952); - END_STATE(); - case 277: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(913); - END_STATE(); - case 278: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(124); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(867); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(585); - END_STATE(); - case 279: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(379); - END_STATE(); - case 280: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(209); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(120); - END_STATE(); - case 281: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1068); - END_STATE(); - case 282: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(899); - END_STATE(); - case 283: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); - END_STATE(); - case 284: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(372); - END_STATE(); - case 285: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(372); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(379); - END_STATE(); - case 286: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(132); - END_STATE(); - case 287: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(816); - END_STATE(); - case 288: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(146); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(696); - END_STATE(); - case 289: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(713); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(147); - END_STATE(); - case 290: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(226); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(746); - END_STATE(); - case 291: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(642); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(406); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(172); - END_STATE(); - case 292: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(190); - END_STATE(); - case 293: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(220); - END_STATE(); - case 294: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(527); - END_STATE(); - case 295: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(195); - END_STATE(); - case 296: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(195); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(698); - END_STATE(); - case 297: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(230); - END_STATE(); - case 298: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(639); - END_STATE(); - case 299: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(515); - END_STATE(); - case 300: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(626); - END_STATE(); - case 301: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(198); - END_STATE(); - case 302: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(686); - END_STATE(); - case 303: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(366); - END_STATE(); - case 304: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(223); - END_STATE(); - case 305: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(627); - END_STATE(); - case 306: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(224); - END_STATE(); - case 307: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(628); - END_STATE(); - case 308: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(687); - END_STATE(); - case 309: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(647); - END_STATE(); - case 310: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(688); - END_STATE(); - case 311: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(183); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(170); - END_STATE(); - case 312: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(569); - END_STATE(); - case 313: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(672); - END_STATE(); - case 314: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(690); - END_STATE(); - case 315: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(428); - END_STATE(); - case 316: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(533); - END_STATE(); - case 317: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(629); - END_STATE(); - case 318: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(210); - END_STATE(); - case 319: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(210); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(162); - END_STATE(); - case 320: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(630); - END_STATE(); - case 321: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(136); - END_STATE(); - case 322: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(692); - END_STATE(); - case 323: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(675); - END_STATE(); - case 324: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(723); - END_STATE(); - case 325: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(497); - END_STATE(); - case 326: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(632); - END_STATE(); - case 327: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(633); - END_STATE(); - case 328: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(634); - END_STATE(); - case 329: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(635); - END_STATE(); - case 330: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(663); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(321); - END_STATE(); - case 331: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(712); - END_STATE(); - case 332: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(712); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(959); - END_STATE(); - case 333: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(636); - END_STATE(); - case 334: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(674); - END_STATE(); - case 335: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(363); - END_STATE(); - case 336: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(752); - END_STATE(); - case 337: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(560); - END_STATE(); - case 338: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(520); - END_STATE(); - case 339: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(316); - END_STATE(); - case 340: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(387); - END_STATE(); - case 341: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(561); - END_STATE(); - case 342: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(697); - END_STATE(); - case 343: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(562); - END_STATE(); - case 344: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(660); - END_STATE(); - case 345: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(564); - END_STATE(); - case 346: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(565); - END_STATE(); - case 347: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); - END_STATE(); - case 348: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(379); - END_STATE(); - case 349: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(813); - END_STATE(); - case 350: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(570); - END_STATE(); - case 351: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(571); - END_STATE(); - case 352: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(521); - END_STATE(); - case 353: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1000); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(504); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(948); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); - END_STATE(); - case 354: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1003); - END_STATE(); - case 355: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1005); - END_STATE(); - case 356: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(973); - END_STATE(); - case 357: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(368); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(978); - END_STATE(); - case 358: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(368); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(978); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(769); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(552); - END_STATE(); - case 359: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(368); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(975); - END_STATE(); - case 360: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(368); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(231); - END_STATE(); - case 361: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(368); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(231); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(552); - END_STATE(); - case 362: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(151); - END_STATE(); - case 363: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(611); - END_STATE(); - case 364: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(611); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(416); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(814); - END_STATE(); - case 365: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(716); - END_STATE(); - case 366: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(149); - END_STATE(); - case 367: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(669); - END_STATE(); - case 368: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(701); - END_STATE(); - case 369: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(603); - END_STATE(); - case 370: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(323); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(148); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(476); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(761); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(786); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(334); - END_STATE(); - case 371: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(323); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(148); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(761); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(793); - END_STATE(); - case 372: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(323); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(794); - END_STATE(); - case 373: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(152); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(336); - END_STATE(); - case 374: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(671); - END_STATE(); - case 375: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(892); - END_STATE(); - case 376: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1021); - END_STATE(); - case 377: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(874); - END_STATE(); - case 378: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(869); - END_STATE(); - case 379: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(399); - END_STATE(); - case 380: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(388); - END_STATE(); - case 381: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(798); - END_STATE(); - case 382: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(551); - END_STATE(); - case 383: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(385); - END_STATE(); - case 384: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(538); - END_STATE(); - case 385: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(304); - END_STATE(); - case 386: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(268); - END_STATE(); - case 387: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(308); - END_STATE(); - case 388: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(327); - END_STATE(); - case 389: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(981); - END_STATE(); - case 390: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(963); - END_STATE(); - case 391: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1108); - END_STATE(); - case 392: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(292); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(568); - END_STATE(); - case 393: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(292); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(568); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(583); - END_STATE(); - case 394: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(294); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(930); - END_STATE(); - case 395: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(239); - END_STATE(); - case 396: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(239); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); - END_STATE(); - case 397: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(602); - END_STATE(); - case 398: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(299); - END_STATE(); - case 399: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(720); - END_STATE(); - case 400: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(247); - END_STATE(); - case 401: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(440); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(801); - END_STATE(); - case 402: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(344); - END_STATE(); - case 403: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(344); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); - END_STATE(); - case 404: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(452); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); - END_STATE(); - case 405: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(453); - END_STATE(); - case 406: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(519); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(200); - END_STATE(); - case 407: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(622); - END_STATE(); - case 408: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(622); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(610); - END_STATE(); - case 409: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(830); - END_STATE(); - case 410: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(829); - END_STATE(); - case 411: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(526); - END_STATE(); - case 412: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(380); - END_STATE(); - case 413: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(380); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(244); - END_STATE(); - case 414: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(743); - END_STATE(); - case 415: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); - END_STATE(); - case 416: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(529); - END_STATE(); - case 417: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(710); - END_STATE(); - case 418: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(186); - END_STATE(); - case 419: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(187); - END_STATE(); - case 420: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(197); - END_STATE(); - case 421: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(518); - END_STATE(); - case 422: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(719); - END_STATE(); - case 423: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); - END_STATE(); - case 424: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(158); - END_STATE(); - case 425: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(742); - END_STATE(); - case 426: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(576); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(549); - END_STATE(); - case 427: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(597); - END_STATE(); - case 428: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(384); - END_STATE(); - case 429: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(547); - END_STATE(); - case 430: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(199); - END_STATE(); - case 431: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(138); - END_STATE(); - case 432: + lookahead == 'a') ADVANCE(840); if (lookahead == 'I' || lookahead == 'i') ADVANCE(598); END_STATE(); + case 137: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(844); + END_STATE(); + case 138: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(451); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(384); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(392); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(817); + END_STATE(); + case 139: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(766); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(951); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(491); + END_STATE(); + case 140: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(766); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(952); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(490); + END_STATE(); + case 141: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(766); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(758); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(512); + END_STATE(); + case 142: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(766); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(775); + END_STATE(); + case 143: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(766); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(754); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(490); + END_STATE(); + case 144: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(238); + END_STATE(); + case 145: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(842); + END_STATE(); + case 146: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(842); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(375); + END_STATE(); + case 147: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(842); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(718); + END_STATE(); + case 148: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(647); + END_STATE(); + case 149: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(236); + END_STATE(); + case 150: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(481); + END_STATE(); + case 151: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(496); + END_STATE(); + case 152: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(667); + END_STATE(); + case 153: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(669); + END_STATE(); + case 154: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(565); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(467); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(609); + END_STATE(); + case 155: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(680); + END_STATE(); + case 156: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(763); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(375); + END_STATE(); + case 157: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(185); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(527); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(531); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(427); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(641); + END_STATE(); + case 158: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(185); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(527); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(426); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(641); + END_STATE(); + case 159: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(772); + END_STATE(); + case 160: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(580); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(800); + END_STATE(); + case 161: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(534); + END_STATE(); + case 162: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(804); + END_STATE(); + case 163: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(804); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(697); + END_STATE(); + case 164: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(804); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(697); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(595); + END_STATE(); + case 165: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(804); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(681); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(595); + END_STATE(); + case 166: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(214); + END_STATE(); + case 167: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(399); + END_STATE(); + case 168: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(793); + END_STATE(); + case 169: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(687); + END_STATE(); + case 170: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(776); + END_STATE(); + case 171: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(503); + END_STATE(); + case 172: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(461); + END_STATE(); + case 173: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(778); + END_STATE(); + case 174: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(779); + END_STATE(); + case 175: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(518); + END_STATE(); + case 176: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(188); + END_STATE(); + case 177: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(519); + END_STATE(); + case 178: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(189); + END_STATE(); + case 179: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(189); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(233); + END_STATE(); + case 180: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(787); + END_STATE(); + case 181: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(190); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(809); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(641); + END_STATE(); + case 182: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(186); + END_STATE(); + case 183: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(795); + END_STATE(); + case 184: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(516); + END_STATE(); + case 185: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(505); + END_STATE(); + case 186: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(506); + END_STATE(); + case 187: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(506); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(743); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(354); + END_STATE(); + case 188: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(509); + END_STATE(); + case 189: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(510); + END_STATE(); + case 190: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(511); + END_STATE(); + case 191: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(762); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(228); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(780); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(476); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(663); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(868); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1130); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(759); + END_STATE(); + case 192: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(410); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(195); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(129); + END_STATE(); + case 193: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(410); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(515); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(155); + END_STATE(); + case 194: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(617); + END_STATE(); + case 195: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(617); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(821); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(732); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(870); + END_STATE(); + case 196: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(920); + END_STATE(); + case 197: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(959); + END_STATE(); + case 198: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1096); + END_STATE(); + case 199: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(497); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(298); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(322); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(343); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(602); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(629); + END_STATE(); + case 200: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(919); + END_STATE(); + case 201: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(466); + END_STATE(); + case 202: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(402); + END_STATE(); + case 203: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(502); + END_STATE(); + case 204: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(513); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(165); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(352); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(196); + END_STATE(); + case 205: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(828); + END_STATE(); + case 206: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(144); + END_STATE(); + case 207: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(712); + END_STATE(); + case 208: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(746); + END_STATE(); + case 209: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(747); + END_STATE(); + case 210: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(309); + END_STATE(); + case 211: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(750); + END_STATE(); + case 212: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(751); + END_STATE(); + case 213: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(761); + END_STATE(); + case 214: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(276); + END_STATE(); + case 215: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(283); + END_STATE(); + case 216: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(321); + END_STATE(); + case 217: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(330); + END_STATE(); + case 218: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(411); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(206); + END_STATE(); + case 219: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(831); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(520); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(783); + END_STATE(); + case 220: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(807); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(830); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(870); + END_STATE(); + case 221: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(616); + END_STATE(); + case 222: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(705); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(298); + END_STATE(); + case 223: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(173); + END_STATE(); + case 224: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(794); + END_STATE(); + case 225: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(796); + END_STATE(); + case 226: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(797); + END_STATE(); + case 227: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(228); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(780); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(784); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(868); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(759); + END_STATE(); + case 228: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(929); + END_STATE(); + case 229: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1187); + END_STATE(); + case 230: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1023); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(522); + END_STATE(); + case 231: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(992); + END_STATE(); + case 232: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1145); + END_STATE(); + case 233: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(941); + END_STATE(); + case 234: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(901); + END_STATE(); + case 235: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1045); + END_STATE(); + case 236: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(3); + END_STATE(); + case 237: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(462); + END_STATE(); + case 238: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(273); + END_STATE(); + case 239: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(293); + END_STATE(); + case 240: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(430); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(621); + END_STATE(); + case 241: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(825); + END_STATE(); + case 242: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(328); + END_STATE(); + case 243: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(170); + END_STATE(); + case 244: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(464); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(826); + END_STATE(); + case 245: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(377); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(984); + END_STATE(); + case 246: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(468); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(609); + END_STATE(); + case 247: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(528); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(609); + END_STATE(); + case 248: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(467); + END_STATE(); + case 249: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(546); + END_STATE(); + case 250: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1035); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(367); + END_STATE(); + case 251: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1163); + END_STATE(); + case 252: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(993); + END_STATE(); + case 253: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1132); + END_STATE(); + case 254: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1189); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(223); + END_STATE(); + case 255: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(862); + END_STATE(); + case 256: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1133); + END_STATE(); + case 257: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1095); + END_STATE(); + case 258: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(990); + END_STATE(); + case 259: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(991); + END_STATE(); + case 260: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1191); + END_STATE(); + case 261: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1165); + END_STATE(); + case 262: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1025); + END_STATE(); + case 263: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(902); + END_STATE(); + case 264: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1086); + END_STATE(); + case 265: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(996); + END_STATE(); + case 266: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(878); + END_STATE(); + case 267: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(925); + END_STATE(); + case 268: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1143); + END_STATE(); + case 269: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(954); + END_STATE(); + case 270: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1079); + END_STATE(); + case 271: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(912); + END_STATE(); + case 272: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(866); + END_STATE(); + case 273: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(864); + END_STATE(); + case 274: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1084); + END_STATE(); + case 275: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1008); + END_STATE(); + case 276: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1088); + END_STATE(); + case 277: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1018); + END_STATE(); + case 278: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(979); + END_STATE(); + case 279: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1094); + END_STATE(); + case 280: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1072); + END_STATE(); + case 281: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(986); + END_STATE(); + case 282: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(985); + END_STATE(); + case 283: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(975); + END_STATE(); + case 284: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(999); + END_STATE(); + case 285: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1080); + END_STATE(); + case 286: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(940); + END_STATE(); + case 287: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1078); + END_STATE(); + case 288: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(977); + END_STATE(); + case 289: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(938); + END_STATE(); + case 290: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(381); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(135); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(891); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(607); + END_STATE(); + case 291: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(385); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(392); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(836); + END_STATE(); + case 292: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(220); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(128); + END_STATE(); + case 293: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(924); + END_STATE(); + case 294: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(386); + END_STATE(); + case 295: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(386); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(392); + END_STATE(); + case 296: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(843); + END_STATE(); + case 297: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(148); + END_STATE(); + case 298: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(839); + END_STATE(); + case 299: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(735); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(160); + END_STATE(); + case 300: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(237); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(770); + END_STATE(); + case 301: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(201); + END_STATE(); + case 302: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(159); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(719); + END_STATE(); + case 303: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(231); + END_STATE(); + case 304: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(664); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(420); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(184); + END_STATE(); + case 305: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(544); + END_STATE(); + case 306: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(205); + END_STATE(); + case 307: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(205); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(722); + END_STATE(); + case 308: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(545); + END_STATE(); + case 309: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(241); + END_STATE(); + case 310: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(532); + END_STATE(); + case 311: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(665); + END_STATE(); + case 312: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(375); + END_STATE(); + case 313: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(208); + END_STATE(); + case 314: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(709); + END_STATE(); + case 315: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(379); + END_STATE(); + case 316: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(234); + END_STATE(); + case 317: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(648); + END_STATE(); + case 318: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(710); + END_STATE(); + case 319: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(235); + END_STATE(); + case 320: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(649); + END_STATE(); + case 321: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(711); + END_STATE(); + case 322: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(650); + END_STATE(); + case 323: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(671); + END_STATE(); + case 324: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(194); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(182); + END_STATE(); + case 325: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(713); + END_STATE(); + case 326: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(694); + END_STATE(); + case 327: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(446); + END_STATE(); + case 328: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(651); + END_STATE(); + case 329: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(221); + END_STATE(); + case 330: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(715); + END_STATE(); + case 331: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(590); + END_STATE(); + case 332: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(652); + END_STATE(); + case 333: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(718); + END_STATE(); + case 334: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(551); + END_STATE(); + case 335: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(698); + END_STATE(); + case 336: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(149); + END_STATE(); + case 337: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(745); + END_STATE(); + case 338: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(514); + END_STATE(); + case 339: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(654); + END_STATE(); + case 340: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(655); + END_STATE(); + case 341: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(656); + END_STATE(); + case 342: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(657); + END_STATE(); + case 343: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(686); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(336); + END_STATE(); + case 344: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(658); + END_STATE(); + case 345: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(760); + END_STATE(); + case 346: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(760); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(984); + END_STATE(); + case 347: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(789); + END_STATE(); + case 348: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(789); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(392); + END_STATE(); + case 349: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(789); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(835); + END_STATE(); + case 350: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(696); + END_STATE(); + case 351: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(376); + END_STATE(); + case 352: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(773); + END_STATE(); + case 353: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(581); + END_STATE(); + case 354: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(537); + END_STATE(); + case 355: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(400); + END_STATE(); + case 356: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(582); + END_STATE(); + case 357: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(720); + END_STATE(); + case 358: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(334); + END_STATE(); + case 359: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(583); + END_STATE(); + case 360: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(683); + END_STATE(); + case 361: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(585); + END_STATE(); + case 362: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(586); + END_STATE(); + case 363: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(591); + END_STATE(); + case 364: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(592); + END_STATE(); + case 365: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(538); + END_STATE(); + case 366: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1027); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(419); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(521); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(973); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); + END_STATE(); + case 367: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1030); + END_STATE(); + case 368: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1032); + END_STATE(); + case 369: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(998); + END_STATE(); + case 370: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(382); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(305); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1003); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(791); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(573); + END_STATE(); + case 371: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(382); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1003); + END_STATE(); + case 372: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(382); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1000); + END_STATE(); + case 373: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(382); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(242); + END_STATE(); + case 374: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(382); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(242); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(573); + END_STATE(); + case 375: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(163); + END_STATE(); + case 376: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(632); + END_STATE(); + case 377: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(632); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(431); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(838); + END_STATE(); + case 378: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(738); + END_STATE(); + case 379: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(162); + END_STATE(); + case 380: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(691); + END_STATE(); + case 381: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(164); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(352); + END_STATE(); + case 382: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(725); + END_STATE(); + case 383: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(624); + END_STATE(); + case 384: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(335); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(161); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(494); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(782); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(806); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(350); + END_STATE(); + case 385: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(335); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(161); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(782); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(811); + END_STATE(); + case 386: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(335); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(813); + END_STATE(); + case 387: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(693); + END_STATE(); + case 388: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(917); + END_STATE(); + case 389: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1048); + END_STATE(); + case 390: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(899); + END_STATE(); + case 391: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(893); + END_STATE(); + case 392: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(412); + END_STATE(); + case 393: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(401); + END_STATE(); + case 394: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(819); + END_STATE(); + case 395: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(398); + END_STATE(); + case 396: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(575); + END_STATE(); + case 397: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(556); + END_STATE(); + case 398: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(316); + END_STATE(); + case 399: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(280); + END_STATE(); + case 400: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(318); + END_STATE(); + case 401: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(340); + END_STATE(); + case 402: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1006); + END_STATE(); + case 403: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(988); + END_STATE(); + case 404: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1137); + END_STATE(); + case 405: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); + END_STATE(); + case 406: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); + END_STATE(); + case 407: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(301); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(605); + END_STATE(); + case 408: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(249); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(765); + END_STATE(); + case 409: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(622); + END_STATE(); + case 410: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(310); + END_STATE(); + case 411: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(258); + END_STATE(); + case 412: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(742); + END_STATE(); + case 413: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(308); + END_STATE(); + case 414: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(308); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); + END_STATE(); + case 415: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(444); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(822); + END_STATE(); + case 416: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(360); + END_STATE(); + case 417: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(360); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(765); + END_STATE(); + case 418: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(468); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(609); + END_STATE(); + case 419: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(469); + END_STATE(); + case 420: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(536); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(210); + END_STATE(); + case 421: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(644); + END_STATE(); + case 422: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(644); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(631); + END_STATE(); + case 423: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(854); + END_STATE(); + case 424: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(853); + END_STATE(); + case 425: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + END_STATE(); + case 426: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(393); + END_STATE(); + case 427: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(393); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(254); + END_STATE(); + case 428: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(765); + END_STATE(); + case 429: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(567); + END_STATE(); + case 430: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(733); + END_STATE(); + case 431: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(547); + END_STATE(); + case 432: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(197); + END_STATE(); case 433: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(702); + lookahead == 'i') ADVANCE(569); END_STATE(); case 434: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(550); + lookahead == 'i') ADVANCE(198); END_STATE(); case 435: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(550); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1049); + lookahead == 'i') ADVANCE(207); END_STATE(); case 436: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(201); + lookahead == 'i') ADVANCE(535); END_STATE(); case 437: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(599); + lookahead == 'i') ADVANCE(741); END_STATE(); case 438: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(566); + lookahead == 'i') ADVANCE(171); END_STATE(); case 439: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(490); + lookahead == 'i') ADVANCE(593); END_STATE(); case 440: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(553); + lookahead == 'i') ADVANCE(767); END_STATE(); case 441: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(202); + lookahead == 'i') ADVANCE(572); END_STATE(); case 442: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(760); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(307); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(580); + lookahead == 'i') ADVANCE(572); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1076); END_STATE(); case 443: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(601); + lookahead == 'i') ADVANCE(597); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(571); END_STATE(); case 444: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(491); + lookahead == 'i') ADVANCE(574); END_STATE(); case 445: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(604); + lookahead == 'i') ADVANCE(618); END_STATE(); case 446: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(563); + lookahead == 'i') ADVANCE(397); END_STATE(); case 447: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(161); + lookahead == 'i') ADVANCE(209); END_STATE(); case 448: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(578); + lookahead == 'i') ADVANCE(151); END_STATE(); case 449: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(711); + lookahead == 'i') ADVANCE(467); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(609); END_STATE(); case 450: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(917); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(619); END_STATE(); case 451: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(241); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(726); END_STATE(); case 452: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(241); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(422); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(211); END_STATE(); case 453: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(250); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(620); END_STATE(); case 454: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(333); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(587); END_STATE(); case 455: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(512); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(944); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(507); END_STATE(); case 456: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(948); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(212); END_STATE(); case 457: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(781); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(949); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); + lookahead == 'n') ADVANCE(322); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(602); END_STATE(); case 458: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(947); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(623); END_STATE(); case 459: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(938); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(305); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(508); END_STATE(); case 460: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1043); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(625); END_STATE(); case 461: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(910); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(584); END_STATE(); case 462: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1138); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(174); END_STATE(); case 463: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1137); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(599); END_STATE(); case 464: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1030); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(734); END_STATE(); case 465: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1141); + if (lookahead == 'I' || + lookahead == 's') ADVANCE(1123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1122); END_STATE(); case 466: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1140); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(942); END_STATE(); case 467: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(780); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(194); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(251); END_STATE(); case 468: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(700); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(251); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(437); END_STATE(); case 469: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(155); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(261); END_STATE(); case 470: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(460); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(344); END_STATE(); case 471: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(460); + lookahead == 'l') ADVANCE(419); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(529); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(213); + lookahead == 'n') ADVANCE(969); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); END_STATE(); case 472: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(460); + lookahead == 'l') ADVANCE(419); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(214); + lookahead == 'n') ADVANCE(973); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); END_STATE(); case 473: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(825); + lookahead == 'l') ADVANCE(419); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(969); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); END_STATE(); case 474: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(461); + lookahead == 'l') ADVANCE(419); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(974); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); END_STATE(); case 475: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(461); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(313); + lookahead == 'l') ADVANCE(419); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(972); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1174); END_STATE(); case 476: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(153); + lookahead == 'l') ADVANCE(963); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(320); END_STATE(); case 477: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(826); + lookahead == 'l') ADVANCE(1070); END_STATE(); case 478: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(462); + lookahead == 'l') ADVANCE(935); END_STATE(); case 479: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(410); + lookahead == 'l') ADVANCE(1168); END_STATE(); case 480: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(800); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(352); + lookahead == 'l') ADVANCE(1167); END_STATE(); case 481: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(463); + lookahead == 'l') ADVANCE(1057); END_STATE(); case 482: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(465); + lookahead == 'l') ADVANCE(1171); END_STATE(); case 483: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(466); + lookahead == 'l') ADVANCE(1170); END_STATE(); case 484: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(693); + lookahead == 'l') ADVANCE(801); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(219); END_STATE(); case 485: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); + lookahead == 'l') ADVANCE(724); END_STATE(); case 486: if (lookahead == 'L' || @@ -7952,2743 +8551,2784 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 487: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(727); + lookahead == 'l') ADVANCE(477); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(224); END_STATE(); case 488: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(252); + lookahead == 'l') ADVANCE(477); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(225); END_STATE(); case 489: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(259); + lookahead == 'l') ADVANCE(168); END_STATE(); case 490: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(340); + lookahead == 'l') ADVANCE(478); END_STATE(); case 491: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(273); + lookahead == 'l') ADVANCE(478); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(326); END_STATE(); case 492: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(275); + lookahead == 'l') ADVANCE(849); END_STATE(); case 493: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(277); + lookahead == 'l') ADVANCE(850); END_STATE(); case 494: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(314); + lookahead == 'l') ADVANCE(166); END_STATE(); case 495: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(484); + lookahead == 'l') ADVANCE(479); END_STATE(); case 496: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(156); + lookahead == 'l') ADVANCE(424); END_STATE(); case 497: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(301); + lookahead == 'l') ADVANCE(820); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(365); END_STATE(); case 498: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(301); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(799); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(840); + lookahead == 'l') ADVANCE(480); END_STATE(); case 499: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(418); + lookahead == 'l') ADVANCE(482); END_STATE(); case 500: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(790); + lookahead == 'l') ADVANCE(716); END_STATE(); case 501: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(795); + lookahead == 'l') ADVANCE(483); END_STATE(); case 502: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(796); + lookahead == 'l') ADVANCE(259); END_STATE(); case 503: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(436); + lookahead == 'l') ADVANCE(493); END_STATE(); case 504: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(290); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(749); END_STATE(); case 505: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(263); END_STATE(); case 506: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(843); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(270); END_STATE(); case 507: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1014); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(355); END_STATE(); case 508: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1145); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(285); END_STATE(); case 509: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1146); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(287); END_STATE(); case 510: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(616); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(289); END_STATE(); case 511: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(422); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(325); END_STATE(); case 512: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(785); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(500); END_STATE(); case 513: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(512); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(188); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(169); END_STATE(); case 514: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(531); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); END_STATE(); case 515: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(118); - END_STATE(); - case 516: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(243); - END_STATE(); - case 517: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(258); - END_STATE(); - case 518: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(139); - END_STATE(); - case 519: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(139); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(439); - END_STATE(); - case 520: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(341); - END_STATE(); - case 521: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(346); - END_STATE(); - case 522: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(864); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(975); - END_STATE(); - case 523: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(408); - END_STATE(); - case 524: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(408); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(415); - END_STATE(); - case 525: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(803); - END_STATE(); - case 526: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1034); - END_STATE(); - case 527: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1002); - END_STATE(); - case 528: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(985); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(253); - END_STATE(); - case 529: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1054); - END_STATE(); - case 530: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(928); - END_STATE(); - case 531: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(905); - END_STATE(); - case 532: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1010); - END_STATE(); - case 533: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1131); - END_STATE(); - case 534: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(104); - END_STATE(); - case 535: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(847); - END_STATE(); - case 536: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(881); - END_STATE(); - case 537: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(435); - END_STATE(); - case 538: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(922); - END_STATE(); - case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(442); - END_STATE(); - case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(211); - END_STATE(); - case 541: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(218); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(189); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1101); - END_STATE(); - case 542: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(218); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1101); - END_STATE(); - case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(381); - END_STATE(); - case 544: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(381); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(715); - END_STATE(); - case 545: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(375); - END_STATE(); - case 546: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(213); - END_STATE(); - case 547: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(376); - END_STATE(); - case 548: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(221); - END_STATE(); - case 549: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(744); - END_STATE(); - case 550: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(377); - END_STATE(); - case 551: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(613); - END_STATE(); - case 552: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(293); - END_STATE(); - case 553: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(378); - END_STATE(); - case 554: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(718); - END_STATE(); - case 555: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(407); - END_STATE(); - case 556: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(407); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(415); - END_STATE(); - case 557: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(407); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(415); - END_STATE(); - case 558: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(246); - END_STATE(); - case 559: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(691); - END_STATE(); - case 560: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(726); - END_STATE(); - case 561: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(730); - END_STATE(); - case 562: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(747); - END_STATE(); - case 563: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(731); - END_STATE(); - case 564: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(734); - END_STATE(); - case 565: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(735); - END_STATE(); - case 566: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(267); - END_STATE(); - case 567: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(212); - END_STATE(); - case 568: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(705); - END_STATE(); - case 569: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(205); - END_STATE(); - case 570: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(206); - END_STATE(); - case 571: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(207); - END_STATE(); - case 572: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(203); - END_STATE(); - case 573: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(434); - END_STATE(); - case 574: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(326); - END_STATE(); - case 575: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(801); - END_STATE(); - case 576: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(802); - END_STATE(); - case 577: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(812); - END_STATE(); - case 578: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(215); - END_STATE(); - case 579: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(930); - END_STATE(); - case 580: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(859); - END_STATE(); - case 581: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(925); - END_STATE(); - case 582: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(779); - END_STATE(); - case 583: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(696); - END_STATE(); - case 584: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(411); - END_STATE(); - case 585: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 586: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(815); - END_STATE(); - case 587: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(623); - END_STATE(); - case 588: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(469); - END_STATE(); - case 589: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(615); - END_STATE(); - case 590: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(778); - END_STATE(); - case 591: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(506); - END_STATE(); - case 592: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(356); - END_STATE(); - case 593: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(508); - END_STATE(); - case 594: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(548); - END_STATE(); - case 595: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(548); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(670); - END_STATE(); - case 596: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(509); - END_STATE(); - case 597: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(530); - END_STATE(); - case 598: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(534); - END_STATE(); - case 599: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(535); - END_STATE(); - case 600: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(722); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(481); - END_STATE(); - case 601: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(536); - END_STATE(); - case 602: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(648); - END_STATE(); - case 603: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(646); - END_STATE(); - case 604: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(559); - END_STATE(); - case 605: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(714); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(474); - END_STATE(); - case 606: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); - END_STATE(); - case 607: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(495); - END_STATE(); - case 608: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(454); - END_STATE(); - case 609: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(558); - END_STATE(); - case 610: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(383); - END_STATE(); - case 611: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(662); - END_STATE(); - case 612: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(667); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(591); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(472); - END_STATE(); - case 613: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(706); - END_STATE(); - case 614: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(845); - END_STATE(); - case 615: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(994); - END_STATE(); - case 616: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1062); - END_STATE(); - case 617: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(936); - END_STATE(); - case 618: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(232); - END_STATE(); - case 619: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(245); - END_STATE(); - case 620: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(281); - END_STATE(); - case 621: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(283); - END_STATE(); - case 622: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(313); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(792); - END_STATE(); - case 623: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(979); - END_STATE(); - case 624: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1112); - END_STATE(); - case 625: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1106); - END_STATE(); - case 626: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(972); - END_STATE(); - case 627: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(902); - END_STATE(); - case 628: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1036); - END_STATE(); - case 629: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1028); - END_STATE(); - case 630: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1040); - END_STATE(); - case 631: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(167); - END_STATE(); - case 632: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1048); - END_STATE(); - case 633: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(970); - END_STATE(); - case 634: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(883); - END_STATE(); - case 635: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(885); - END_STATE(); - case 636: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1047); - END_STATE(); - case 637: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(975); - END_STATE(); - case 638: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(975); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(552); - END_STATE(); - case 639: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(821); - END_STATE(); - case 640: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(147); - END_STATE(); - case 641: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(822); - END_STATE(); - case 642: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(369); - END_STATE(); - case 643: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(591); - END_STATE(); - case 644: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(657); - END_STATE(); - case 645: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(824); - END_STATE(); - case 646: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(507); - END_STATE(); - case 647: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(431); - END_STATE(); - case 648: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(409); - END_STATE(); - case 649: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(586); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(827); - END_STATE(); - case 650: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(137); - END_STATE(); - case 651: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(421); - END_STATE(); - case 652: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(532); - END_STATE(); - case 653: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(159); - END_STATE(); - case 654: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(583); - END_STATE(); - case 655: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(721); - END_STATE(); - case 656: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(590); - END_STATE(); - case 657: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(337); - END_STATE(); - case 658: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(631); - END_STATE(); - case 659: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(537); - END_STATE(); - case 660: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(253); - END_STATE(); - case 661: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(573); - END_STATE(); - case 662: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(254); - END_STATE(); - case 663: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(733); - END_STATE(); - case 664: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(680); - END_STATE(); - case 665: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(263); - END_STATE(); - case 666: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(276); - END_STATE(); - case 667: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(315); - END_STATE(); - case 668: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(699); - END_STATE(); - case 669: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(593); - END_STATE(); - case 670: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(425); - END_STATE(); - case 671: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(596); - END_STATE(); - case 672: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(419); - END_STATE(); - case 673: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(141); - END_STATE(); - case 674: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(703); - END_STATE(); - case 675: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(350); - END_STATE(); - case 676: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(441); - END_STATE(); - case 677: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(343); - END_STATE(); - case 678: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(345); - END_STATE(); - case 679: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(677); - END_STATE(); - case 680: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(166); - END_STATE(); - case 681: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(678); - END_STATE(); - case 682: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(352); - END_STATE(); - case 683: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(838); - END_STATE(); - case 684: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1032); - END_STATE(); - case 685: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1064); - END_STATE(); - case 686: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(863); - END_STATE(); - case 687: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(940); - END_STATE(); - case 688: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(924); - END_STATE(); - case 689: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(990); - END_STATE(); - case 690: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(941); - END_STATE(); - case 691: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(943); - END_STATE(); - case 692: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(942); - END_STATE(); - case 693: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(896); - END_STATE(); - case 694: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(240); - END_STATE(); - case 695: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(185); - END_STATE(); - case 696: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(684); - END_STATE(); - case 697: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(761); - END_STATE(); - case 698: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(745); - END_STATE(); - case 699: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(717); - END_STATE(); - case 700: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(249); - END_STATE(); - case 701: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(324); - END_STATE(); - case 702: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(251); - END_STATE(); - case 703: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(266); - END_STATE(); - case 704: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(415); - END_STATE(); - case 705: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); - END_STATE(); - case 706: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(763); - END_STATE(); - case 707: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(328); - END_STATE(); - case 708: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); - END_STATE(); - case 709: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(432); - END_STATE(); - case 710: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(768); - END_STATE(); - case 711: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(776); - END_STATE(); - case 712: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(814); - END_STATE(); - case 713: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(986); - END_STATE(); - case 714: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(909); - END_STATE(); - case 715: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(898); - END_STATE(); - case 716: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1038); - END_STATE(); - case 717: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(897); - END_STATE(); - case 718: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(932); - END_STATE(); - case 719: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1023); - END_STATE(); - case 720: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1041); - END_STATE(); - case 721: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(962); - END_STATE(); - case 722: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1); - END_STATE(); - case 723: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1025); - END_STATE(); - case 724: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1016); - END_STATE(); - case 725: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1019); - END_STATE(); - case 726: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(989); - END_STATE(); - case 727: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(861); - END_STATE(); - case 728: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(866); - END_STATE(); - case 729: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(850); - END_STATE(); - case 730: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(982); - END_STATE(); - case 731: + lookahead == 'q') ADVANCE(821); if (lookahead == 'T' || lookahead == 't') ADVANCE(870); END_STATE(); - case 732: + case 516: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(432); + END_STATE(); + case 517: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(810); + END_STATE(); + case 518: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(815); + END_STATE(); + case 519: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(816); + END_STATE(); + case 520: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(452); + END_STATE(); + case 521: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(300); + END_STATE(); + case 522: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(880); + END_STATE(); + case 523: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(872); + END_STATE(); + case 524: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1041); + END_STATE(); + case 525: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1175); + END_STATE(); + case 526: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1176); + END_STATE(); + case 527: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(638); + END_STATE(); + case 528: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(437); + END_STATE(); + case 529: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(805); + END_STATE(); + case 530: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(529); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(199); + END_STATE(); + case 531: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(253); + END_STATE(); + case 532: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(131); + END_STATE(); + case 533: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(549); + END_STATE(); + case 534: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(269); + END_STATE(); + case 535: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(152); + END_STATE(); + case 536: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(152); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(455); + END_STATE(); + case 537: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(356); + END_STATE(); + case 538: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(362); + END_STATE(); + case 539: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(888); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1000); + END_STATE(); + case 540: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(422); + END_STATE(); + case 541: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(422); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(243); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(429); + END_STATE(); + case 542: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(824); + END_STATE(); + case 543: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1061); + END_STATE(); + case 544: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1011); + END_STATE(); + case 545: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1029); + END_STATE(); + case 546: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1010); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); + END_STATE(); + case 547: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1081); + END_STATE(); + case 548: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(953); + END_STATE(); + case 549: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(930); + END_STATE(); + case 550: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1037); + END_STATE(); + case 551: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1161); + END_STATE(); + case 552: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(117); + END_STATE(); + case 553: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(874); + END_STATE(); + case 554: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(906); + END_STATE(); + case 555: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(442); + END_STATE(); + case 556: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(947); + END_STATE(); + case 557: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(457); + END_STATE(); + case 558: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(222); + END_STATE(); + case 559: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + END_STATE(); + case 560: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(868); + END_STATE(); + case 561: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(868); if (lookahead == 'T' || - lookahead == 't') ADVANCE(907); + lookahead == 't') ADVANCE(1130); + END_STATE(); + case 562: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(200); + END_STATE(); + case 563: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(200); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1130); + END_STATE(); + case 564: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1130); + END_STATE(); + case 565: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(394); + END_STATE(); + case 566: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(394); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(737); + END_STATE(); + case 567: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(388); + END_STATE(); + case 568: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(224); + END_STATE(); + case 569: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(389); + END_STATE(); + case 570: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + END_STATE(); + case 571: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(768); + END_STATE(); + case 572: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(390); + END_STATE(); + case 573: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(303); + END_STATE(); + case 574: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(391); + END_STATE(); + case 575: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(635); + END_STATE(); + case 576: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(421); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(243); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(429); + END_STATE(); + case 577: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(421); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(429); + END_STATE(); + case 578: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(714); + END_STATE(); + case 579: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(256); + END_STATE(); + case 580: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(740); + END_STATE(); + case 581: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(748); + END_STATE(); + case 582: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(752); + END_STATE(); + case 583: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(771); + END_STATE(); + case 584: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(753); + END_STATE(); + case 585: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(756); + END_STATE(); + case 586: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(757); + END_STATE(); + case 587: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(278); + END_STATE(); + case 588: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(223); + END_STATE(); + case 589: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(721); + END_STATE(); + case 590: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(215); + END_STATE(); + case 591: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(216); + END_STATE(); + case 592: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(217); + END_STATE(); + case 593: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(213); + END_STATE(); + case 594: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(441); + END_STATE(); + case 595: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(339); + END_STATE(); + case 596: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(822); + END_STATE(); + case 597: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(823); + END_STATE(); + case 598: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(834); + END_STATE(); + case 599: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(226); + END_STATE(); + case 600: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); + END_STATE(); + case 601: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(837); + END_STATE(); + case 602: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(883); + END_STATE(); + case 603: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(950); + END_STATE(); + case 604: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(802); + END_STATE(); + case 605: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(719); + END_STATE(); + case 606: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(425); + END_STATE(); + case 607: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(636); + END_STATE(); + case 608: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(489); + END_STATE(); + case 609: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(637); + END_STATE(); + case 610: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(800); + END_STATE(); + case 611: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(645); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(612); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(488); + END_STATE(); + case 612: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(523); + END_STATE(); + case 613: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(369); + END_STATE(); + case 614: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(525); + END_STATE(); + case 615: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(526); + END_STATE(); + case 616: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(570); + END_STATE(); + case 617: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(570); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(692); + END_STATE(); + case 618: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(548); + END_STATE(); + case 619: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(552); + END_STATE(); + case 620: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(553); + END_STATE(); + case 621: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(744); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(498); + END_STATE(); + case 622: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(672); + END_STATE(); + case 623: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(554); + END_STATE(); + case 624: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(670); + END_STATE(); + case 625: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(578); + END_STATE(); + case 626: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(736); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(490); + END_STATE(); + case 627: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(775); + END_STATE(); + case 628: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(775); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(512); + END_STATE(); + case 629: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(470); + END_STATE(); + case 630: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(579); + END_STATE(); + case 631: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(395); + END_STATE(); + case 632: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(685); + END_STATE(); + case 633: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(689); + END_STATE(); + case 634: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(689); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(612); + END_STATE(); + case 635: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(729); + END_STATE(); + case 636: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(860); + END_STATE(); + case 637: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1021); + END_STATE(); + case 638: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1089); + END_STATE(); + case 639: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(961); + END_STATE(); + case 640: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(243); + END_STATE(); + case 641: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(255); + END_STATE(); + case 642: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(257); + END_STATE(); + case 643: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(279); + END_STATE(); + case 644: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(812); + END_STATE(); + case 645: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1004); + END_STATE(); + case 646: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1141); + END_STATE(); + case 647: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1135); + END_STATE(); + case 648: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(997); + END_STATE(); + case 649: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(927); + END_STATE(); + case 650: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1063); + END_STATE(); + case 651: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1055); + END_STATE(); + case 652: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1067); + END_STATE(); + case 653: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(179); + END_STATE(); + case 654: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1075); + END_STATE(); + case 655: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(995); + END_STATE(); + case 656: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(908); + END_STATE(); + case 657: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(910); + END_STATE(); + case 658: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1074); + END_STATE(); + case 659: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1000); + END_STATE(); + case 660: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1000); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(573); + END_STATE(); + case 661: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(160); + END_STATE(); + case 662: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(601); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(851); + END_STATE(); + case 663: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(137); + END_STATE(); + case 664: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(383); + END_STATE(); + case 665: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(845); + END_STATE(); + case 666: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(612); + END_STATE(); + case 667: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(846); + END_STATE(); + case 668: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(679); + END_STATE(); + case 669: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(848); + END_STATE(); + case 670: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(524); + END_STATE(); + case 671: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(448); + END_STATE(); + case 672: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(423); + END_STATE(); + case 673: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(150); + END_STATE(); + case 674: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(436); + END_STATE(); + case 675: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(172); + END_STATE(); + case 676: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(550); + END_STATE(); + case 677: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(605); + END_STATE(); + case 678: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(610); + END_STATE(); + case 679: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(353); + END_STATE(); + case 680: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(743); + END_STATE(); + case 681: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(653); + END_STATE(); + case 682: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(555); + END_STATE(); + case 683: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(264); + END_STATE(); + case 684: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(594); + END_STATE(); + case 685: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(265); + END_STATE(); + case 686: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(755); + END_STATE(); + case 687: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(274); + END_STATE(); + case 688: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(288); + END_STATE(); + case 689: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(327); + END_STATE(); + case 690: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(723); + END_STATE(); + case 691: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(614); + END_STATE(); + case 692: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(440); + END_STATE(); + case 693: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(615); + END_STATE(); + case 694: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(434); + END_STATE(); + case 695: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(153); + END_STATE(); + case 696: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(727); + END_STATE(); + case 697: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(703); + END_STATE(); + case 698: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(363); + END_STATE(); + case 699: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(456); + END_STATE(); + case 700: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(359); + END_STATE(); + case 701: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(361); + END_STATE(); + case 702: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(700); + END_STATE(); + case 703: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(178); + END_STATE(); + case 704: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(701); + END_STATE(); + case 705: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(365); + END_STATE(); + case 706: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(868); + END_STATE(); + case 707: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1059); + END_STATE(); + case 708: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1091); + END_STATE(); + case 709: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(887); + END_STATE(); + case 710: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(965); + END_STATE(); + case 711: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(949); + END_STATE(); + case 712: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1017); + END_STATE(); + case 713: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(966); + END_STATE(); + case 714: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(968); + END_STATE(); + case 715: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(967); + END_STATE(); + case 716: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(921); + END_STATE(); + case 717: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(250); + END_STATE(); + case 718: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(196); + END_STATE(); + case 719: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(707); + END_STATE(); + case 720: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(782); + END_STATE(); + case 721: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(783); + END_STATE(); + case 722: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(769); + END_STATE(); + case 723: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(739); + END_STATE(); + case 724: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(260); + END_STATE(); + case 725: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(337); + END_STATE(); + case 726: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(262); + END_STATE(); + case 727: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(277); + END_STATE(); + case 728: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(429); + END_STATE(); + case 729: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(785); + END_STATE(); + case 730: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(341); + END_STATE(); + case 731: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(342); + END_STATE(); + case 732: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(450); END_STATE(); case 733: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(857); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(790); END_STATE(); case 734: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(988); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(798); END_STATE(); case 735: if (lookahead == 'T' || - lookahead == 't') ADVANCE(958); + lookahead == 't') ADVANCE(1013); END_STATE(); case 736: if (lookahead == 'T' || - lookahead == 't') ADVANCE(401); + lookahead == 't') ADVANCE(934); END_STATE(); case 737: if (lookahead == 'T' || - lookahead == 't') ADVANCE(397); + lookahead == 't') ADVANCE(923); END_STATE(); case 738: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2); + lookahead == 't') ADVANCE(1065); END_STATE(); case 739: if (lookahead == 'T' || - lookahead == 't') ADVANCE(117); + lookahead == 't') ADVANCE(922); END_STATE(); case 740: if (lookahead == 'T' || - lookahead == 't') ADVANCE(117); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1110); + lookahead == 't') ADVANCE(957); END_STATE(); case 741: if (lookahead == 'T' || - lookahead == 't') ADVANCE(427); + lookahead == 't') ADVANCE(1050); END_STATE(); case 742: if (lookahead == 'T' || - lookahead == 't') ADVANCE(823); + lookahead == 't') ADVANCE(1068); END_STATE(); case 743: if (lookahead == 'T' || - lookahead == 't') ADVANCE(390); + lookahead == 't') ADVANCE(987); END_STATE(); case 744: if (lookahead == 'T' || - lookahead == 't') ADVANCE(391); + lookahead == 't') ADVANCE(1); END_STATE(); case 745: if (lookahead == 'T' || - lookahead == 't') ADVANCE(685); + lookahead == 't') ADVANCE(1052); END_STATE(); case 746: if (lookahead == 'T' || - lookahead == 't') ADVANCE(164); + lookahead == 't') ADVANCE(1043); END_STATE(); case 747: if (lookahead == 'T' || - lookahead == 't') ADVANCE(473); + lookahead == 't') ADVANCE(1046); END_STATE(); case 748: if (lookahead == 'T' || - lookahead == 't') ADVANCE(653); + lookahead == 't') ADVANCE(1016); END_STATE(); case 749: if (lookahead == 'T' || - lookahead == 't') ADVANCE(338); + lookahead == 't') ADVANCE(885); END_STATE(); case 750: if (lookahead == 'T' || - lookahead == 't') ADVANCE(575); + lookahead == 't') ADVANCE(890); END_STATE(); case 751: if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); + lookahead == 't') ADVANCE(865); END_STATE(); case 752: if (lookahead == 'T' || - lookahead == 't') ADVANCE(256); + lookahead == 't') ADVANCE(1007); END_STATE(); case 753: if (lookahead == 'T' || - lookahead == 't') ADVANCE(257); + lookahead == 't') ADVANCE(894); END_STATE(); case 754: if (lookahead == 'T' || - lookahead == 't') ADVANCE(261); + lookahead == 't') ADVANCE(932); END_STATE(); case 755: if (lookahead == 'T' || - lookahead == 't') ADVANCE(264); + lookahead == 't') ADVANCE(881); END_STATE(); case 756: if (lookahead == 'T' || - lookahead == 't') ADVANCE(272); + lookahead == 't') ADVANCE(1015); END_STATE(); case 757: if (lookahead == 'T' || - lookahead == 't') ADVANCE(274); + lookahead == 't') ADVANCE(983); END_STATE(); case 758: if (lookahead == 'T' || - lookahead == 't') ADVANCE(784); + lookahead == 't') ADVANCE(415); END_STATE(); case 759: if (lookahead == 'T' || - lookahead == 't') ADVANCE(300); + lookahead == 't') ADVANCE(409); END_STATE(); case 760: if (lookahead == 'T' || - lookahead == 't') ADVANCE(424); + lookahead == 't') ADVANCE(838); END_STATE(); case 761: if (lookahead == 'T' || - lookahead == 't') ADVANCE(676); + lookahead == 't') ADVANCE(2); END_STATE(); case 762: if (lookahead == 'T' || - lookahead == 't') ADVANCE(305); + lookahead == 't') ADVANCE(445); END_STATE(); case 763: if (lookahead == 'T' || - lookahead == 't') ADVANCE(420); + lookahead == 't') ADVANCE(130); END_STATE(); case 764: if (lookahead == 'T' || - lookahead == 't') ADVANCE(438); + lookahead == 't') ADVANCE(130); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1139); END_STATE(); case 765: if (lookahead == 'T' || - lookahead == 't') ADVANCE(309); + lookahead == 't') ADVANCE(403); END_STATE(); case 766: if (lookahead == 'T' || - lookahead == 't') ADVANCE(309); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(810); + lookahead == 't') ADVANCE(818); END_STATE(); case 767: if (lookahead == 'T' || - lookahead == 't') ADVANCE(794); + lookahead == 't') ADVANCE(847); END_STATE(); case 768: if (lookahead == 'T' || - lookahead == 't') ADVANCE(423); + lookahead == 't') ADVANCE(404); END_STATE(); case 769: if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); + lookahead == 't') ADVANCE(708); END_STATE(); case 770: if (lookahead == 'T' || - lookahead == 't') ADVANCE(444); + lookahead == 't') ADVANCE(176); END_STATE(); case 771: if (lookahead == 'T' || - lookahead == 't') ADVANCE(828); + lookahead == 't') ADVANCE(492); END_STATE(); case 772: if (lookahead == 'T' || - lookahead == 't') ADVANCE(437); + lookahead == 't') ADVANCE(266); END_STATE(); case 773: if (lookahead == 'T' || - lookahead == 't') ADVANCE(443); + lookahead == 't') ADVANCE(267); END_STATE(); case 774: if (lookahead == 'T' || - lookahead == 't') ADVANCE(445); + lookahead == 't') ADVANCE(268); END_STATE(); case 775: if (lookahead == 'T' || - lookahead == 't') ADVANCE(4); + lookahead == 't') ADVANCE(596); END_STATE(); case 776: if (lookahead == 'T' || - lookahead == 't') ADVANCE(448); + lookahead == 't') ADVANCE(272); END_STATE(); case 777: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(298); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(275); END_STATE(); case 778: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(617); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(284); END_STATE(); case 779: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(624); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(286); END_STATE(); case 780: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(514); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(317); END_STATE(); case 781: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(478); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(438); END_STATE(); case 782: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(707); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(699); END_STATE(); case 783: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(487); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(675); END_STATE(); case 784: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(650); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(320); END_STATE(); case 785: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(746); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(435); END_STATE(); case 786: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(652); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(454); END_STATE(); case 787: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(670); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); END_STATE(); case 788: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(470); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(832); END_STATE(); case 789: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(567); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(813); END_STATE(); case 790: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(302); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(439); END_STATE(); case 791: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(546); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(332); END_STATE(); case 792: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(260); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(852); END_STATE(); case 793: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(659); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(459); END_STATE(); case 794: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(661); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(453); END_STATE(); case 795: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(269); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(458); END_STATE(); case 796: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(270); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(460); END_STATE(); case 797: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(764); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(873); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4); END_STATE(); case 798: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(154); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(463); END_STATE(); case 799: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(312); + lookahead == 'u') ADVANCE(311); END_STATE(); case 800: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(228); + lookahead == 'u') ADVANCE(639); END_STATE(); case 801: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(482); + lookahead == 'u') ADVANCE(533); END_STATE(); case 802: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(753); + lookahead == 'u') ADVANCE(646); END_STATE(); case 803: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(753); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(165); + lookahead == 'u') ADVANCE(495); END_STATE(); case 804: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(666); + lookahead == 'u') ADVANCE(504); END_STATE(); case 805: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(483); + lookahead == 'u') ADVANCE(770); END_STATE(); case 806: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(755); + lookahead == 'u') ADVANCE(676); END_STATE(); case 807: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(708); + lookahead == 'u') ADVANCE(692); END_STATE(); case 808: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(351); + lookahead == 'u') ADVANCE(486); END_STATE(); case 809: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(679); + lookahead == 'u') ADVANCE(588); END_STATE(); case 810: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(163); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(314); END_STATE(); case 811: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(429); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(682); END_STATE(); case 812: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(165); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(271); END_STATE(); case 813: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(873); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(684); END_STATE(); case 814: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(339); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(568); END_STATE(); case 815: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(771); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(281); END_STATE(); case 816: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(889); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(282); END_STATE(); case 817: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(810); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(786); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(898); END_STATE(); case 818: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(295); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(673); END_STATE(); case 819: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1110); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(167); END_STATE(); case 820: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(921); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(239); END_STATE(); case 821: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1012); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(331); END_STATE(); case 822: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(919); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(499); END_STATE(); case 823: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(774); END_STATE(); case 824: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1063); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(774); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(177); END_STATE(); case 825: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(890); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(688); END_STATE(); case 826: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(914); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(501); END_STATE(); case 827: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(620); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(730); END_STATE(); case 828: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(621); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(777); END_STATE(); case 829: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(306); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(731); END_STATE(); case 830: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(171); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(364); END_STATE(); case 831: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(702); END_STATE(); case 832: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(175); END_STATE(); case 833: - if (eof) ADVANCE(834); - if (lookahead == '$') ADVANCE(1056); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '\'') ADVANCE(1071); - if (lookahead == '(') ADVANCE(851); - if (lookahead == ')') ADVANCE(852); - if (lookahead == ',') ADVANCE(842); - if (lookahead == '-') ADVANCE(72); - if (lookahead == '/') ADVANCE(65); - if (lookahead == ';') ADVANCE(835); - if (lookahead == '[') ADVANCE(1065); - if (lookahead == '\\') ADVANCE(956); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(216); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(335); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(108); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(278); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(612); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(640); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(112); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(513); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(584); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(237); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(119); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(127); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(361); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(651); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(280); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(169); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(556); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(123); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(403); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(833) + lookahead == 'v') ADVANCE(433); END_STATE(); case 834: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(177); END_STATE(); case 835: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(898); END_STATE(); case 836: - ACCEPT_TOKEN(aux_sym_update_statement_token1); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(897); END_STATE(); case 837: - ACCEPT_TOKEN(aux_sym_update_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(792); END_STATE(); case 838: - ACCEPT_TOKEN(aux_sym_update_statement_token2); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(358); END_STATE(); case 839: - ACCEPT_TOKEN(aux_sym_update_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(914); END_STATE(); case 840: - ACCEPT_TOKEN(aux_sym_update_statement_token3); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(832); END_STATE(); case 841: - ACCEPT_TOKEN(aux_sym_update_statement_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(306); END_STATE(); case 842: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1139); END_STATE(); case 843: - ACCEPT_TOKEN(aux_sym_update_statement_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(946); END_STATE(); case 844: - ACCEPT_TOKEN(aux_sym_update_statement_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1116); END_STATE(); case 845: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1039); END_STATE(); case 846: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(944); END_STATE(); case 847: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1073); END_STATE(); case 848: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1090); END_STATE(); case 849: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token3); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(915); END_STATE(); case 850: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(939); END_STATE(); case 851: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(642); END_STATE(); case 852: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(643); END_STATE(); case 853: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(319); END_STATE(); case 854: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(183); END_STATE(); case 855: - ACCEPT_TOKEN(aux_sym_create_type_statement_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1122); END_STATE(); case 856: - ACCEPT_TOKEN(aux_sym_create_type_statement_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 857: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); + if (eof) ADVANCE(858); + if (lookahead == '$') ADVANCE(1083); + if (lookahead == '%') ADVANCE(662); + if (lookahead == '\'') ADVANCE(1098); + if (lookahead == '(') ADVANCE(876); + if (lookahead == ')') ADVANCE(877); + if (lookahead == ',') ADVANCE(863); + if (lookahead == '-') ADVANCE(84); + if (lookahead == '/') ADVANCE(77); + if (lookahead == ';') ADVANCE(859); + if (lookahead == '[') ADVANCE(1092); + if (lookahead == '\\') ADVANCE(981); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(227); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(351); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(120); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(290); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(841); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(611); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(661); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(124); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(530); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(606); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(247); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(136); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(140); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(374); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(674); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(291); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(292); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(181); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(576); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(134); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(408); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(857) END_STATE(); case 858: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 859: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 860: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); END_STATE(); case 861: - ACCEPT_TOKEN(aux_sym_insert_items_token1); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 862: - ACCEPT_TOKEN(aux_sym_insert_items_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token2); END_STATE(); case 863: - ACCEPT_TOKEN(aux_sym_insert_items_token2); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 864: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token3); END_STATE(); case 865: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token4); END_STATE(); case 866: - ACCEPT_TOKEN(aux_sym_insert_conflict_token2); + ACCEPT_TOKEN(aux_sym_update_statement_token1); END_STATE(); case 867: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + ACCEPT_TOKEN(aux_sym_update_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 868: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_update_statement_token2); END_STATE(); case 869: - ACCEPT_TOKEN(aux_sym_insert_conflict_token4); + ACCEPT_TOKEN(aux_sym_update_statement_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 870: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); + ACCEPT_TOKEN(aux_sym_update_statement_token3); END_STATE(); case 871: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_update_statement_token3); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 872: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(aux_sym_update_statement_token4); END_STATE(); case 873: - ACCEPT_TOKEN(aux_sym_update_set_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1027); + ACCEPT_TOKEN(aux_sym_update_statement_token4); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 874: - ACCEPT_TOKEN(aux_sym_returning_token1); + ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); END_STATE(); case 875: - ACCEPT_TOKEN(aux_sym_returning_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 876: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 877: - ACCEPT_TOKEN(aux_sym_create_table_statement_token2); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 878: - ACCEPT_TOKEN(aux_sym_create_table_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); END_STATE(); case 879: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 880: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_create_type_statement_token2); END_STATE(); case 881: - ACCEPT_TOKEN(aux_sym_schema_role_token1); + ACCEPT_TOKEN(aux_sym_insert_statement_token1); END_STATE(); case 882: - ACCEPT_TOKEN(aux_sym_schema_role_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_insert_statement_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 883: - ACCEPT_TOKEN(aux_sym_schema_role_token2); + ACCEPT_TOKEN(aux_sym_insert_statement_token2); END_STATE(); case 884: - ACCEPT_TOKEN(aux_sym_schema_role_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_insert_statement_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 885: - ACCEPT_TOKEN(aux_sym_schema_role_token3); + ACCEPT_TOKEN(aux_sym_insert_items_token1); END_STATE(); case 886: - ACCEPT_TOKEN(aux_sym_schema_role_token3); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_insert_items_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 887: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + ACCEPT_TOKEN(aux_sym_insert_items_token2); END_STATE(); case 888: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); END_STATE(); case 889: - ACCEPT_TOKEN(aux_sym_create_index_statement_token2); + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 890: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + ACCEPT_TOKEN(aux_sym_insert_conflict_token2); END_STATE(); case 891: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); END_STATE(); case 892: - ACCEPT_TOKEN(aux_sym_index_using_token1); + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 893: - ACCEPT_TOKEN(aux_sym_index_using_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_insert_conflict_token4); END_STATE(); case 894: - ACCEPT_TOKEN(aux_sym_index_col_dir_token1); + ACCEPT_TOKEN(aux_sym_conflict_target_token1); END_STATE(); case 895: - ACCEPT_TOKEN(aux_sym_index_col_dir_token2); + ACCEPT_TOKEN(aux_sym_conflict_target_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 896: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 897: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); + ACCEPT_TOKEN(aux_sym_update_set_token1); END_STATE(); case 898: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); + ACCEPT_TOKEN(aux_sym_update_set_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1054); END_STATE(); case 899: - ACCEPT_TOKEN(aux_sym_index_includes_token1); + ACCEPT_TOKEN(aux_sym_returning_token1); END_STATE(); case 900: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); + ACCEPT_TOKEN(aux_sym_returning_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 901: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_create_table_statement_token1); END_STATE(); case 902: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + ACCEPT_TOKEN(aux_sym_create_table_statement_token2); END_STATE(); case 903: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_create_table_statement_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 904: - ACCEPT_TOKEN(aux_sym_alter_table_action_token1); + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); END_STATE(); case 905: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 906: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_schema_role_token1); END_STATE(); case 907: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + ACCEPT_TOKEN(aux_sym_schema_role_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 908: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_schema_role_token2); END_STATE(); case 909: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(801); + ACCEPT_TOKEN(aux_sym_schema_role_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 910: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + ACCEPT_TOKEN(aux_sym_schema_role_token3); END_STATE(); case 911: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_schema_role_token3); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 912: - ACCEPT_TOKEN(aux_sym_alter_column_action_token3); + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); END_STATE(); case 913: - ACCEPT_TOKEN(aux_sym_constraint_when_token1); + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 914: - ACCEPT_TOKEN(aux_sym_constraint_when_token2); + ACCEPT_TOKEN(aux_sym_create_index_statement_token2); END_STATE(); case 915: - ACCEPT_TOKEN(aux_sym_constraint_when_token3); + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); END_STATE(); case 916: - ACCEPT_TOKEN(aux_sym_constraint_when_token4); + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 917: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + ACCEPT_TOKEN(aux_sym_index_using_token1); END_STATE(); case 918: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_index_using_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 919: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + ACCEPT_TOKEN(aux_sym_index_col_dir_token1); END_STATE(); case 920: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_index_col_dir_token2); END_STATE(); case 921: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); END_STATE(); case 922: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); END_STATE(); case 923: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); END_STATE(); case 924: - ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); + ACCEPT_TOKEN(aux_sym_index_includes_token1); END_STATE(); case 925: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + ACCEPT_TOKEN(aux_sym_delete_statement_token1); END_STATE(); case 926: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(242); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(909); + ACCEPT_TOKEN(aux_sym_delete_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 927: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(907); + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); END_STATE(); case 928: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 929: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); + ACCEPT_TOKEN(aux_sym_alter_table_action_token1); END_STATE(); case 930: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); END_STATE(); case 931: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 932: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); END_STATE(); case 933: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 934: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(822); END_STATE(); case 935: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); END_STATE(); case 936: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 937: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_alter_column_action_token3); END_STATE(); case 938: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + ACCEPT_TOKEN(aux_sym_constraint_when_token1); END_STATE(); case 939: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_constraint_when_token2); END_STATE(); case 940: - ACCEPT_TOKEN(aux_sym_grant_privileges_token2); + ACCEPT_TOKEN(aux_sym_constraint_when_token3); END_STATE(); case 941: - ACCEPT_TOKEN(aux_sym_grant_targets_token1); + ACCEPT_TOKEN(aux_sym_constraint_when_token4); END_STATE(); case 942: - ACCEPT_TOKEN(aux_sym_grant_targets_token2); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); END_STATE(); case 943: - ACCEPT_TOKEN(aux_sym_grant_targets_token3); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 944: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); END_STATE(); case 945: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1406); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 946: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); END_STATE(); case 947: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(307); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); END_STATE(); case 948: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(307); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(580); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 949: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(580); + ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); END_STATE(); case 950: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); END_STATE(); case 951: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(252); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(934); END_STATE(); case 952: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(932); END_STATE(); case 953: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); END_STATE(); case 954: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); END_STATE(); case 955: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); END_STATE(); case 956: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 957: - ACCEPT_TOKEN(aux_sym_psql_statement_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(957); + ACCEPT_TOKEN(aux_sym_grant_statement_token1); END_STATE(); case 958: - ACCEPT_TOKEN(aux_sym_sequence_increment_token1); + ACCEPT_TOKEN(aux_sym_grant_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 959: - ACCEPT_TOKEN(aux_sym_sequence_increment_token2); + ACCEPT_TOKEN(aux_sym_grant_roles_token1); END_STATE(); case 960: - ACCEPT_TOKEN(aux_sym_sequence_min_token1); + ACCEPT_TOKEN(aux_sym_grant_roles_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 961: - ACCEPT_TOKEN(aux_sym_sequence_max_token1); + ACCEPT_TOKEN(aux_sym_grant_roles_token2); END_STATE(); case 962: - ACCEPT_TOKEN(aux_sym_sequence_start_token1); + ACCEPT_TOKEN(aux_sym_grant_roles_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 963: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); END_STATE(); case 964: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 965: - ACCEPT_TOKEN(aux_sym_sequence_cache_token1); + ACCEPT_TOKEN(aux_sym_grant_privileges_token2); END_STATE(); case 966: - ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token1); END_STATE(); case 967: - ACCEPT_TOKEN(aux_sym_sequence_owned_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token2); END_STATE(); case 968: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); + ACCEPT_TOKEN(aux_sym_grant_targets_token3); END_STATE(); case 969: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); END_STATE(); case 970: - ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 971: - ACCEPT_TOKEN(aux_sym_trigger_when_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 972: - ACCEPT_TOKEN(aux_sym_trigger_when_token2); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(322); END_STATE(); case 973: - ACCEPT_TOKEN(aux_sym_trigger_when_token3); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(322); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(602); END_STATE(); case 974: - ACCEPT_TOKEN(aux_sym_trigger_event_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(602); END_STATE(); case 975: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); + ACCEPT_TOKEN(aux_sym_grant_targets_token5); END_STATE(); case 976: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1232); + ACCEPT_TOKEN(aux_sym_grant_targets_token5); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 977: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_grant_targets_token6); END_STATE(); case 978: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(317); + ACCEPT_TOKEN(aux_sym_grant_targets_token6); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 979: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token7); END_STATE(); case 980: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_grant_targets_token7); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 981: - ACCEPT_TOKEN(aux_sym_trigger_scope_token2); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 982: - ACCEPT_TOKEN(aux_sym_trigger_scope_token3); + ACCEPT_TOKEN(aux_sym_psql_statement_token1); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(982); END_STATE(); case 983: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); + ACCEPT_TOKEN(aux_sym_sequence_increment_token1); END_STATE(); case 984: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_sequence_increment_token2); END_STATE(); case 985: - ACCEPT_TOKEN(aux_sym_trigger_cond_token1); + ACCEPT_TOKEN(aux_sym_sequence_min_token1); END_STATE(); case 986: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); + ACCEPT_TOKEN(aux_sym_sequence_max_token1); END_STATE(); case 987: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_sequence_start_token1); END_STATE(); case 988: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); + ACCEPT_TOKEN(aux_sym_sequence_start_token2); END_STATE(); case 989: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); - if (lookahead == '_') ADVANCE(782); + ACCEPT_TOKEN(aux_sym_sequence_start_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 990: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token3); + ACCEPT_TOKEN(aux_sym_sequence_cache_token1); END_STATE(); case 991: - ACCEPT_TOKEN(aux_sym_for_statement_token1); + ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); END_STATE(); case 992: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_sequence_owned_token1); END_STATE(); case 993: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); END_STATE(); case 994: - ACCEPT_TOKEN(aux_sym_for_statement_token2); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 995: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); END_STATE(); case 996: - ACCEPT_TOKEN(aux_sym_for_statement_token3); + ACCEPT_TOKEN(aux_sym_trigger_when_token1); END_STATE(); case 997: - ACCEPT_TOKEN(aux_sym_for_statement_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_trigger_when_token2); END_STATE(); case 998: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); + ACCEPT_TOKEN(aux_sym_trigger_when_token3); END_STATE(); case 999: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_trigger_event_token1); END_STATE(); case 1000: - ACCEPT_TOKEN(aux_sym_if_statement_token1); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); END_STATE(); case 1001: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1002: - ACCEPT_TOKEN(aux_sym_if_statement_token2); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1003: - ACCEPT_TOKEN(aux_sym_if_statement_token3); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(328); END_STATE(); case 1004: - ACCEPT_TOKEN(aux_sym_if_statement_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); END_STATE(); case 1005: - ACCEPT_TOKEN(aux_sym_if_statement_token4); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1006: - ACCEPT_TOKEN(aux_sym_if_statement_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_trigger_scope_token2); END_STATE(); case 1007: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_trigger_scope_token3); END_STATE(); case 1008: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(355); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); END_STATE(); case 1009: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1010: - ACCEPT_TOKEN(aux_sym_return_statement_token1); + ACCEPT_TOKEN(aux_sym_trigger_cond_token1); END_STATE(); case 1011: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); END_STATE(); case 1012: - ACCEPT_TOKEN(aux_sym_return_statement_token2); + ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1013: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); END_STATE(); case 1014: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1015: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); END_STATE(); case 1016: - ACCEPT_TOKEN(aux_sym_select_statement_token1); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); + if (lookahead == '_') ADVANCE(827); END_STATE(); case 1017: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token3); END_STATE(); case 1018: - ACCEPT_TOKEN(aux_sym_with_query_item_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token1); END_STATE(); case 1019: - ACCEPT_TOKEN(aux_sym_into_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1020: - ACCEPT_TOKEN(aux_sym_into_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1021: - ACCEPT_TOKEN(aux_sym_select_having_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token2); END_STATE(); case 1022: - ACCEPT_TOKEN(aux_sym_select_having_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_for_statement_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1023: - ACCEPT_TOKEN(aux_sym_select_limit_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token3); END_STATE(); case 1024: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_for_statement_token3); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1025: - ACCEPT_TOKEN(aux_sym_select_offset_token1); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); END_STATE(); case 1026: - ACCEPT_TOKEN(aux_sym_select_offset_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1027: - ACCEPT_TOKEN(aux_sym_select_offset_token2); + ACCEPT_TOKEN(aux_sym_if_statement_token1); END_STATE(); case 1028: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); + ACCEPT_TOKEN(aux_sym_if_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1029: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); case 1030: - ACCEPT_TOKEN(aux_sym_join_item_token1); + ACCEPT_TOKEN(aux_sym_if_statement_token3); END_STATE(); case 1031: - ACCEPT_TOKEN(aux_sym_join_item_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_if_statement_token3); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1032: - ACCEPT_TOKEN(aux_sym_join_item_token2); + ACCEPT_TOKEN(aux_sym_if_statement_token4); END_STATE(); case 1033: - ACCEPT_TOKEN(aux_sym_join_item_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_if_statement_token4); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1034: - ACCEPT_TOKEN(aux_sym_join_item_token3); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1313); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1035: - ACCEPT_TOKEN(aux_sym_join_item_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(368); END_STATE(); case 1036: - ACCEPT_TOKEN(aux_sym_join_type_token1); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 1037: - ACCEPT_TOKEN(aux_sym_join_type_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_return_statement_token1); END_STATE(); case 1038: - ACCEPT_TOKEN(aux_sym_join_type_token2); + ACCEPT_TOKEN(aux_sym_return_statement_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1039: - ACCEPT_TOKEN(aux_sym_join_type_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_return_statement_token2); END_STATE(); case 1040: - ACCEPT_TOKEN(aux_sym_join_type_token3); + ACCEPT_TOKEN(aux_sym_return_statement_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1041: - ACCEPT_TOKEN(aux_sym_join_type_token4); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); END_STATE(); case 1042: - ACCEPT_TOKEN(aux_sym_join_type_token4); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1043: - ACCEPT_TOKEN(aux_sym_join_type_token5); + ACCEPT_TOKEN(aux_sym_select_statement_token1); END_STATE(); case 1044: - ACCEPT_TOKEN(aux_sym_join_type_token5); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_select_statement_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1045: - ACCEPT_TOKEN(aux_sym_create_function_statement_token1); + ACCEPT_TOKEN(aux_sym_with_query_item_token1); END_STATE(); case 1046: - ACCEPT_TOKEN(aux_sym_function_run_as_token1); + ACCEPT_TOKEN(aux_sym_into_token1); END_STATE(); case 1047: - ACCEPT_TOKEN(aux_sym_function_run_as_token2); + ACCEPT_TOKEN(aux_sym_into_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1048: - ACCEPT_TOKEN(aux_sym_function_run_as_token3); + ACCEPT_TOKEN(aux_sym_select_having_token1); END_STATE(); case 1049: - ACCEPT_TOKEN(aux_sym_function_return_token1); + ACCEPT_TOKEN(aux_sym_select_having_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1050: - ACCEPT_TOKEN(aux_sym_return_setof_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_select_limit_token1); END_STATE(); case 1051: - ACCEPT_TOKEN(aux_sym_function_volatility_token1); + ACCEPT_TOKEN(aux_sym_select_limit_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1052: - ACCEPT_TOKEN(aux_sym_function_volatility_token2); + ACCEPT_TOKEN(aux_sym_select_offset_token1); END_STATE(); case 1053: - ACCEPT_TOKEN(aux_sym_function_volatility_token3); + ACCEPT_TOKEN(aux_sym_select_offset_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1054: - ACCEPT_TOKEN(aux_sym_body_token1); + ACCEPT_TOKEN(aux_sym_select_offset_token2); END_STATE(); case 1055: - ACCEPT_TOKEN(aux_sym_body_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_select_order_by_token1); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(aux_sym_select_order_by_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1057: - ACCEPT_TOKEN(aux_sym_declarations_token1); + ACCEPT_TOKEN(aux_sym_join_item_token1); END_STATE(); case 1058: - ACCEPT_TOKEN(aux_sym_declarations_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_join_item_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1059: - ACCEPT_TOKEN(aux_sym_where_filter_token1); + ACCEPT_TOKEN(aux_sym_join_item_token2); END_STATE(); case 1060: - ACCEPT_TOKEN(aux_sym_where_filter_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_join_item_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1061: - ACCEPT_TOKEN(aux_sym_or_replace_token1); + ACCEPT_TOKEN(aux_sym_join_item_token3); END_STATE(); case 1062: - ACCEPT_TOKEN(aux_sym_temporary_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(673); + ACCEPT_TOKEN(aux_sym_join_item_token3); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1063: - ACCEPT_TOKEN(aux_sym_temporary_token2); + ACCEPT_TOKEN(aux_sym_join_type_token1); END_STATE(); case 1064: - ACCEPT_TOKEN(aux_sym_if_not_exists_token1); + ACCEPT_TOKEN(aux_sym_join_type_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym_join_type_token2); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(aux_sym_join_type_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1067: - ACCEPT_TOKEN(aux_sym__type_token1); + ACCEPT_TOKEN(aux_sym_join_type_token3); END_STATE(); case 1068: - ACCEPT_TOKEN(aux_sym__type_token2); + ACCEPT_TOKEN(aux_sym_join_type_token4); END_STATE(); case 1069: - ACCEPT_TOKEN(aux_sym_predefined_types_token1); + ACCEPT_TOKEN(aux_sym_join_type_token4); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1070: - ACCEPT_TOKEN(aux_sym_predefined_types_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_join_type_token5); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(aux_sym_join_type_token5); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(1073); + ACCEPT_TOKEN(aux_sym_create_function_statement_token1); END_STATE(); case 1073: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(aux_sym_function_run_as_token1); END_STATE(); case 1074: - ACCEPT_TOKEN(aux_sym_string_token2); + ACCEPT_TOKEN(aux_sym_function_run_as_token2); END_STATE(); case 1075: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(69); + ACCEPT_TOKEN(aux_sym_function_run_as_token3); END_STATE(); case 1076: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1086); + ACCEPT_TOKEN(aux_sym_function_return_token1); END_STATE(); case 1077: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1076); - if (lookahead == '/') ADVANCE(1075); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1077); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(1074); + ACCEPT_TOKEN(aux_sym_return_setof_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1078: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(aux_sym_function_volatility_token1); END_STATE(); case 1079: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1094); - if (lookahead == '$') ADVANCE(1085); - if (lookahead == '%') ADVANCE(1079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1082); - if (lookahead != 0) ADVANCE(1081); + ACCEPT_TOKEN(aux_sym_function_volatility_token2); END_STATE(); case 1080: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1094); - if (lookahead == '$') ADVANCE(1085); - if (lookahead == '%') ADVANCE(1079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1080); - if (lookahead != 0) ADVANCE(1081); + ACCEPT_TOKEN(aux_sym_function_volatility_token3); END_STATE(); case 1081: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1094); - if (lookahead == '$') ADVANCE(1085); - if (lookahead == '%') ADVANCE(1079); - if (lookahead != 0) ADVANCE(1081); + ACCEPT_TOKEN(aux_sym_body_token1); END_STATE(); case 1082: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1094); - if (lookahead == '$') ADVANCE(1084); - if (lookahead == '%') ADVANCE(1079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1082); - if (lookahead != 0) ADVANCE(1081); + ACCEPT_TOKEN(aux_sym_body_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1083: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead != 0) ADVANCE(1094); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1084: - ACCEPT_TOKEN(sym_comment); - if (lookahead == 's') ADVANCE(1081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1080); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1086); + ACCEPT_TOKEN(aux_sym_declarations_token1); END_STATE(); case 1085: - ACCEPT_TOKEN(sym_comment); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1080); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1086); + ACCEPT_TOKEN(aux_sym_declarations_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1086: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1086); + ACCEPT_TOKEN(aux_sym_where_filter_token1); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(aux_sym_where_filter_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(993); + ACCEPT_TOKEN(aux_sym_or_replace_token1); END_STATE(); case 1089: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead == '*') ADVANCE(1099); - if (lookahead != 0) ADVANCE(1094); + ACCEPT_TOKEN(aux_sym_temporary_token1); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(695); END_STATE(); case 1090: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead == '-') ADVANCE(1091); - if (lookahead == '/') ADVANCE(1089); + ACCEPT_TOKEN(aux_sym_temporary_token2); + END_STATE(); + case 1091: + ACCEPT_TOKEN(aux_sym_if_not_exists_token1); + END_STATE(); + case 1092: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 1093: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 1094: + ACCEPT_TOKEN(aux_sym__type_token1); + END_STATE(); + case 1095: + ACCEPT_TOKEN(aux_sym__type_token2); + END_STATE(); + case 1096: + ACCEPT_TOKEN(aux_sym_predefined_types_token1); + END_STATE(); + case 1097: + ACCEPT_TOKEN(aux_sym_predefined_types_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1098: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 1099: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(1100); + END_STATE(); + case 1100: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 1101: + ACCEPT_TOKEN(aux_sym_string_token2); + END_STATE(); + case 1102: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '*') ADVANCE(81); + END_STATE(); + case 1103: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '-') ADVANCE(1113); + END_STATE(); + case 1104: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '-') ADVANCE(1103); + if (lookahead == '/') ADVANCE(1102); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -10696,4446 +11336,4636 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1090); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead == '-') ADVANCE(1081); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1095); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(831); - if (lookahead == '%') ADVANCE(1092); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(105); - if (lookahead == '%') ADVANCE(1092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1095); - if (lookahead != 0) ADVANCE(1094); - END_STATE(); - case 1096: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '%') ADVANCE(1097); - if (lookahead == '*') ADVANCE(1096); - if (lookahead == '/') ADVANCE(1083); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '%') ADVANCE(1097); - if (lookahead == '*') ADVANCE(1096); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1100); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1098: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '%') ADVANCE(1097); - if (lookahead == '*') ADVANCE(1096); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1098); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1099: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '%') ADVANCE(1097); - if (lookahead == '*') ADVANCE(1096); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '%') ADVANCE(1097); - if (lookahead == '*') ADVANCE(1096); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1100); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_time_expression_token2); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_time_expression_token3); + lookahead == 65279) ADVANCE(1104); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(1101); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_time_expression_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_comment); END_STATE(); case 1106: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1123); + if (lookahead == '$') ADVANCE(1112); + if (lookahead == '%') ADVANCE(1106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1109); + if (lookahead != 0) ADVANCE(1108); END_STATE(); case 1107: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1123); + if (lookahead == '$') ADVANCE(1112); + if (lookahead == '%') ADVANCE(1106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1107); + if (lookahead != 0) ADVANCE(1108); END_STATE(); case 1108: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1123); + if (lookahead == '$') ADVANCE(1112); + if (lookahead == '%') ADVANCE(1106); + if (lookahead != 0) ADVANCE(1108); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1123); + if (lookahead == '$') ADVANCE(1111); + if (lookahead == '%') ADVANCE(1106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1109); + if (lookahead != 0) ADVANCE(1108); END_STATE(); case 1110: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1111: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_comment); + if (lookahead == 'I' || + lookahead == 's') ADVANCE(1108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1107); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1113); END_STATE(); case 1112: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); + ACCEPT_TOKEN(sym_comment); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1107); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1113); END_STATE(); case 1113: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1113); END_STATE(); case 1114: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1115: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1020); END_STATE(); case 1116: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); + ACCEPT_TOKEN(aux_sym_array_constructor_token1); END_STATE(); case 1117: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_array_constructor_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead == '*') ADVANCE(1128); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(69); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead == '-') ADVANCE(1120); + if (lookahead == '/') ADVANCE(1118); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(1119); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead == '-') ADVANCE(1108); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1086); - if (lookahead == '|') ADVANCE(73); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1124); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1086); - if (lookahead == '|') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1122); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(855); + if (lookahead == '%') ADVANCE(1121); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(465); + if (lookahead == '%') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1124); + if (lookahead != 0) ADVANCE(1123); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1150); - if (lookahead == '=') ADVANCE(1127); - if (lookahead == '>') ADVANCE(1129); - if (lookahead == '@') ADVANCE(1148); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1126); + if (lookahead == '*') ADVANCE(1125); + if (lookahead == '/') ADVANCE(1110); + if (lookahead != 0) ADVANCE(1128); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1128); - if (lookahead == '>') ADVANCE(1151); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1126); + if (lookahead == '*') ADVANCE(1125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1129); + if (lookahead != 0) ADVANCE(1128); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1126); + if (lookahead == '*') ADVANCE(1125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if (lookahead != 0) ADVANCE(1128); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1126); + if (lookahead == '*') ADVANCE(1125); + if (lookahead != 0) ADVANCE(1128); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(79); + if (lookahead == '%') ADVANCE(1126); + if (lookahead == '*') ADVANCE(1125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1129); + if (lookahead != 0) ADVANCE(1128); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym_time_expression_token1); END_STATE(); case 1131: - ACCEPT_TOKEN(aux_sym_contains_op_token1); + ACCEPT_TOKEN(aux_sym_time_expression_token1); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1132: - ACCEPT_TOKEN(aux_sym_contains_op_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_time_expression_token2); END_STATE(); case 1133: - ACCEPT_TOKEN(aux_sym_contains_op_token2); + ACCEPT_TOKEN(aux_sym_time_expression_token3); END_STATE(); case 1134: - ACCEPT_TOKEN(aux_sym_contains_op_token2); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_time_expression_token4); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1135: - ACCEPT_TOKEN(aux_sym_contains_op_token3); + ACCEPT_TOKEN(aux_sym__interval_fields_token1); END_STATE(); case 1136: - ACCEPT_TOKEN(aux_sym_contains_op_token3); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym__interval_fields_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1137: - ACCEPT_TOKEN(aux_sym_comparison_null_token1); + ACCEPT_TOKEN(aux_sym__interval_fields_token2); END_STATE(); case 1138: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); + ACCEPT_TOKEN(aux_sym__interval_fields_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1139: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym__interval_fields_token3); END_STATE(); case 1140: - ACCEPT_TOKEN(aux_sym_comparison_null_token3); + ACCEPT_TOKEN(aux_sym__interval_fields_token3); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1141: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); + ACCEPT_TOKEN(aux_sym__interval_fields_token4); END_STATE(); case 1142: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym__interval_fields_token4); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1143: - ACCEPT_TOKEN(aux_sym_comparison_kw_token1); - if (lookahead == ' ') ADVANCE(229); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1528); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym__interval_fields_token5); END_STATE(); case 1144: - ACCEPT_TOKEN(aux_sym_comparison_kw_token1); - if (lookahead == ' ') ADVANCE(229); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(781); + ACCEPT_TOKEN(aux_sym__interval_fields_token5); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1145: - ACCEPT_TOKEN(aux_sym_comparison_kw_token2); + ACCEPT_TOKEN(aux_sym__interval_fields_token6); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym_comparison_kw_token3); + ACCEPT_TOKEN(aux_sym__interval_fields_token6); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 1148: - ACCEPT_TOKEN(anon_sym_LT_AT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(81); END_STATE(); case 1149: - ACCEPT_TOKEN(anon_sym_AT_GT); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 1150: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(601); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(851); END_STATE(); case 1151: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1113); + if (lookahead == '|') ADVANCE(85); END_STATE(); case 1152: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1113); + if (lookahead == '|') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); END_STATE(); case 1153: - ACCEPT_TOKEN(anon_sym_AMP_LT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); END_STATE(); case 1154: - ACCEPT_TOKEN(anon_sym_AMP_GT); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 1155: - ACCEPT_TOKEN(anon_sym_DASH_PIPE_DASH); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(1180); + if (lookahead == '=') ADVANCE(1157); + if (lookahead == '>') ADVANCE(1159); + if (lookahead == '@') ADVANCE(1178); END_STATE(); case 1156: - ACCEPT_TOKEN(sym_cast); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1158); + if (lookahead == '>') ADVANCE(1181); END_STATE(); case 1157: - ACCEPT_TOKEN(aux_sym_and_token1); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1158: - ACCEPT_TOKEN(aux_sym_and_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1159: - ACCEPT_TOKEN(aux_sym_true_token1); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 1160: - ACCEPT_TOKEN(aux_sym_true_token1); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1161: - ACCEPT_TOKEN(aux_sym_false_token1); + ACCEPT_TOKEN(aux_sym_contains_op_token1); END_STATE(); case 1162: - ACCEPT_TOKEN(aux_sym_false_token1); - if (lookahead == '.') ADVANCE(832); + ACCEPT_TOKEN(aux_sym_contains_op_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1163: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(832); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_contains_op_token2); END_STATE(); case 1164: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + ACCEPT_TOKEN(aux_sym_contains_op_token2); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1165: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == '_') ADVANCE(1550); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_contains_op_token3); END_STATE(); case 1166: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == '_') ADVANCE(1551); + ACCEPT_TOKEN(aux_sym_contains_op_token3); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1167: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1553); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1530); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_null_token1); END_STATE(); case 1168: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1553); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_null_token2); END_STATE(); case 1169: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1558); + ACCEPT_TOKEN(aux_sym_comparison_null_token2); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1170: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1188); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_null_token3); END_STATE(); case 1171: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(880); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_null_token4); END_STATE(); case 1172: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1438); + ACCEPT_TOKEN(aux_sym_comparison_null_token4); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1173: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1311); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1521); + ACCEPT_TOKEN(aux_sym_comparison_kw_token1); + if (lookahead == ' ') ADVANCE(240); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1565); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1174: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_kw_token1); + if (lookahead == ' ') ADVANCE(240); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(803); END_STATE(); case 1175: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1356); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1404); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_kw_token2); END_STATE(); case 1176: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1356); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_comparison_kw_token3); END_STATE(); case 1177: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1387); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 1178: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1335); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_LT_AT); END_STATE(); case 1179: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1338); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_AT_GT); END_STATE(); case 1180: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1452); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 1181: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1514); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 1182: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1327); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 1183: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1517); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_AMP_LT); END_STATE(); case 1184: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1467); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_AMP_GT); END_STATE(); case 1185: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1526); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(anon_sym_DASH_PIPE_DASH); END_STATE(); case 1186: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_cast); END_STATE(); case 1187: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1353); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_and_token1); END_STATE(); case 1188: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1355); + ACCEPT_TOKEN(aux_sym_and_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1189: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1070); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_true_token1); END_STATE(); case 1190: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(935); + ACCEPT_TOKEN(aux_sym_true_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1191: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1328); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(aux_sym_false_token1); END_STATE(); case 1192: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1415); + ACCEPT_TOKEN(aux_sym_false_token1); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1193: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(856); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1194: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1351); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); END_STATE(); case 1195: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1512); + if (lookahead == '.') ADVANCE(856); + if (lookahead == '_') ADVANCE(1587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1196: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1244); + if (lookahead == '.') ADVANCE(856); + if (lookahead == '_') ADVANCE(1588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1197: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1505); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1590); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1567); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1198: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1226); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1590); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1199: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1298); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1435); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1595); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1200: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1548); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1219); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1201: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1552); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(905); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1202: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1158); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1596); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1203: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1117); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1473); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1204: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(997); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1343); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1558); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1205: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1546); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1582); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1206: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1232); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1389); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1438); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1207: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1183); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1389); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1208: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1489); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1421); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1209: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1134); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1367); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1210: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1136); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1370); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1211: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1060); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1487); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1212: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1552); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1213: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1358); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1214: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1554); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1215: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1504); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1216: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1563); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1217: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1218: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1385); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1219: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1388); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1220: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1097); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1221: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(960); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1222: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1360); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1223: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1224: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1225: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1226: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1227: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1228: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1229: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1230: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1330); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1470); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1231: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1585); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1232: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1589); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1233: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1188); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1234: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1235: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1236: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1584); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1237: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1263); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1238: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1214); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1239: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1526); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1240: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1241: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1242: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1087); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1243: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1244: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1144); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1245: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1034); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1246: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1026); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1247: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(879); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1248: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(926); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1249: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1250: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1009); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1251: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1190); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1252: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1192); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1213: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1115); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1214: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1007); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1280); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1215: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(999); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1216: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(854); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1217: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1218: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(837); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1219: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(984); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1220: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1160); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1221: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1162); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1222: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1223: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(888); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1224: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1225: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(955); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1226: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(951); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1227: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(953); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1228: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1058); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1229: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(969); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1230: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1454); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1231: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1232: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1436); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1233: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1234: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1508); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1289); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1235: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1508); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1236: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1555); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1237: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1193); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1238: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1369); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1239: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1191); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1240: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1241: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1242: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1283); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1243: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1357); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(868); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1411); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1244: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1205); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1245: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1410); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1246: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1247: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1248: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1352); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1249: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1291); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1250: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1251: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1361); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1252: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1253: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1447); + lookahead == 'e') ADVANCE(1019); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1254: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1440); + lookahead == 'e') ADVANCE(913); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1255: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1493); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1177); + lookahead == 'e') ADVANCE(903); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1256: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1460); + lookahead == 'e') ADVANCE(980); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1257: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1313); + lookahead == 'e') ADVANCE(976); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1258: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1446); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(860); + lookahead == 'e') ADVANCE(978); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1259: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1446); + lookahead == 'e') ADVANCE(1085); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1260: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1469); + lookahead == 'e') ADVANCE(994); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1261: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1449); + lookahead == 'e') ADVANCE(1489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1262: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1442); + lookahead == 'e') ADVANCE(1231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1263: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1502); + lookahead == 'e') ADVANCE(1471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1264: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1399); + lookahead == 'e') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1265: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1459); + lookahead == 'e') ADVANCE(1545); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1266: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1443); + lookahead == 'e') ADVANCE(1545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1267: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1444); + lookahead == 'e') ADVANCE(1592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1268: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1516); + lookahead == 'e') ADVANCE(1224); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1269: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1402); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1270: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1271: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1272: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1273: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1274: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1390); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(892); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1275: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1236); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1276: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1316); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1393); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1277: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1316); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1393); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1278: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1279: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1386); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1280: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1281: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1269); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1282: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1394); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1283: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1225); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1284: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1285: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1286: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1530); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1287: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1403); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1288: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1497); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1289: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1290: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1481); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1291: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1292: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1293: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1294: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1295: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1539); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1296: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1297: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1298: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1551); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1299: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1270: + case 1300: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1301: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1271: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1392); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1272: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1393); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1273: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1277); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(865); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(976); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1274: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1277); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(865); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1275: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1277); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(976); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1276: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1277); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1206); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1277: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1483); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1278: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1001); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1485); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1279: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1001); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1280: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1004); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1281: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1282: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1050); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1283: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1174); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1284: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1417); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1285: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1500); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1286: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1022); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1287: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1288: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(893); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1289: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1295); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1290: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1374); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1291: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1320); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1292: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1293: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(964); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1294: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1230); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1295: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1501); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1296: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1239); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1297: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1239); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1385); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1298: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1251); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1299: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1300: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1329); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1410); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1301: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1329); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1302: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1331); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1303: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1434); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1304: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1562); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1305: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1368); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1309); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(889); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1001); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1306: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1410); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1309); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(889); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1307: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1309); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1001); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1308: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1289); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1309); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1309: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1491); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1310: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1363); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1028); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1311: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1479); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1028); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1312: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1379); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1031); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1313: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1290); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1033); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1314: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1189); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1077); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1315: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1190); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1205); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1316: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1507); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1317: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1318: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1382); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1049); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1319: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1394); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(900); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1320: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1376); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(918); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1321: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1330); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1322: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1381); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1384); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1323: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1420); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1324: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1197); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1325: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1421); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(989); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1326: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1422); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1327: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1391); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1328: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(918); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1329: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1209); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1330: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1209); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1331: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1332: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1139); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1333: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1142); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1334: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(911); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1335: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1105); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1336: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(939); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1337: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1044); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1338: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1339: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1302); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(945); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1143); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1340: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1302); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(946); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1143); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1341: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1475); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1204); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1342: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1343: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1344: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1561); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1345: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1522); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1346: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1531); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1481); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1347: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1531); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1348: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1334); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1349: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1336); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1350: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1351: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1184); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1352: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1353: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1354: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1499); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1355: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1356: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1480); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1357: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1358: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(844); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1359: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1015); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1360: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1361: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1171); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1362: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1373); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1363: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1180); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1364: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1365: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1202); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(839); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1202); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(839); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1367: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1368: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1286); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1369: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1132); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1370: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1011); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1371: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1400); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1372: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1035); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1373: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(906); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1374: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(923); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1375: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1376: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1055); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1377: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(882); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1378: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1203); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1379: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1287); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1380: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1204); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1381: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1382: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1288); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1383: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1312); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1384: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1506); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1385: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1481); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1386: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1303); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1387: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1388: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1497); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1389: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1401); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1390: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1509); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1391: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1503); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1392: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1393: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1513); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1394: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1225); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1395: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1229); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1396: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1543); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1397: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1201); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1398: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1195); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1399: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1400: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1262); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1406); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1401: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1262); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1402: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1525); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1403: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1166); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1404: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1358); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1405: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1527); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1406: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(860); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1407: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(931); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1408: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1409: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1490); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1410: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1431); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1411: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1432); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1412: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1477); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1413: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1414: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1415: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1270); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1329: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1270); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1330: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1331: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1458); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1332: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1361); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1333: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1361); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1334: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1363); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1335: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1336: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1600); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1337: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1338: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1393); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1339: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1393); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1340: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1341: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1342: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1396); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1343: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1344: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1345: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1346: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1347: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1348: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1349: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1406); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1350: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1351: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1352: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1410); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1353: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1362); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1354: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1415); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1418); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1355: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1454); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1356: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1357: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1358: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1359: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1457); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1360: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(943); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1361: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1240); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1362: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1363: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1241); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1364: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1365: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1172); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1366: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(936); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1367: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1368: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(964); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1369: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1071); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1370: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1058); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1371: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1334); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(970); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1372: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1334); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(971); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1373: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1512); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1235); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1262); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1374: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1375: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1365); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1376: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1377: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1378: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1568); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1379: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1568); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1380: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1381: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1368); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1382: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1368); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1383: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1369); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1384: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1215); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1385: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1347); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1386: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1268); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1387: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1388: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1389: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1390: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1391: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1392: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1042); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1393: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1341); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1394: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1395: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1407); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1396: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1211); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1397: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1297); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1398: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1233); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(869); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1131); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1399: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1233); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1400: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1401: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1318); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1402: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1403: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1012); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1404: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1038); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1405: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1406: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1062); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1407: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(931); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1408: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(948); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1409: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1410: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1082); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1411: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(907); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1412: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1413: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1319); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1414: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1235); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1262); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1415: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1570); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1416: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1282); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1417: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1448); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1418: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1498); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1348); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1419: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1347); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1420: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1375); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1421: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1403); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1422: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1377); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1423: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1462); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1424: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1397); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1425: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1530); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1426: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1538); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1427: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1317); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1428: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1395); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1429: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1430: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1431: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1432: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1226); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1433: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1229); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1434: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1294); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1435: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1436: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1437: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1438: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1391); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1439: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1440: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1441: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(956); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1442: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1378); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1443: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1527); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1444: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1430: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(937); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1431: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(995); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1432: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(846); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1433: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1207); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1434: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1541); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1435: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1542); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1436: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1029); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1437: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1113); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1438: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1439: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(980); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1440: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(903); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1441: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(977); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1442: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1443: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(884); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1444: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); case 1445: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1446: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1514); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1447: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1228); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1448: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1474); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1449: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1412); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1450: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1314); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1451: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1452: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1535); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1380); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1453: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1379); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1454: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1409); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1455: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1456: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1431); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1457: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1411); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1458: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1459: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1567); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1460: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1461: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1349); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1462: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1429); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1463: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1464: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(962); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1465: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(861); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1466: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1467: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1238); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1468: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1287); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1469: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1470: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1579); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1471: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1056); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1472: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1142); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1473: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1474: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1005); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1475: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(928); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1476: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1477: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1064); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1478: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(909); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1479: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(911); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1480: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1481: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1591); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1482: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1317); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1483: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1392); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1484: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1485: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1417); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1486: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1597); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1487: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1488: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1572); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1489: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1242); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1490: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1202); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1491: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1342); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1492: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1493: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1446: + case 1494: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1554); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1447: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1284); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1448: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1359); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1449: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1559); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1450: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1451: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1383); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1452: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1453: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1536); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1454: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1211); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1455: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1182); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1456: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1310); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1457: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1370); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1458: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1459: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1314); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1460: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1495); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1461: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1412); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1462: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1304); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1463: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1324); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1464: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1413); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1465: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1466: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1467: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1228); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1468: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1469: + case 1495: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1482); + lookahead == 'r') ADVANCE(1346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1470: + case 1496: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1179); + lookahead == 'r') ADVANCE(1446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1471: + case 1497: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1468); + lookahead == 'r') ADVANCE(1532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1472: + case 1498: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1272); + lookahead == 'r') ADVANCE(1490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1473: + case 1499: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1472); + lookahead == 'r') ADVANCE(1336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1474: + case 1500: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1501: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1502: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1289); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1503: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1258); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1504: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1259); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1505: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1303); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1506: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1519); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1507: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1210); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1508: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1509: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1510: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1511: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(839); + lookahead == 's') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1475: + case 1512: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1214); + lookahead == 's') ADVANCE(1245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1476: + case 1513: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1033); + lookahead == 's') ADVANCE(1060); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1477: + case 1514: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1476); + lookahead == 's') ADVANCE(1513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1478: + case 1515: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1488); + lookahead == 's') ADVANCE(1525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1479: + case 1516: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1215); + lookahead == 's') ADVANCE(1246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1480: + case 1517: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1221); + lookahead == 's') ADVANCE(1556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1481: + case 1518: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1519); + lookahead == 's') ADVANCE(1252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1482: + case 1519: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1222); + lookahead == 's') ADVANCE(1253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1483: + case 1520: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1241); + lookahead == 's') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1484: + case 1521: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1318); + lookahead == 's') ADVANCE(1350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1485: + case 1522: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1256); + lookahead == 's') ADVANCE(1288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1486: + case 1523: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1266); + lookahead == 's') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1487: + case 1524: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1267); + lookahead == 's') ADVANCE(1300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1488: + case 1525: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1325); + lookahead == 's') ADVANCE(1357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1489: + case 1526: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1556); + lookahead == 't') ADVANCE(1593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1490: + case 1527: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1396); + lookahead == 't') ADVANCE(1430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1491: + case 1528: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1024); + lookahead == 't') ADVANCE(1051); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1492: + case 1529: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1026); + lookahead == 't') ADVANCE(1053); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1493: + case 1530: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(987); + lookahead == 't') ADVANCE(1014); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1494: + case 1531: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(958); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1532: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(882); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1533: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1044); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1534: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1535: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || lookahead == 't') ADVANCE(933); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1495: + case 1536: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(858); + lookahead == 't') ADVANCE(886); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1496: + case 1537: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1017); + lookahead == 't') ADVANCE(1066); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1497: + case 1538: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1258); + lookahead == 't') ADVANCE(1069); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1498: + case 1539: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1499: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1500: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1039); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1501: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1042); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1502: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(841); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1503: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || lookahead == 't') ADVANCE(871); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1504: + case 1540: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1165); + lookahead == 't') ADVANCE(895); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1505: + case 1541: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1020); + lookahead == 't') ADVANCE(1195); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1506: + case 1542: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1292); + lookahead == 't') ADVANCE(1047); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1507: + case 1543: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1293); + lookahead == 't') ADVANCE(1324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1508: + case 1544: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1529); + lookahead == 't') ADVANCE(1325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1509: + case 1545: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1406); + lookahead == 't') ADVANCE(1566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1510: + case 1546: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1299); + lookahead == 't') ADVANCE(1440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1511: + case 1547: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1213); + lookahead == 't') ADVANCE(1331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1512: + case 1548: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1323); + lookahead == 't') ADVANCE(1244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1513: + case 1549: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1344); + lookahead == 't') ADVANCE(1355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1514: + case 1550: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1216); + lookahead == 't') ADVANCE(1376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1515: + case 1551: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1217); + lookahead == 't') ADVANCE(1450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1516: + case 1552: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1416); + lookahead == 't') ADVANCE(1247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1517: + case 1553: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1218); + lookahead == 't') ADVANCE(1248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1518: + case 1554: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1219); + lookahead == 't') ADVANCE(1249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1519: + case 1555: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1455); + lookahead == 't') ADVANCE(1250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1520: + case 1556: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1463); + lookahead == 't') ADVANCE(1492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1521: + case 1557: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1534); + lookahead == 't') ADVANCE(1501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1522: + case 1558: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1254); + lookahead == 't') ADVANCE(1571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1523: + case 1559: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1535); + lookahead == 't') ADVANCE(1285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1524: + case 1560: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1319); + lookahead == 't') ADVANCE(1573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1525: + case 1561: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1259); + lookahead == 't') ADVANCE(1351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1526: + case 1562: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1326); + lookahead == 't') ADVANCE(1291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1527: + case 1563: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1359); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1564: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1430); + lookahead == 'u') ADVANCE(1464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1528: + case 1565: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1342); + lookahead == 'u') ADVANCE(1374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1529: + case 1566: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1451); + lookahead == 'u') ADVANCE(1485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1530: + case 1567: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1437); + lookahead == 'u') ADVANCE(1472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1531: + case 1568: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1362); + lookahead == 'u') ADVANCE(1395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1532: + case 1569: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1364); + lookahead == 'u') ADVANCE(1397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1533: + case 1570: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1511); + lookahead == 'u') ADVANCE(1548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1534: + case 1571: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1457); + lookahead == 'u') ADVANCE(1493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1535: + case 1572: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1470); + lookahead == 'u') ADVANCE(1251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1536: + case 1573: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1220); + lookahead == 'u') ADVANCE(1507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1537: + case 1574: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1398); + lookahead == 'u') ADVANCE(1432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1538: + case 1575: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1576: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1577: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1578: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1579: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1580: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1375); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1581: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1582: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1387); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1583: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1383); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1584: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1585: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1555); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1586: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1587: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1523); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1588: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1539: + case 1589: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1471); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1540: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1541: + case 1590: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1542: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1543: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1343); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1544: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1187); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1545: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1354); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1546: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1466); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1547: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1350); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1548: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1549: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1550: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1551: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1487); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1552: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1473); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); - END_STATE(); - case 1553: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1305); + lookahead == 'v') ADVANCE(1337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1554: + case 1591: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1178); + lookahead == 'v') ADVANCE(1209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1555: + case 1592: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1260); + lookahead == 'v') ADVANCE(1292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1556: + case 1593: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1250); + lookahead == 'w') ADVANCE(1281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1557: + case 1594: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1231); + lookahead == 'x') ADVANCE(1262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1558: + case 1595: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1111); + lookahead == 'y') ADVANCE(1140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1559: + case 1596: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1013); + lookahead == 'y') ADVANCE(1117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1560: + case 1597: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(920); + lookahead == 'y') ADVANCE(1040); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1561: + case 1598: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(891); + lookahead == 'y') ADVANCE(945); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); - case 1562: + case 1599: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(916); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + END_STATE(); + case 1600: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(856); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1185); + lookahead == 'z') ADVANCE(1216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1601); END_STATE(); - case 1563: + case 1601: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(832); + if (lookahead == '.') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1563); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); END_STATE(); default: return false; @@ -15144,1568 +15974,1568 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 833}, - [2] = {.lex_state = 833}, - [3] = {.lex_state = 5}, - [4] = {.lex_state = 5}, - [5] = {.lex_state = 9}, - [6] = {.lex_state = 9}, - [7] = {.lex_state = 9}, - [8] = {.lex_state = 9}, - [9] = {.lex_state = 9}, - [10] = {.lex_state = 9}, - [11] = {.lex_state = 9}, - [12] = {.lex_state = 9}, - [13] = {.lex_state = 9}, - [14] = {.lex_state = 9}, - [15] = {.lex_state = 9}, - [16] = {.lex_state = 9}, - [17] = {.lex_state = 5}, - [18] = {.lex_state = 5}, - [19] = {.lex_state = 5}, - [20] = {.lex_state = 5}, - [21] = {.lex_state = 9}, - [22] = {.lex_state = 9}, - [23] = {.lex_state = 5}, - [24] = {.lex_state = 5}, - [25] = {.lex_state = 5}, - [26] = {.lex_state = 5}, - [27] = {.lex_state = 5}, - [28] = {.lex_state = 5}, + [1] = {.lex_state = 857}, + [2] = {.lex_state = 857}, + [3] = {.lex_state = 16}, + [4] = {.lex_state = 16}, + [5] = {.lex_state = 16}, + [6] = {.lex_state = 16}, + [7] = {.lex_state = 16}, + [8] = {.lex_state = 5}, + [9] = {.lex_state = 20}, + [10] = {.lex_state = 16}, + [11] = {.lex_state = 16}, + [12] = {.lex_state = 20}, + [13] = {.lex_state = 16}, + [14] = {.lex_state = 16}, + [15] = {.lex_state = 16}, + [16] = {.lex_state = 16}, + [17] = {.lex_state = 16}, + [18] = {.lex_state = 16}, + [19] = {.lex_state = 20}, + [20] = {.lex_state = 20}, + [21] = {.lex_state = 20}, + [22] = {.lex_state = 20}, + [23] = {.lex_state = 20}, + [24] = {.lex_state = 20}, + [25] = {.lex_state = 20}, + [26] = {.lex_state = 20}, + [27] = {.lex_state = 20}, + [28] = {.lex_state = 20}, [29] = {.lex_state = 5}, - [30] = {.lex_state = 10}, - [31] = {.lex_state = 9}, - [32] = {.lex_state = 9}, - [33] = {.lex_state = 21}, - [34] = {.lex_state = 10}, - [35] = {.lex_state = 21}, - [36] = {.lex_state = 10}, - [37] = {.lex_state = 10}, - [38] = {.lex_state = 5}, - [39] = {.lex_state = 16}, - [40] = {.lex_state = 10}, - [41] = {.lex_state = 5}, - [42] = {.lex_state = 21}, - [43] = {.lex_state = 21}, - [44] = {.lex_state = 10}, - [45] = {.lex_state = 21}, - [46] = {.lex_state = 21}, - [47] = {.lex_state = 10}, - [48] = {.lex_state = 10}, - [49] = {.lex_state = 10}, - [50] = {.lex_state = 10}, + [30] = {.lex_state = 20}, + [31] = {.lex_state = 20}, + [32] = {.lex_state = 5}, + [33] = {.lex_state = 5}, + [34] = {.lex_state = 5}, + [35] = {.lex_state = 11}, + [36] = {.lex_state = 11}, + [37] = {.lex_state = 16}, + [38] = {.lex_state = 16}, + [39] = {.lex_state = 20}, + [40] = {.lex_state = 11}, + [41] = {.lex_state = 21}, + [42] = {.lex_state = 11}, + [43] = {.lex_state = 16}, + [44] = {.lex_state = 11}, + [45] = {.lex_state = 28}, + [46] = {.lex_state = 5}, + [47] = {.lex_state = 20}, + [48] = {.lex_state = 16}, + [49] = {.lex_state = 11}, + [50] = {.lex_state = 16}, [51] = {.lex_state = 21}, - [52] = {.lex_state = 21}, - [53] = {.lex_state = 21}, - [54] = {.lex_state = 10}, - [55] = {.lex_state = 21}, - [56] = {.lex_state = 10}, + [52] = {.lex_state = 20}, + [53] = {.lex_state = 28}, + [54] = {.lex_state = 20}, + [55] = {.lex_state = 28}, + [56] = {.lex_state = 31}, [57] = {.lex_state = 21}, - [58] = {.lex_state = 7}, - [59] = {.lex_state = 7}, - [60] = {.lex_state = 9}, - [61] = {.lex_state = 7}, - [62] = {.lex_state = 9}, - [63] = {.lex_state = 7}, - [64] = {.lex_state = 7}, - [65] = {.lex_state = 7}, - [66] = {.lex_state = 9}, - [67] = {.lex_state = 9}, - [68] = {.lex_state = 7}, - [69] = {.lex_state = 7}, - [70] = {.lex_state = 7}, - [71] = {.lex_state = 10}, - [72] = {.lex_state = 16}, - [73] = {.lex_state = 10}, - [74] = {.lex_state = 7}, - [75] = {.lex_state = 7}, - [76] = {.lex_state = 7}, - [77] = {.lex_state = 23}, - [78] = {.lex_state = 16}, - [79] = {.lex_state = 6}, - [80] = {.lex_state = 23}, - [81] = {.lex_state = 23}, - [82] = {.lex_state = 5}, - [83] = {.lex_state = 5}, - [84] = {.lex_state = 5}, - [85] = {.lex_state = 5}, - [86] = {.lex_state = 30}, - [87] = {.lex_state = 23}, - [88] = {.lex_state = 23}, - [89] = {.lex_state = 6}, - [90] = {.lex_state = 6}, - [91] = {.lex_state = 6}, - [92] = {.lex_state = 17}, - [93] = {.lex_state = 23}, - [94] = {.lex_state = 23}, - [95] = {.lex_state = 23}, - [96] = {.lex_state = 6}, - [97] = {.lex_state = 6}, - [98] = {.lex_state = 6}, - [99] = {.lex_state = 6}, - [100] = {.lex_state = 6}, - [101] = {.lex_state = 7}, - [102] = {.lex_state = 7}, - [103] = {.lex_state = 6}, - [104] = {.lex_state = 9}, - [105] = {.lex_state = 9}, - [106] = {.lex_state = 6}, - [107] = {.lex_state = 9}, - [108] = {.lex_state = 9}, - [109] = {.lex_state = 9}, - [110] = {.lex_state = 9}, - [111] = {.lex_state = 9}, - [112] = {.lex_state = 9}, - [113] = {.lex_state = 6}, - [114] = {.lex_state = 9}, - [115] = {.lex_state = 23}, - [116] = {.lex_state = 23}, - [117] = {.lex_state = 23}, - [118] = {.lex_state = 9}, - [119] = {.lex_state = 9}, - [120] = {.lex_state = 9}, - [121] = {.lex_state = 9}, - [122] = {.lex_state = 9}, - [123] = {.lex_state = 9}, - [124] = {.lex_state = 8}, - [125] = {.lex_state = 30}, - [126] = {.lex_state = 6}, - [127] = {.lex_state = 8}, - [128] = {.lex_state = 5}, - [129] = {.lex_state = 5}, - [130] = {.lex_state = 5}, - [131] = {.lex_state = 5}, + [58] = {.lex_state = 28}, + [59] = {.lex_state = 28}, + [60] = {.lex_state = 21}, + [61] = {.lex_state = 21}, + [62] = {.lex_state = 28}, + [63] = {.lex_state = 28}, + [64] = {.lex_state = 21}, + [65] = {.lex_state = 21}, + [66] = {.lex_state = 21}, + [67] = {.lex_state = 21}, + [68] = {.lex_state = 16}, + [69] = {.lex_state = 28}, + [70] = {.lex_state = 21}, + [71] = {.lex_state = 28}, + [72] = {.lex_state = 28}, + [73] = {.lex_state = 21}, + [74] = {.lex_state = 28}, + [75] = {.lex_state = 21}, + [76] = {.lex_state = 18}, + [77] = {.lex_state = 31}, + [78] = {.lex_state = 18}, + [79] = {.lex_state = 27}, + [80] = {.lex_state = 18}, + [81] = {.lex_state = 18}, + [82] = {.lex_state = 18}, + [83] = {.lex_state = 21}, + [84] = {.lex_state = 18}, + [85] = {.lex_state = 16}, + [86] = {.lex_state = 18}, + [87] = {.lex_state = 20}, + [88] = {.lex_state = 16}, + [89] = {.lex_state = 16}, + [90] = {.lex_state = 18}, + [91] = {.lex_state = 20}, + [92] = {.lex_state = 18}, + [93] = {.lex_state = 18}, + [94] = {.lex_state = 86}, + [95] = {.lex_state = 31}, + [96] = {.lex_state = 18}, + [97] = {.lex_state = 20}, + [98] = {.lex_state = 21}, + [99] = {.lex_state = 18}, + [100] = {.lex_state = 20}, + [101] = {.lex_state = 20}, + [102] = {.lex_state = 16}, + [103] = {.lex_state = 16}, + [104] = {.lex_state = 20}, + [105] = {.lex_state = 20}, + [106] = {.lex_state = 20}, + [107] = {.lex_state = 18}, + [108] = {.lex_state = 18}, + [109] = {.lex_state = 39}, + [110] = {.lex_state = 20}, + [111] = {.lex_state = 16}, + [112] = {.lex_state = 17}, + [113] = {.lex_state = 10}, + [114] = {.lex_state = 20}, + [115] = {.lex_state = 20}, + [116] = {.lex_state = 17}, + [117] = {.lex_state = 17}, + [118] = {.lex_state = 17}, + [119] = {.lex_state = 16}, + [120] = {.lex_state = 17}, + [121] = {.lex_state = 17}, + [122] = {.lex_state = 17}, + [123] = {.lex_state = 17}, + [124] = {.lex_state = 17}, + [125] = {.lex_state = 17}, + [126] = {.lex_state = 16}, + [127] = {.lex_state = 20}, + [128] = {.lex_state = 20}, + [129] = {.lex_state = 16}, + [130] = {.lex_state = 20}, + [131] = {.lex_state = 27}, [132] = {.lex_state = 17}, - [133] = {.lex_state = 8}, - [134] = {.lex_state = 30}, - [135] = {.lex_state = 5}, - [136] = {.lex_state = 8}, - [137] = {.lex_state = 8}, - [138] = {.lex_state = 5}, - [139] = {.lex_state = 5}, - [140] = {.lex_state = 5}, - [141] = {.lex_state = 30}, - [142] = {.lex_state = 30}, - [143] = {.lex_state = 5}, - [144] = {.lex_state = 30}, - [145] = {.lex_state = 5}, - [146] = {.lex_state = 30}, - [147] = {.lex_state = 30}, - [148] = {.lex_state = 30}, - [149] = {.lex_state = 5}, - [150] = {.lex_state = 5}, - [151] = {.lex_state = 8}, - [152] = {.lex_state = 8}, - [153] = {.lex_state = 5}, - [154] = {.lex_state = 8}, - [155] = {.lex_state = 5}, - [156] = {.lex_state = 6}, - [157] = {.lex_state = 30}, - [158] = {.lex_state = 5}, - [159] = {.lex_state = 17}, - [160] = {.lex_state = 28}, - [161] = {.lex_state = 8}, - [162] = {.lex_state = 8}, - [163] = {.lex_state = 8}, - [164] = {.lex_state = 5}, - [165] = {.lex_state = 10}, - [166] = {.lex_state = 30}, - [167] = {.lex_state = 8}, - [168] = {.lex_state = 8}, - [169] = {.lex_state = 28}, - [170] = {.lex_state = 28}, - [171] = {.lex_state = 8}, - [172] = {.lex_state = 11}, - [173] = {.lex_state = 10}, - [174] = {.lex_state = 74}, - [175] = {.lex_state = 8}, - [176] = {.lex_state = 11}, - [177] = {.lex_state = 8}, - [178] = {.lex_state = 7}, - [179] = {.lex_state = 74}, + [133] = {.lex_state = 16}, + [134] = {.lex_state = 27}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 20}, + [137] = {.lex_state = 27}, + [138] = {.lex_state = 27}, + [139] = {.lex_state = 27}, + [140] = {.lex_state = 27}, + [141] = {.lex_state = 27}, + [142] = {.lex_state = 20}, + [143] = {.lex_state = 20}, + [144] = {.lex_state = 16}, + [145] = {.lex_state = 86}, + [146] = {.lex_state = 16}, + [147] = {.lex_state = 16}, + [148] = {.lex_state = 86}, + [149] = {.lex_state = 16}, + [150] = {.lex_state = 16}, + [151] = {.lex_state = 20}, + [152] = {.lex_state = 27}, + [153] = {.lex_state = 27}, + [154] = {.lex_state = 27}, + [155] = {.lex_state = 20}, + [156] = {.lex_state = 20}, + [157] = {.lex_state = 20}, + [158] = {.lex_state = 20}, + [159] = {.lex_state = 16}, + [160] = {.lex_state = 20}, + [161] = {.lex_state = 20}, + [162] = {.lex_state = 16}, + [163] = {.lex_state = 16}, + [164] = {.lex_state = 32}, + [165] = {.lex_state = 16}, + [166] = {.lex_state = 16}, + [167] = {.lex_state = 16}, + [168] = {.lex_state = 16}, + [169] = {.lex_state = 17}, + [170] = {.lex_state = 39}, + [171] = {.lex_state = 19}, + [172] = {.lex_state = 17}, + [173] = {.lex_state = 17}, + [174] = {.lex_state = 39}, + [175] = {.lex_state = 39}, + [176] = {.lex_state = 39}, + [177] = {.lex_state = 39}, + [178] = {.lex_state = 32}, + [179] = {.lex_state = 6}, [180] = {.lex_state = 7}, - [181] = {.lex_state = 74}, - [182] = {.lex_state = 10}, - [183] = {.lex_state = 8}, - [184] = {.lex_state = 10}, - [185] = {.lex_state = 10}, - [186] = {.lex_state = 10}, - [187] = {.lex_state = 6}, - [188] = {.lex_state = 6}, - [189] = {.lex_state = 20}, - [190] = {.lex_state = 12}, - [191] = {.lex_state = 12}, - [192] = {.lex_state = 20}, - [193] = {.lex_state = 20}, - [194] = {.lex_state = 20}, - [195] = {.lex_state = 10}, - [196] = {.lex_state = 21}, - [197] = {.lex_state = 10}, - [198] = {.lex_state = 32}, - [199] = {.lex_state = 21}, - [200] = {.lex_state = 21}, - [201] = {.lex_state = 21}, + [181] = {.lex_state = 39}, + [182] = {.lex_state = 39}, + [183] = {.lex_state = 39}, + [184] = {.lex_state = 40}, + [185] = {.lex_state = 16}, + [186] = {.lex_state = 39}, + [187] = {.lex_state = 39}, + [188] = {.lex_state = 19}, + [189] = {.lex_state = 10}, + [190] = {.lex_state = 19}, + [191] = {.lex_state = 19}, + [192] = {.lex_state = 19}, + [193] = {.lex_state = 32}, + [194] = {.lex_state = 19}, + [195] = {.lex_state = 19}, + [196] = {.lex_state = 19}, + [197] = {.lex_state = 19}, + [198] = {.lex_state = 13}, + [199] = {.lex_state = 19}, + [200] = {.lex_state = 19}, + [201] = {.lex_state = 19}, [202] = {.lex_state = 21}, - [203] = {.lex_state = 21}, - [204] = {.lex_state = 21}, - [205] = {.lex_state = 21}, - [206] = {.lex_state = 15}, - [207] = {.lex_state = 21}, - [208] = {.lex_state = 21}, - [209] = {.lex_state = 10}, - [210] = {.lex_state = 21}, - [211] = {.lex_state = 21}, - [212] = {.lex_state = 21}, - [213] = {.lex_state = 21}, - [214] = {.lex_state = 10}, - [215] = {.lex_state = 21}, - [216] = {.lex_state = 10}, - [217] = {.lex_state = 8}, - [218] = {.lex_state = 10}, - [219] = {.lex_state = 32}, - [220] = {.lex_state = 8}, - [221] = {.lex_state = 15}, + [203] = {.lex_state = 19}, + [204] = {.lex_state = 10}, + [205] = {.lex_state = 10}, + [206] = {.lex_state = 7}, + [207] = {.lex_state = 22}, + [208] = {.lex_state = 13}, + [209] = {.lex_state = 40}, + [210] = {.lex_state = 10}, + [211] = {.lex_state = 40}, + [212] = {.lex_state = 22}, + [213] = {.lex_state = 19}, + [214] = {.lex_state = 21}, + [215] = {.lex_state = 7}, + [216] = {.lex_state = 19}, + [217] = {.lex_state = 7}, + [218] = {.lex_state = 19}, + [219] = {.lex_state = 6}, + [220] = {.lex_state = 7}, + [221] = {.lex_state = 12}, [222] = {.lex_state = 10}, - [223] = {.lex_state = 10}, - [224] = {.lex_state = 10}, - [225] = {.lex_state = 21}, - [226] = {.lex_state = 21}, - [227] = {.lex_state = 10}, - [228] = {.lex_state = 10}, - [229] = {.lex_state = 10}, - [230] = {.lex_state = 10}, - [231] = {.lex_state = 10}, - [232] = {.lex_state = 10}, - [233] = {.lex_state = 10}, - [234] = {.lex_state = 7}, - [235] = {.lex_state = 7}, - [236] = {.lex_state = 7}, - [237] = {.lex_state = 21}, - [238] = {.lex_state = 7}, - [239] = {.lex_state = 75}, - [240] = {.lex_state = 75}, - [241] = {.lex_state = 75}, - [242] = {.lex_state = 75}, - [243] = {.lex_state = 75}, - [244] = {.lex_state = 7}, - [245] = {.lex_state = 7}, - [246] = {.lex_state = 7}, - [247] = {.lex_state = 75}, - [248] = {.lex_state = 75}, - [249] = {.lex_state = 25}, - [250] = {.lex_state = 7}, - [251] = {.lex_state = 7}, - [252] = {.lex_state = 7}, - [253] = {.lex_state = 7}, - [254] = {.lex_state = 75}, - [255] = {.lex_state = 75}, - [256] = {.lex_state = 75}, - [257] = {.lex_state = 75}, - [258] = {.lex_state = 7}, - [259] = {.lex_state = 75}, - [260] = {.lex_state = 7}, - [261] = {.lex_state = 75}, - [262] = {.lex_state = 75}, - [263] = {.lex_state = 7}, - [264] = {.lex_state = 75}, - [265] = {.lex_state = 7}, - [266] = {.lex_state = 7}, - [267] = {.lex_state = 75}, - [268] = {.lex_state = 7}, - [269] = {.lex_state = 75}, - [270] = {.lex_state = 7}, - [271] = {.lex_state = 75}, - [272] = {.lex_state = 75}, - [273] = {.lex_state = 7}, - [274] = {.lex_state = 22}, - [275] = {.lex_state = 22}, - [276] = {.lex_state = 22}, - [277] = {.lex_state = 22}, - [278] = {.lex_state = 6}, - [279] = {.lex_state = 10}, - [280] = {.lex_state = 6}, - [281] = {.lex_state = 6}, - [282] = {.lex_state = 6}, - [283] = {.lex_state = 6}, - [284] = {.lex_state = 25}, - [285] = {.lex_state = 25}, - [286] = {.lex_state = 25}, - [287] = {.lex_state = 25}, - [288] = {.lex_state = 25}, - [289] = {.lex_state = 18}, - [290] = {.lex_state = 23}, - [291] = {.lex_state = 25}, - [292] = {.lex_state = 25}, - [293] = {.lex_state = 25}, - [294] = {.lex_state = 25}, - [295] = {.lex_state = 25}, - [296] = {.lex_state = 6}, - [297] = {.lex_state = 29}, - [298] = {.lex_state = 29}, - [299] = {.lex_state = 29}, - [300] = {.lex_state = 29}, - [301] = {.lex_state = 8}, - [302] = {.lex_state = 23}, - [303] = {.lex_state = 8}, - [304] = {.lex_state = 8}, - [305] = {.lex_state = 23}, - [306] = {.lex_state = 8}, - [307] = {.lex_state = 6}, - [308] = {.lex_state = 6}, - [309] = {.lex_state = 23}, - [310] = {.lex_state = 6}, - [311] = {.lex_state = 10}, - [312] = {.lex_state = 6}, - [313] = {.lex_state = 6}, - [314] = {.lex_state = 23}, - [315] = {.lex_state = 6}, - [316] = {.lex_state = 23}, - [317] = {.lex_state = 6}, - [318] = {.lex_state = 6}, - [319] = {.lex_state = 6}, - [320] = {.lex_state = 23}, - [321] = {.lex_state = 6}, - [322] = {.lex_state = 76}, - [323] = {.lex_state = 27}, - [324] = {.lex_state = 10}, - [325] = {.lex_state = 33}, - [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, - [328] = {.lex_state = 6}, - [329] = {.lex_state = 23}, - [330] = {.lex_state = 23}, - [331] = {.lex_state = 23}, - [332] = {.lex_state = 23}, - [333] = {.lex_state = 23}, - [334] = {.lex_state = 23}, - [335] = {.lex_state = 76}, - [336] = {.lex_state = 23}, - [337] = {.lex_state = 76}, - [338] = {.lex_state = 23}, - [339] = {.lex_state = 33}, - [340] = {.lex_state = 23}, - [341] = {.lex_state = 76}, - [342] = {.lex_state = 5}, - [343] = {.lex_state = 23}, - [344] = {.lex_state = 23}, - [345] = {.lex_state = 8}, - [346] = {.lex_state = 8}, - [347] = {.lex_state = 18}, - [348] = {.lex_state = 30}, - [349] = {.lex_state = 8}, - [350] = {.lex_state = 8}, - [351] = {.lex_state = 40}, - [352] = {.lex_state = 8}, - [353] = {.lex_state = 8}, - [354] = {.lex_state = 30}, - [355] = {.lex_state = 19}, - [356] = {.lex_state = 30}, - [357] = {.lex_state = 27}, - [358] = {.lex_state = 27}, - [359] = {.lex_state = 30}, - [360] = {.lex_state = 30}, - [361] = {.lex_state = 8}, - [362] = {.lex_state = 8}, - [363] = {.lex_state = 8}, - [364] = {.lex_state = 30}, - [365] = {.lex_state = 30}, - [366] = {.lex_state = 8}, - [367] = {.lex_state = 27}, - [368] = {.lex_state = 27}, - [369] = {.lex_state = 30}, - [370] = {.lex_state = 27}, - [371] = {.lex_state = 30}, - [372] = {.lex_state = 27}, - [373] = {.lex_state = 27}, - [374] = {.lex_state = 27}, - [375] = {.lex_state = 27}, - [376] = {.lex_state = 8}, - [377] = {.lex_state = 30}, - [378] = {.lex_state = 8}, - [379] = {.lex_state = 30}, - [380] = {.lex_state = 8}, - [381] = {.lex_state = 27}, - [382] = {.lex_state = 30}, - [383] = {.lex_state = 30}, - [384] = {.lex_state = 30}, + [223] = {.lex_state = 87}, + [224] = {.lex_state = 6}, + [225] = {.lex_state = 87}, + [226] = {.lex_state = 87}, + [227] = {.lex_state = 6}, + [228] = {.lex_state = 87}, + [229] = {.lex_state = 87}, + [230] = {.lex_state = 87}, + [231] = {.lex_state = 87}, + [232] = {.lex_state = 87}, + [233] = {.lex_state = 87}, + [234] = {.lex_state = 6}, + [235] = {.lex_state = 87}, + [236] = {.lex_state = 14}, + [237] = {.lex_state = 87}, + [238] = {.lex_state = 21}, + [239] = {.lex_state = 13}, + [240] = {.lex_state = 12}, + [241] = {.lex_state = 18}, + [242] = {.lex_state = 13}, + [243] = {.lex_state = 44}, + [244] = {.lex_state = 28}, + [245] = {.lex_state = 87}, + [246] = {.lex_state = 15}, + [247] = {.lex_state = 87}, + [248] = {.lex_state = 87}, + [249] = {.lex_state = 87}, + [250] = {.lex_state = 18}, + [251] = {.lex_state = 13}, + [252] = {.lex_state = 87}, + [253] = {.lex_state = 87}, + [254] = {.lex_state = 21}, + [255] = {.lex_state = 13}, + [256] = {.lex_state = 87}, + [257] = {.lex_state = 44}, + [258] = {.lex_state = 28}, + [259] = {.lex_state = 87}, + [260] = {.lex_state = 35}, + [261] = {.lex_state = 12}, + [262] = {.lex_state = 12}, + [263] = {.lex_state = 18}, + [264] = {.lex_state = 18}, + [265] = {.lex_state = 19}, + [266] = {.lex_state = 27}, + [267] = {.lex_state = 21}, + [268] = {.lex_state = 6}, + [269] = {.lex_state = 88}, + [270] = {.lex_state = 21}, + [271] = {.lex_state = 17}, + [272] = {.lex_state = 12}, + [273] = {.lex_state = 35}, + [274] = {.lex_state = 35}, + [275] = {.lex_state = 15}, + [276] = {.lex_state = 23}, + [277] = {.lex_state = 28}, + [278] = {.lex_state = 35}, + [279] = {.lex_state = 21}, + [280] = {.lex_state = 27}, + [281] = {.lex_state = 88}, + [282] = {.lex_state = 88}, + [283] = {.lex_state = 17}, + [284] = {.lex_state = 14}, + [285] = {.lex_state = 12}, + [286] = {.lex_state = 23}, + [287] = {.lex_state = 21}, + [288] = {.lex_state = 88}, + [289] = {.lex_state = 21}, + [290] = {.lex_state = 21}, + [291] = {.lex_state = 28}, + [292] = {.lex_state = 15}, + [293] = {.lex_state = 21}, + [294] = {.lex_state = 27}, + [295] = {.lex_state = 45}, + [296] = {.lex_state = 21}, + [297] = {.lex_state = 14}, + [298] = {.lex_state = 28}, + [299] = {.lex_state = 21}, + [300] = {.lex_state = 21}, + [301] = {.lex_state = 21}, + [302] = {.lex_state = 28}, + [303] = {.lex_state = 28}, + [304] = {.lex_state = 28}, + [305] = {.lex_state = 28}, + [306] = {.lex_state = 14}, + [307] = {.lex_state = 19}, + [308] = {.lex_state = 28}, + [309] = {.lex_state = 14}, + [310] = {.lex_state = 26}, + [311] = {.lex_state = 21}, + [312] = {.lex_state = 15}, + [313] = {.lex_state = 15}, + [314] = {.lex_state = 28}, + [315] = {.lex_state = 18}, + [316] = {.lex_state = 28}, + [317] = {.lex_state = 17}, + [318] = {.lex_state = 28}, + [319] = {.lex_state = 28}, + [320] = {.lex_state = 28}, + [321] = {.lex_state = 28}, + [322] = {.lex_state = 21}, + [323] = {.lex_state = 21}, + [324] = {.lex_state = 45}, + [325] = {.lex_state = 28}, + [326] = {.lex_state = 26}, + [327] = {.lex_state = 21}, + [328] = {.lex_state = 28}, + [329] = {.lex_state = 28}, + [330] = {.lex_state = 28}, + [331] = {.lex_state = 15}, + [332] = {.lex_state = 21}, + [333] = {.lex_state = 28}, + [334] = {.lex_state = 21}, + [335] = {.lex_state = 21}, + [336] = {.lex_state = 21}, + [337] = {.lex_state = 21}, + [338] = {.lex_state = 21}, + [339] = {.lex_state = 18}, + [340] = {.lex_state = 18}, + [341] = {.lex_state = 21}, + [342] = {.lex_state = 21}, + [343] = {.lex_state = 19}, + [344] = {.lex_state = 14}, + [345] = {.lex_state = 28}, + [346] = {.lex_state = 28}, + [347] = {.lex_state = 28}, + [348] = {.lex_state = 17}, + [349] = {.lex_state = 18}, + [350] = {.lex_state = 21}, + [351] = {.lex_state = 21}, + [352] = {.lex_state = 18}, + [353] = {.lex_state = 39}, + [354] = {.lex_state = 18}, + [355] = {.lex_state = 18}, + [356] = {.lex_state = 18}, + [357] = {.lex_state = 18}, + [358] = {.lex_state = 18}, + [359] = {.lex_state = 18}, + [360] = {.lex_state = 17}, + [361] = {.lex_state = 18}, + [362] = {.lex_state = 19}, + [363] = {.lex_state = 18}, + [364] = {.lex_state = 17}, + [365] = {.lex_state = 36}, + [366] = {.lex_state = 18}, + [367] = {.lex_state = 29}, + [368] = {.lex_state = 36}, + [369] = {.lex_state = 36}, + [370] = {.lex_state = 21}, + [371] = {.lex_state = 36}, + [372] = {.lex_state = 17}, + [373] = {.lex_state = 18}, + [374] = {.lex_state = 18}, + [375] = {.lex_state = 17}, + [376] = {.lex_state = 18}, + [377] = {.lex_state = 27}, + [378] = {.lex_state = 18}, + [379] = {.lex_state = 18}, + [380] = {.lex_state = 18}, + [381] = {.lex_state = 17}, + [382] = {.lex_state = 39}, + [383] = {.lex_state = 18}, + [384] = {.lex_state = 18}, [385] = {.lex_state = 18}, - [386] = {.lex_state = 8}, - [387] = {.lex_state = 30}, - [388] = {.lex_state = 40}, - [389] = {.lex_state = 8}, - [390] = {.lex_state = 30}, - [391] = {.lex_state = 30}, - [392] = {.lex_state = 30}, - [393] = {.lex_state = 5}, - [394] = {.lex_state = 8}, - [395] = {.lex_state = 10}, - [396] = {.lex_state = 5}, - [397] = {.lex_state = 19}, - [398] = {.lex_state = 8}, + [386] = {.lex_state = 51}, + [387] = {.lex_state = 51}, + [388] = {.lex_state = 18}, + [389] = {.lex_state = 19}, + [390] = {.lex_state = 17}, + [391] = {.lex_state = 17}, + [392] = {.lex_state = 27}, + [393] = {.lex_state = 27}, + [394] = {.lex_state = 27}, + [395] = {.lex_state = 27}, + [396] = {.lex_state = 27}, + [397] = {.lex_state = 17}, + [398] = {.lex_state = 27}, [399] = {.lex_state = 19}, - [400] = {.lex_state = 5}, - [401] = {.lex_state = 5}, - [402] = {.lex_state = 5}, - [403] = {.lex_state = 5}, - [404] = {.lex_state = 5}, - [405] = {.lex_state = 5}, - [406] = {.lex_state = 5}, - [407] = {.lex_state = 5}, - [408] = {.lex_state = 5}, - [409] = {.lex_state = 5}, - [410] = {.lex_state = 5}, - [411] = {.lex_state = 5}, - [412] = {.lex_state = 5}, - [413] = {.lex_state = 5}, - [414] = {.lex_state = 5}, - [415] = {.lex_state = 5}, - [416] = {.lex_state = 5}, - [417] = {.lex_state = 5}, - [418] = {.lex_state = 5}, - [419] = {.lex_state = 5}, - [420] = {.lex_state = 5}, - [421] = {.lex_state = 5}, - [422] = {.lex_state = 5}, - [423] = {.lex_state = 5}, - [424] = {.lex_state = 5}, - [425] = {.lex_state = 5}, - [426] = {.lex_state = 5}, - [427] = {.lex_state = 5}, - [428] = {.lex_state = 5}, - [429] = {.lex_state = 5}, - [430] = {.lex_state = 5}, - [431] = {.lex_state = 5}, - [432] = {.lex_state = 5}, - [433] = {.lex_state = 5}, - [434] = {.lex_state = 5}, - [435] = {.lex_state = 5}, - [436] = {.lex_state = 5}, - [437] = {.lex_state = 5}, - [438] = {.lex_state = 13}, - [439] = {.lex_state = 13}, - [440] = {.lex_state = 5}, - [441] = {.lex_state = 5}, - [442] = {.lex_state = 5}, - [443] = {.lex_state = 5}, - [444] = {.lex_state = 5}, - [445] = {.lex_state = 5}, - [446] = {.lex_state = 5}, - [447] = {.lex_state = 5}, - [448] = {.lex_state = 5}, - [449] = {.lex_state = 5}, - [450] = {.lex_state = 14}, - [451] = {.lex_state = 5}, - [452] = {.lex_state = 14}, - [453] = {.lex_state = 5}, - [454] = {.lex_state = 5}, - [455] = {.lex_state = 5}, - [456] = {.lex_state = 5}, - [457] = {.lex_state = 5}, - [458] = {.lex_state = 5}, - [459] = {.lex_state = 5}, - [460] = {.lex_state = 5}, - [461] = {.lex_state = 24}, - [462] = {.lex_state = 24}, - [463] = {.lex_state = 24}, - [464] = {.lex_state = 24}, - [465] = {.lex_state = 25}, - [466] = {.lex_state = 26}, - [467] = {.lex_state = 25}, - [468] = {.lex_state = 25}, - [469] = {.lex_state = 25}, - [470] = {.lex_state = 25}, - [471] = {.lex_state = 25}, - [472] = {.lex_state = 25}, - [473] = {.lex_state = 25}, - [474] = {.lex_state = 25}, - [475] = {.lex_state = 25}, - [476] = {.lex_state = 26}, - [477] = {.lex_state = 25}, - [478] = {.lex_state = 26}, - [479] = {.lex_state = 25}, - [480] = {.lex_state = 25}, - [481] = {.lex_state = 25}, - [482] = {.lex_state = 25}, - [483] = {.lex_state = 25}, - [484] = {.lex_state = 25}, - [485] = {.lex_state = 25}, - [486] = {.lex_state = 26}, - [487] = {.lex_state = 27}, - [488] = {.lex_state = 27}, - [489] = {.lex_state = 27}, - [490] = {.lex_state = 27}, - [491] = {.lex_state = 27}, - [492] = {.lex_state = 27}, - [493] = {.lex_state = 27}, - [494] = {.lex_state = 27}, - [495] = {.lex_state = 27}, - [496] = {.lex_state = 27}, - [497] = {.lex_state = 27}, - [498] = {.lex_state = 27}, - [499] = {.lex_state = 27}, - [500] = {.lex_state = 27}, - [501] = {.lex_state = 27}, - [502] = {.lex_state = 27}, - [503] = {.lex_state = 27}, - [504] = {.lex_state = 27}, - [505] = {.lex_state = 43}, - [506] = {.lex_state = 43}, - [507] = {.lex_state = 43}, - [508] = {.lex_state = 39}, - [509] = {.lex_state = 39}, - [510] = {.lex_state = 36}, - [511] = {.lex_state = 36}, - [512] = {.lex_state = 36}, - [513] = {.lex_state = 36}, - [514] = {.lex_state = 36}, - [515] = {.lex_state = 36}, - [516] = {.lex_state = 36}, - [517] = {.lex_state = 36}, - [518] = {.lex_state = 36}, - [519] = {.lex_state = 36}, - [520] = {.lex_state = 36}, - [521] = {.lex_state = 36}, - [522] = {.lex_state = 36}, - [523] = {.lex_state = 36}, - [524] = {.lex_state = 36}, - [525] = {.lex_state = 36}, - [526] = {.lex_state = 36}, - [527] = {.lex_state = 36}, - [528] = {.lex_state = 36}, - [529] = {.lex_state = 36}, - [530] = {.lex_state = 36}, - [531] = {.lex_state = 833}, - [532] = {.lex_state = 36}, - [533] = {.lex_state = 36}, - [534] = {.lex_state = 833}, - [535] = {.lex_state = 36}, - [536] = {.lex_state = 36}, - [537] = {.lex_state = 36}, - [538] = {.lex_state = 36}, - [539] = {.lex_state = 36}, - [540] = {.lex_state = 36}, - [541] = {.lex_state = 35}, - [542] = {.lex_state = 35}, - [543] = {.lex_state = 35}, - [544] = {.lex_state = 35}, - [545] = {.lex_state = 35}, - [546] = {.lex_state = 35}, - [547] = {.lex_state = 35}, - [548] = {.lex_state = 34}, - [549] = {.lex_state = 41}, - [550] = {.lex_state = 34}, - [551] = {.lex_state = 34}, - [552] = {.lex_state = 34}, - [553] = {.lex_state = 38}, - [554] = {.lex_state = 34}, - [555] = {.lex_state = 34}, - [556] = {.lex_state = 34}, - [557] = {.lex_state = 34}, - [558] = {.lex_state = 34}, - [559] = {.lex_state = 34}, - [560] = {.lex_state = 34}, - [561] = {.lex_state = 34}, - [562] = {.lex_state = 34}, - [563] = {.lex_state = 34}, - [564] = {.lex_state = 34}, - [565] = {.lex_state = 34}, - [566] = {.lex_state = 34}, - [567] = {.lex_state = 34}, - [568] = {.lex_state = 34}, - [569] = {.lex_state = 34}, - [570] = {.lex_state = 34}, - [571] = {.lex_state = 34}, - [572] = {.lex_state = 34}, - [573] = {.lex_state = 34}, - [574] = {.lex_state = 34}, - [575] = {.lex_state = 34}, - [576] = {.lex_state = 34}, - [577] = {.lex_state = 34}, - [578] = {.lex_state = 34}, - [579] = {.lex_state = 34}, - [580] = {.lex_state = 34}, - [581] = {.lex_state = 34}, - [582] = {.lex_state = 34}, - [583] = {.lex_state = 34}, - [584] = {.lex_state = 34}, - [585] = {.lex_state = 34}, - [586] = {.lex_state = 34}, - [587] = {.lex_state = 34}, - [588] = {.lex_state = 34}, - [589] = {.lex_state = 34}, - [590] = {.lex_state = 34}, - [591] = {.lex_state = 34}, - [592] = {.lex_state = 34}, - [593] = {.lex_state = 34}, - [594] = {.lex_state = 34}, - [595] = {.lex_state = 34}, - [596] = {.lex_state = 34}, - [597] = {.lex_state = 34}, - [598] = {.lex_state = 34}, - [599] = {.lex_state = 34}, - [600] = {.lex_state = 34}, - [601] = {.lex_state = 34}, - [602] = {.lex_state = 34}, - [603] = {.lex_state = 34}, - [604] = {.lex_state = 34}, - [605] = {.lex_state = 34}, - [606] = {.lex_state = 34}, - [607] = {.lex_state = 34}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, - [610] = {.lex_state = 34}, - [611] = {.lex_state = 34}, - [612] = {.lex_state = 34}, - [613] = {.lex_state = 34}, - [614] = {.lex_state = 34}, - [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, - [617] = {.lex_state = 34}, - [618] = {.lex_state = 34}, - [619] = {.lex_state = 34}, - [620] = {.lex_state = 34}, - [621] = {.lex_state = 34}, - [622] = {.lex_state = 34}, - [623] = {.lex_state = 34}, - [624] = {.lex_state = 34}, - [625] = {.lex_state = 34}, - [626] = {.lex_state = 34}, - [627] = {.lex_state = 34}, - [628] = {.lex_state = 34}, - [629] = {.lex_state = 34}, - [630] = {.lex_state = 34}, - [631] = {.lex_state = 34}, - [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, - [634] = {.lex_state = 34}, - [635] = {.lex_state = 34}, - [636] = {.lex_state = 34}, - [637] = {.lex_state = 34}, - [638] = {.lex_state = 34}, - [639] = {.lex_state = 34}, - [640] = {.lex_state = 34}, - [641] = {.lex_state = 34}, - [642] = {.lex_state = 34}, - [643] = {.lex_state = 34}, - [644] = {.lex_state = 34}, - [645] = {.lex_state = 34}, - [646] = {.lex_state = 34}, - [647] = {.lex_state = 34}, - [648] = {.lex_state = 34}, - [649] = {.lex_state = 34}, - [650] = {.lex_state = 34}, - [651] = {.lex_state = 34}, - [652] = {.lex_state = 34}, - [653] = {.lex_state = 34}, - [654] = {.lex_state = 34}, - [655] = {.lex_state = 34}, - [656] = {.lex_state = 34}, - [657] = {.lex_state = 34}, - [658] = {.lex_state = 34}, - [659] = {.lex_state = 34}, - [660] = {.lex_state = 34}, - [661] = {.lex_state = 34}, - [662] = {.lex_state = 34}, - [663] = {.lex_state = 34}, - [664] = {.lex_state = 34}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 34}, - [668] = {.lex_state = 34}, - [669] = {.lex_state = 34}, - [670] = {.lex_state = 34}, - [671] = {.lex_state = 34}, - [672] = {.lex_state = 34}, - [673] = {.lex_state = 34}, - [674] = {.lex_state = 34}, - [675] = {.lex_state = 34}, - [676] = {.lex_state = 34}, - [677] = {.lex_state = 34}, - [678] = {.lex_state = 34}, - [679] = {.lex_state = 34}, - [680] = {.lex_state = 34}, - [681] = {.lex_state = 34}, - [682] = {.lex_state = 34}, - [683] = {.lex_state = 34}, - [684] = {.lex_state = 34}, - [685] = {.lex_state = 34}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 34}, - [688] = {.lex_state = 34}, - [689] = {.lex_state = 34}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 34}, - [692] = {.lex_state = 34}, - [693] = {.lex_state = 34}, - [694] = {.lex_state = 34}, - [695] = {.lex_state = 34}, - [696] = {.lex_state = 34}, - [697] = {.lex_state = 34}, - [698] = {.lex_state = 34}, - [699] = {.lex_state = 34}, - [700] = {.lex_state = 34}, - [701] = {.lex_state = 34}, - [702] = {.lex_state = 34}, - [703] = {.lex_state = 34}, - [704] = {.lex_state = 34}, - [705] = {.lex_state = 34}, - [706] = {.lex_state = 34}, - [707] = {.lex_state = 34}, - [708] = {.lex_state = 34}, - [709] = {.lex_state = 34}, - [710] = {.lex_state = 34}, - [711] = {.lex_state = 34}, - [712] = {.lex_state = 34}, - [713] = {.lex_state = 34}, - [714] = {.lex_state = 833}, - [715] = {.lex_state = 833}, - [716] = {.lex_state = 833}, - [717] = {.lex_state = 833}, - [718] = {.lex_state = 833}, - [719] = {.lex_state = 47}, - [720] = {.lex_state = 833}, - [721] = {.lex_state = 74}, - [722] = {.lex_state = 833}, - [723] = {.lex_state = 833}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 833}, - [726] = {.lex_state = 833}, - [727] = {.lex_state = 47}, - [728] = {.lex_state = 833}, - [729] = {.lex_state = 833}, - [730] = {.lex_state = 833}, - [731] = {.lex_state = 47}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 833}, - [736] = {.lex_state = 833}, - [737] = {.lex_state = 833}, - [738] = {.lex_state = 0}, - [739] = {.lex_state = 0}, - [740] = {.lex_state = 833}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 47}, - [743] = {.lex_state = 47}, - [744] = {.lex_state = 54}, - [745] = {.lex_state = 48}, - [746] = {.lex_state = 833}, - [747] = {.lex_state = 833}, - [748] = {.lex_state = 833}, - [749] = {.lex_state = 47}, - [750] = {.lex_state = 833}, - [751] = {.lex_state = 833}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 833}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 75}, - [756] = {.lex_state = 833}, - [757] = {.lex_state = 833}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 0}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 833}, - [763] = {.lex_state = 51}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 833}, - [766] = {.lex_state = 833}, - [767] = {.lex_state = 48}, - [768] = {.lex_state = 48}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 0}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 55}, - [773] = {.lex_state = 48}, - [774] = {.lex_state = 52}, - [775] = {.lex_state = 52}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 52}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 52}, - [780] = {.lex_state = 48}, - [781] = {.lex_state = 51}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 52}, - [784] = {.lex_state = 48}, - [785] = {.lex_state = 51}, - [786] = {.lex_state = 52}, - [787] = {.lex_state = 52}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 0}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 70}, - [797] = {.lex_state = 0}, + [400] = {.lex_state = 27}, + [401] = {.lex_state = 27}, + [402] = {.lex_state = 19}, + [403] = {.lex_state = 19}, + [404] = {.lex_state = 17}, + [405] = {.lex_state = 19}, + [406] = {.lex_state = 17}, + [407] = {.lex_state = 27}, + [408] = {.lex_state = 17}, + [409] = {.lex_state = 27}, + [410] = {.lex_state = 17}, + [411] = {.lex_state = 27}, + [412] = {.lex_state = 17}, + [413] = {.lex_state = 17}, + [414] = {.lex_state = 17}, + [415] = {.lex_state = 27}, + [416] = {.lex_state = 33}, + [417] = {.lex_state = 27}, + [418] = {.lex_state = 29}, + [419] = {.lex_state = 27}, + [420] = {.lex_state = 19}, + [421] = {.lex_state = 17}, + [422] = {.lex_state = 27}, + [423] = {.lex_state = 29}, + [424] = {.lex_state = 17}, + [425] = {.lex_state = 17}, + [426] = {.lex_state = 30}, + [427] = {.lex_state = 17}, + [428] = {.lex_state = 17}, + [429] = {.lex_state = 16}, + [430] = {.lex_state = 29}, + [431] = {.lex_state = 17}, + [432] = {.lex_state = 17}, + [433] = {.lex_state = 29}, + [434] = {.lex_state = 29}, + [435] = {.lex_state = 17}, + [436] = {.lex_state = 27}, + [437] = {.lex_state = 29}, + [438] = {.lex_state = 29}, + [439] = {.lex_state = 17}, + [440] = {.lex_state = 27}, + [441] = {.lex_state = 29}, + [442] = {.lex_state = 29}, + [443] = {.lex_state = 21}, + [444] = {.lex_state = 27}, + [445] = {.lex_state = 41}, + [446] = {.lex_state = 27}, + [447] = {.lex_state = 27}, + [448] = {.lex_state = 41}, + [449] = {.lex_state = 21}, + [450] = {.lex_state = 29}, + [451] = {.lex_state = 39}, + [452] = {.lex_state = 41}, + [453] = {.lex_state = 41}, + [454] = {.lex_state = 19}, + [455] = {.lex_state = 39}, + [456] = {.lex_state = 19}, + [457] = {.lex_state = 39}, + [458] = {.lex_state = 16}, + [459] = {.lex_state = 39}, + [460] = {.lex_state = 39}, + [461] = {.lex_state = 30}, + [462] = {.lex_state = 39}, + [463] = {.lex_state = 39}, + [464] = {.lex_state = 30}, + [465] = {.lex_state = 39}, + [466] = {.lex_state = 39}, + [467] = {.lex_state = 39}, + [468] = {.lex_state = 19}, + [469] = {.lex_state = 33}, + [470] = {.lex_state = 39}, + [471] = {.lex_state = 19}, + [472] = {.lex_state = 30}, + [473] = {.lex_state = 30}, + [474] = {.lex_state = 19}, + [475] = {.lex_state = 19}, + [476] = {.lex_state = 30}, + [477] = {.lex_state = 39}, + [478] = {.lex_state = 39}, + [479] = {.lex_state = 19}, + [480] = {.lex_state = 19}, + [481] = {.lex_state = 39}, + [482] = {.lex_state = 30}, + [483] = {.lex_state = 30}, + [484] = {.lex_state = 19}, + [485] = {.lex_state = 39}, + [486] = {.lex_state = 34}, + [487] = {.lex_state = 39}, + [488] = {.lex_state = 19}, + [489] = {.lex_state = 39}, + [490] = {.lex_state = 39}, + [491] = {.lex_state = 39}, + [492] = {.lex_state = 39}, + [493] = {.lex_state = 39}, + [494] = {.lex_state = 19}, + [495] = {.lex_state = 39}, + [496] = {.lex_state = 30}, + [497] = {.lex_state = 19}, + [498] = {.lex_state = 33}, + [499] = {.lex_state = 19}, + [500] = {.lex_state = 30}, + [501] = {.lex_state = 19}, + [502] = {.lex_state = 19}, + [503] = {.lex_state = 19}, + [504] = {.lex_state = 19}, + [505] = {.lex_state = 30}, + [506] = {.lex_state = 19}, + [507] = {.lex_state = 19}, + [508] = {.lex_state = 34}, + [509] = {.lex_state = 34}, + [510] = {.lex_state = 19}, + [511] = {.lex_state = 19}, + [512] = {.lex_state = 16}, + [513] = {.lex_state = 8}, + [514] = {.lex_state = 21}, + [515] = {.lex_state = 16}, + [516] = {.lex_state = 16}, + [517] = {.lex_state = 16}, + [518] = {.lex_state = 16}, + [519] = {.lex_state = 16}, + [520] = {.lex_state = 16}, + [521] = {.lex_state = 16}, + [522] = {.lex_state = 9}, + [523] = {.lex_state = 16}, + [524] = {.lex_state = 16}, + [525] = {.lex_state = 16}, + [526] = {.lex_state = 16}, + [527] = {.lex_state = 16}, + [528] = {.lex_state = 16}, + [529] = {.lex_state = 16}, + [530] = {.lex_state = 16}, + [531] = {.lex_state = 16}, + [532] = {.lex_state = 8}, + [533] = {.lex_state = 16}, + [534] = {.lex_state = 16}, + [535] = {.lex_state = 16}, + [536] = {.lex_state = 16}, + [537] = {.lex_state = 16}, + [538] = {.lex_state = 16}, + [539] = {.lex_state = 16}, + [540] = {.lex_state = 16}, + [541] = {.lex_state = 16}, + [542] = {.lex_state = 16}, + [543] = {.lex_state = 16}, + [544] = {.lex_state = 16}, + [545] = {.lex_state = 16}, + [546] = {.lex_state = 16}, + [547] = {.lex_state = 16}, + [548] = {.lex_state = 16}, + [549] = {.lex_state = 16}, + [550] = {.lex_state = 16}, + [551] = {.lex_state = 16}, + [552] = {.lex_state = 16}, + [553] = {.lex_state = 16}, + [554] = {.lex_state = 16}, + [555] = {.lex_state = 16}, + [556] = {.lex_state = 16}, + [557] = {.lex_state = 16}, + [558] = {.lex_state = 16}, + [559] = {.lex_state = 16}, + [560] = {.lex_state = 16}, + [561] = {.lex_state = 24}, + [562] = {.lex_state = 8}, + [563] = {.lex_state = 8}, + [564] = {.lex_state = 8}, + [565] = {.lex_state = 16}, + [566] = {.lex_state = 8}, + [567] = {.lex_state = 24}, + [568] = {.lex_state = 16}, + [569] = {.lex_state = 16}, + [570] = {.lex_state = 16}, + [571] = {.lex_state = 16}, + [572] = {.lex_state = 9}, + [573] = {.lex_state = 16}, + [574] = {.lex_state = 9}, + [575] = {.lex_state = 16}, + [576] = {.lex_state = 16}, + [577] = {.lex_state = 9}, + [578] = {.lex_state = 16}, + [579] = {.lex_state = 16}, + [580] = {.lex_state = 25}, + [581] = {.lex_state = 16}, + [582] = {.lex_state = 16}, + [583] = {.lex_state = 16}, + [584] = {.lex_state = 9}, + [585] = {.lex_state = 16}, + [586] = {.lex_state = 16}, + [587] = {.lex_state = 16}, + [588] = {.lex_state = 16}, + [589] = {.lex_state = 25}, + [590] = {.lex_state = 16}, + [591] = {.lex_state = 9}, + [592] = {.lex_state = 16}, + [593] = {.lex_state = 16}, + [594] = {.lex_state = 29}, + [595] = {.lex_state = 16}, + [596] = {.lex_state = 16}, + [597] = {.lex_state = 16}, + [598] = {.lex_state = 16}, + [599] = {.lex_state = 29}, + [600] = {.lex_state = 37}, + [601] = {.lex_state = 30}, + [602] = {.lex_state = 37}, + [603] = {.lex_state = 29}, + [604] = {.lex_state = 37}, + [605] = {.lex_state = 37}, + [606] = {.lex_state = 30}, + [607] = {.lex_state = 29}, + [608] = {.lex_state = 38}, + [609] = {.lex_state = 29}, + [610] = {.lex_state = 29}, + [611] = {.lex_state = 29}, + [612] = {.lex_state = 29}, + [613] = {.lex_state = 29}, + [614] = {.lex_state = 29}, + [615] = {.lex_state = 29}, + [616] = {.lex_state = 30}, + [617] = {.lex_state = 29}, + [618] = {.lex_state = 38}, + [619] = {.lex_state = 29}, + [620] = {.lex_state = 29}, + [621] = {.lex_state = 29}, + [622] = {.lex_state = 29}, + [623] = {.lex_state = 38}, + [624] = {.lex_state = 29}, + [625] = {.lex_state = 29}, + [626] = {.lex_state = 29}, + [627] = {.lex_state = 29}, + [628] = {.lex_state = 29}, + [629] = {.lex_state = 29}, + [630] = {.lex_state = 29}, + [631] = {.lex_state = 29}, + [632] = {.lex_state = 38}, + [633] = {.lex_state = 30}, + [634] = {.lex_state = 30}, + [635] = {.lex_state = 30}, + [636] = {.lex_state = 30}, + [637] = {.lex_state = 30}, + [638] = {.lex_state = 30}, + [639] = {.lex_state = 30}, + [640] = {.lex_state = 30}, + [641] = {.lex_state = 30}, + [642] = {.lex_state = 30}, + [643] = {.lex_state = 30}, + [644] = {.lex_state = 30}, + [645] = {.lex_state = 30}, + [646] = {.lex_state = 30}, + [647] = {.lex_state = 30}, + [648] = {.lex_state = 30}, + [649] = {.lex_state = 30}, + [650] = {.lex_state = 30}, + [651] = {.lex_state = 30}, + [652] = {.lex_state = 30}, + [653] = {.lex_state = 30}, + [654] = {.lex_state = 50}, + [655] = {.lex_state = 54}, + [656] = {.lex_state = 54}, + [657] = {.lex_state = 54}, + [658] = {.lex_state = 50}, + [659] = {.lex_state = 47}, + [660] = {.lex_state = 47}, + [661] = {.lex_state = 47}, + [662] = {.lex_state = 47}, + [663] = {.lex_state = 47}, + [664] = {.lex_state = 47}, + [665] = {.lex_state = 47}, + [666] = {.lex_state = 47}, + [667] = {.lex_state = 47}, + [668] = {.lex_state = 47}, + [669] = {.lex_state = 47}, + [670] = {.lex_state = 47}, + [671] = {.lex_state = 47}, + [672] = {.lex_state = 47}, + [673] = {.lex_state = 47}, + [674] = {.lex_state = 47}, + [675] = {.lex_state = 47}, + [676] = {.lex_state = 47}, + [677] = {.lex_state = 47}, + [678] = {.lex_state = 47}, + [679] = {.lex_state = 47}, + [680] = {.lex_state = 47}, + [681] = {.lex_state = 47}, + [682] = {.lex_state = 47}, + [683] = {.lex_state = 47}, + [684] = {.lex_state = 47}, + [685] = {.lex_state = 47}, + [686] = {.lex_state = 47}, + [687] = {.lex_state = 47}, + [688] = {.lex_state = 857}, + [689] = {.lex_state = 46}, + [690] = {.lex_state = 857}, + [691] = {.lex_state = 46}, + [692] = {.lex_state = 46}, + [693] = {.lex_state = 43}, + [694] = {.lex_state = 46}, + [695] = {.lex_state = 46}, + [696] = {.lex_state = 46}, + [697] = {.lex_state = 46}, + [698] = {.lex_state = 43}, + [699] = {.lex_state = 43}, + [700] = {.lex_state = 43}, + [701] = {.lex_state = 43}, + [702] = {.lex_state = 43}, + [703] = {.lex_state = 43}, + [704] = {.lex_state = 43}, + [705] = {.lex_state = 43}, + [706] = {.lex_state = 43}, + [707] = {.lex_state = 43}, + [708] = {.lex_state = 43}, + [709] = {.lex_state = 43}, + [710] = {.lex_state = 43}, + [711] = {.lex_state = 43}, + [712] = {.lex_state = 43}, + [713] = {.lex_state = 43}, + [714] = {.lex_state = 43}, + [715] = {.lex_state = 43}, + [716] = {.lex_state = 43}, + [717] = {.lex_state = 43}, + [718] = {.lex_state = 43}, + [719] = {.lex_state = 52}, + [720] = {.lex_state = 49}, + [721] = {.lex_state = 43}, + [722] = {.lex_state = 43}, + [723] = {.lex_state = 43}, + [724] = {.lex_state = 43}, + [725] = {.lex_state = 43}, + [726] = {.lex_state = 43}, + [727] = {.lex_state = 43}, + [728] = {.lex_state = 43}, + [729] = {.lex_state = 43}, + [730] = {.lex_state = 43}, + [731] = {.lex_state = 43}, + [732] = {.lex_state = 43}, + [733] = {.lex_state = 43}, + [734] = {.lex_state = 43}, + [735] = {.lex_state = 43}, + [736] = {.lex_state = 43}, + [737] = {.lex_state = 43}, + [738] = {.lex_state = 43}, + [739] = {.lex_state = 43}, + [740] = {.lex_state = 43}, + [741] = {.lex_state = 43}, + [742] = {.lex_state = 43}, + [743] = {.lex_state = 43}, + [744] = {.lex_state = 43}, + [745] = {.lex_state = 43}, + [746] = {.lex_state = 43}, + [747] = {.lex_state = 43}, + [748] = {.lex_state = 43}, + [749] = {.lex_state = 43}, + [750] = {.lex_state = 43}, + [751] = {.lex_state = 43}, + [752] = {.lex_state = 43}, + [753] = {.lex_state = 43}, + [754] = {.lex_state = 43}, + [755] = {.lex_state = 43}, + [756] = {.lex_state = 43}, + [757] = {.lex_state = 43}, + [758] = {.lex_state = 43}, + [759] = {.lex_state = 43}, + [760] = {.lex_state = 43}, + [761] = {.lex_state = 43}, + [762] = {.lex_state = 43}, + [763] = {.lex_state = 43}, + [764] = {.lex_state = 43}, + [765] = {.lex_state = 43}, + [766] = {.lex_state = 43}, + [767] = {.lex_state = 43}, + [768] = {.lex_state = 43}, + [769] = {.lex_state = 43}, + [770] = {.lex_state = 43}, + [771] = {.lex_state = 43}, + [772] = {.lex_state = 43}, + [773] = {.lex_state = 43}, + [774] = {.lex_state = 43}, + [775] = {.lex_state = 43}, + [776] = {.lex_state = 43}, + [777] = {.lex_state = 43}, + [778] = {.lex_state = 43}, + [779] = {.lex_state = 43}, + [780] = {.lex_state = 43}, + [781] = {.lex_state = 43}, + [782] = {.lex_state = 43}, + [783] = {.lex_state = 43}, + [784] = {.lex_state = 43}, + [785] = {.lex_state = 43}, + [786] = {.lex_state = 43}, + [787] = {.lex_state = 43}, + [788] = {.lex_state = 43}, + [789] = {.lex_state = 43}, + [790] = {.lex_state = 43}, + [791] = {.lex_state = 43}, + [792] = {.lex_state = 43}, + [793] = {.lex_state = 43}, + [794] = {.lex_state = 43}, + [795] = {.lex_state = 43}, + [796] = {.lex_state = 43}, + [797] = {.lex_state = 43}, [798] = {.lex_state = 43}, - [799] = {.lex_state = 51}, - [800] = {.lex_state = 51}, - [801] = {.lex_state = 51}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 833}, + [799] = {.lex_state = 43}, + [800] = {.lex_state = 43}, + [801] = {.lex_state = 43}, + [802] = {.lex_state = 43}, + [803] = {.lex_state = 43}, + [804] = {.lex_state = 43}, + [805] = {.lex_state = 43}, [806] = {.lex_state = 43}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 833}, - [809] = {.lex_state = 833}, - [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 833}, - [814] = {.lex_state = 49}, - [815] = {.lex_state = 833}, - [816] = {.lex_state = 833}, - [817] = {.lex_state = 833}, + [807] = {.lex_state = 43}, + [808] = {.lex_state = 43}, + [809] = {.lex_state = 43}, + [810] = {.lex_state = 43}, + [811] = {.lex_state = 43}, + [812] = {.lex_state = 43}, + [813] = {.lex_state = 43}, + [814] = {.lex_state = 43}, + [815] = {.lex_state = 43}, + [816] = {.lex_state = 43}, + [817] = {.lex_state = 43}, [818] = {.lex_state = 43}, - [819] = {.lex_state = 50}, - [820] = {.lex_state = 49}, - [821] = {.lex_state = 833}, - [822] = {.lex_state = 833}, - [823] = {.lex_state = 833}, - [824] = {.lex_state = 49}, - [825] = {.lex_state = 833}, - [826] = {.lex_state = 833}, + [819] = {.lex_state = 43}, + [820] = {.lex_state = 43}, + [821] = {.lex_state = 43}, + [822] = {.lex_state = 43}, + [823] = {.lex_state = 43}, + [824] = {.lex_state = 43}, + [825] = {.lex_state = 43}, + [826] = {.lex_state = 43}, [827] = {.lex_state = 43}, - [828] = {.lex_state = 833}, - [829] = {.lex_state = 833}, - [830] = {.lex_state = 833}, + [828] = {.lex_state = 43}, + [829] = {.lex_state = 43}, + [830] = {.lex_state = 43}, [831] = {.lex_state = 43}, [832] = {.lex_state = 43}, - [833] = {.lex_state = 833}, - [834] = {.lex_state = 833}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 833}, + [833] = {.lex_state = 43}, + [834] = {.lex_state = 43}, + [835] = {.lex_state = 43}, + [836] = {.lex_state = 43}, [837] = {.lex_state = 43}, - [838] = {.lex_state = 833}, + [838] = {.lex_state = 43}, [839] = {.lex_state = 43}, - [840] = {.lex_state = 49}, - [841] = {.lex_state = 833}, + [840] = {.lex_state = 43}, + [841] = {.lex_state = 43}, [842] = {.lex_state = 43}, [843] = {.lex_state = 43}, [844] = {.lex_state = 43}, - [845] = {.lex_state = 50}, - [846] = {.lex_state = 833}, - [847] = {.lex_state = 833}, - [848] = {.lex_state = 833}, - [849] = {.lex_state = 52}, - [850] = {.lex_state = 833}, - [851] = {.lex_state = 0}, + [845] = {.lex_state = 43}, + [846] = {.lex_state = 43}, + [847] = {.lex_state = 43}, + [848] = {.lex_state = 43}, + [849] = {.lex_state = 43}, + [850] = {.lex_state = 43}, + [851] = {.lex_state = 43}, [852] = {.lex_state = 43}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 833}, - [856] = {.lex_state = 49}, - [857] = {.lex_state = 50}, - [858] = {.lex_state = 833}, - [859] = {.lex_state = 49}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 833}, + [853] = {.lex_state = 43}, + [854] = {.lex_state = 43}, + [855] = {.lex_state = 43}, + [856] = {.lex_state = 43}, + [857] = {.lex_state = 43}, + [858] = {.lex_state = 43}, + [859] = {.lex_state = 43}, + [860] = {.lex_state = 43}, + [861] = {.lex_state = 43}, [862] = {.lex_state = 43}, [863] = {.lex_state = 43}, - [864] = {.lex_state = 833}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 833}, + [864] = {.lex_state = 43}, + [865] = {.lex_state = 43}, + [866] = {.lex_state = 43}, [867] = {.lex_state = 43}, - [868] = {.lex_state = 56}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 58}, - [871] = {.lex_state = 833}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 833}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 833}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 50}, - [879] = {.lex_state = 57}, - [880] = {.lex_state = 31}, - [881] = {.lex_state = 43}, - [882] = {.lex_state = 833}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 50}, - [885] = {.lex_state = 50}, + [868] = {.lex_state = 43}, + [869] = {.lex_state = 43}, + [870] = {.lex_state = 43}, + [871] = {.lex_state = 43}, + [872] = {.lex_state = 43}, + [873] = {.lex_state = 43}, + [874] = {.lex_state = 857}, + [875] = {.lex_state = 857}, + [876] = {.lex_state = 857}, + [877] = {.lex_state = 857}, + [878] = {.lex_state = 86}, + [879] = {.lex_state = 857}, + [880] = {.lex_state = 857}, + [881] = {.lex_state = 58}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 857}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 857}, [886] = {.lex_state = 0}, - [887] = {.lex_state = 833}, - [888] = {.lex_state = 833}, - [889] = {.lex_state = 34}, - [890] = {.lex_state = 34}, - [891] = {.lex_state = 53}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 833}, - [894] = {.lex_state = 34}, - [895] = {.lex_state = 833}, - [896] = {.lex_state = 59}, - [897] = {.lex_state = 43}, - [898] = {.lex_state = 833}, - [899] = {.lex_state = 833}, - [900] = {.lex_state = 34}, - [901] = {.lex_state = 34}, - [902] = {.lex_state = 34}, - [903] = {.lex_state = 833}, - [904] = {.lex_state = 84}, - [905] = {.lex_state = 34}, - [906] = {.lex_state = 34}, - [907] = {.lex_state = 43}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 43}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 43}, - [913] = {.lex_state = 43}, - [914] = {.lex_state = 43}, - [915] = {.lex_state = 833}, - [916] = {.lex_state = 833}, - [917] = {.lex_state = 833}, - [918] = {.lex_state = 833}, - [919] = {.lex_state = 833}, - [920] = {.lex_state = 0}, + [887] = {.lex_state = 857}, + [888] = {.lex_state = 857}, + [889] = {.lex_state = 58}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 58}, + [892] = {.lex_state = 857}, + [893] = {.lex_state = 857}, + [894] = {.lex_state = 857}, + [895] = {.lex_state = 857}, + [896] = {.lex_state = 857}, + [897] = {.lex_state = 857}, + [898] = {.lex_state = 87}, + [899] = {.lex_state = 857}, + [900] = {.lex_state = 857}, + [901] = {.lex_state = 857}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 58}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 59}, + [907] = {.lex_state = 65}, + [908] = {.lex_state = 857}, + [909] = {.lex_state = 58}, + [910] = {.lex_state = 857}, + [911] = {.lex_state = 857}, + [912] = {.lex_state = 857}, + [913] = {.lex_state = 58}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 857}, + [916] = {.lex_state = 857}, + [917] = {.lex_state = 62}, + [918] = {.lex_state = 857}, + [919] = {.lex_state = 857}, + [920] = {.lex_state = 857}, [921] = {.lex_state = 0}, - [922] = {.lex_state = 833}, + [922] = {.lex_state = 0}, [923] = {.lex_state = 0}, - [924] = {.lex_state = 34}, - [925] = {.lex_state = 833}, + [924] = {.lex_state = 59}, + [925] = {.lex_state = 59}, [926] = {.lex_state = 0}, - [927] = {.lex_state = 43}, + [927] = {.lex_state = 0}, [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, - [930] = {.lex_state = 63}, + [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, - [932] = {.lex_state = 833}, - [933] = {.lex_state = 833}, - [934] = {.lex_state = 833}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 62}, + [934] = {.lex_state = 66}, [935] = {.lex_state = 0}, [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, + [937] = {.lex_state = 63}, [938] = {.lex_state = 63}, - [939] = {.lex_state = 43}, - [940] = {.lex_state = 63}, - [941] = {.lex_state = 61}, - [942] = {.lex_state = 43}, - [943] = {.lex_state = 0}, + [939] = {.lex_state = 59}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 62}, + [943] = {.lex_state = 63}, [944] = {.lex_state = 0}, - [945] = {.lex_state = 71}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 53}, - [949] = {.lex_state = 63}, - [950] = {.lex_state = 61}, - [951] = {.lex_state = 53}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 43}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 43}, - [957] = {.lex_state = 833}, + [945] = {.lex_state = 63}, + [946] = {.lex_state = 63}, + [947] = {.lex_state = 63}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 59}, + [952] = {.lex_state = 63}, + [953] = {.lex_state = 59}, + [954] = {.lex_state = 857}, + [955] = {.lex_state = 857}, + [956] = {.lex_state = 0}, + [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 833}, - [960] = {.lex_state = 833}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 833}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 62}, + [961] = {.lex_state = 62}, + [962] = {.lex_state = 62}, [963] = {.lex_state = 0}, - [964] = {.lex_state = 833}, - [965] = {.lex_state = 44}, - [966] = {.lex_state = 62}, - [967] = {.lex_state = 833}, - [968] = {.lex_state = 44}, - [969] = {.lex_state = 833}, + [964] = {.lex_state = 82}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 857}, + [967] = {.lex_state = 857}, + [968] = {.lex_state = 857}, + [969] = {.lex_state = 857}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 833}, - [972] = {.lex_state = 53}, - [973] = {.lex_state = 88}, - [974] = {.lex_state = 53}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 833}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 833}, - [979] = {.lex_state = 833}, - [980] = {.lex_state = 833}, - [981] = {.lex_state = 44}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 833}, - [984] = {.lex_state = 833}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 43}, - [988] = {.lex_state = 63}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 53}, + [971] = {.lex_state = 54}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 857}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 857}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 60}, + [978] = {.lex_state = 857}, + [979] = {.lex_state = 857}, + [980] = {.lex_state = 857}, + [981] = {.lex_state = 857}, + [982] = {.lex_state = 857}, + [983] = {.lex_state = 61}, + [984] = {.lex_state = 60}, + [985] = {.lex_state = 857}, + [986] = {.lex_state = 857}, + [987] = {.lex_state = 857}, + [988] = {.lex_state = 54}, + [989] = {.lex_state = 60}, + [990] = {.lex_state = 857}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 0}, + [992] = {.lex_state = 857}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 43}, - [995] = {.lex_state = 62}, - [996] = {.lex_state = 0}, + [994] = {.lex_state = 857}, + [995] = {.lex_state = 63}, + [996] = {.lex_state = 69}, [997] = {.lex_state = 0}, - [998] = {.lex_state = 52}, - [999] = {.lex_state = 52}, - [1000] = {.lex_state = 833}, - [1001] = {.lex_state = 52}, - [1002] = {.lex_state = 81}, - [1003] = {.lex_state = 833}, - [1004] = {.lex_state = 52}, + [998] = {.lex_state = 67}, + [999] = {.lex_state = 857}, + [1000] = {.lex_state = 857}, + [1001] = {.lex_state = 857}, + [1002] = {.lex_state = 857}, + [1003] = {.lex_state = 54}, + [1004] = {.lex_state = 54}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, + [1006] = {.lex_state = 857}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 52}, - [1012] = {.lex_state = 52}, - [1013] = {.lex_state = 52}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 52}, - [1016] = {.lex_state = 52}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 833}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, + [1008] = {.lex_state = 54}, + [1009] = {.lex_state = 857}, + [1010] = {.lex_state = 61}, + [1011] = {.lex_state = 61}, + [1012] = {.lex_state = 54}, + [1013] = {.lex_state = 857}, + [1014] = {.lex_state = 54}, + [1015] = {.lex_state = 54}, + [1016] = {.lex_state = 54}, + [1017] = {.lex_state = 857}, + [1018] = {.lex_state = 63}, + [1019] = {.lex_state = 60}, + [1020] = {.lex_state = 857}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 52}, - [1023] = {.lex_state = 833}, - [1024] = {.lex_state = 833}, - [1025] = {.lex_state = 833}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 833}, + [1022] = {.lex_state = 857}, + [1023] = {.lex_state = 60}, + [1024] = {.lex_state = 60}, + [1025] = {.lex_state = 54}, + [1026] = {.lex_state = 61}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 833}, - [1033] = {.lex_state = 833}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 833}, - [1036] = {.lex_state = 43}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 833}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 833}, - [1042] = {.lex_state = 833}, + [1029] = {.lex_state = 54}, + [1030] = {.lex_state = 54}, + [1031] = {.lex_state = 43}, + [1032] = {.lex_state = 54}, + [1033] = {.lex_state = 43}, + [1034] = {.lex_state = 43}, + [1035] = {.lex_state = 857}, + [1036] = {.lex_state = 857}, + [1037] = {.lex_state = 43}, + [1038] = {.lex_state = 61}, + [1039] = {.lex_state = 857}, + [1040] = {.lex_state = 43}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 42}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 833}, - [1046] = {.lex_state = 833}, - [1047] = {.lex_state = 833}, - [1048] = {.lex_state = 833}, - [1049] = {.lex_state = 37}, - [1050] = {.lex_state = 833}, - [1051] = {.lex_state = 37}, - [1052] = {.lex_state = 37}, - [1053] = {.lex_state = 37}, - [1054] = {.lex_state = 37}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 37}, - [1057] = {.lex_state = 37}, - [1058] = {.lex_state = 37}, - [1059] = {.lex_state = 833}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 37}, - [1062] = {.lex_state = 37}, - [1063] = {.lex_state = 37}, - [1064] = {.lex_state = 37}, - [1065] = {.lex_state = 37}, + [1044] = {.lex_state = 43}, + [1045] = {.lex_state = 43}, + [1046] = {.lex_state = 68}, + [1047] = {.lex_state = 61}, + [1048] = {.lex_state = 857}, + [1049] = {.lex_state = 43}, + [1050] = {.lex_state = 43}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 0}, + [1053] = {.lex_state = 857}, + [1054] = {.lex_state = 857}, + [1055] = {.lex_state = 857}, + [1056] = {.lex_state = 857}, + [1057] = {.lex_state = 857}, + [1058] = {.lex_state = 64}, + [1059] = {.lex_state = 54}, + [1060] = {.lex_state = 70}, + [1061] = {.lex_state = 96}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 857}, + [1064] = {.lex_state = 857}, + [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 37}, - [1069] = {.lex_state = 833}, - [1070] = {.lex_state = 833}, - [1071] = {.lex_state = 61}, - [1072] = {.lex_state = 833}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 833}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 833}, - [1077] = {.lex_state = 37}, - [1078] = {.lex_state = 833}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 37}, - [1081] = {.lex_state = 833}, - [1082] = {.lex_state = 833}, - [1083] = {.lex_state = 37}, - [1084] = {.lex_state = 833}, - [1085] = {.lex_state = 833}, - [1086] = {.lex_state = 37}, - [1087] = {.lex_state = 833}, - [1088] = {.lex_state = 833}, - [1089] = {.lex_state = 37}, - [1090] = {.lex_state = 37}, - [1091] = {.lex_state = 833}, - [1092] = {.lex_state = 833}, - [1093] = {.lex_state = 37}, - [1094] = {.lex_state = 37}, - [1095] = {.lex_state = 833}, - [1096] = {.lex_state = 0}, + [1067] = {.lex_state = 54}, + [1068] = {.lex_state = 54}, + [1069] = {.lex_state = 857}, + [1070] = {.lex_state = 857}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 857}, + [1074] = {.lex_state = 857}, + [1075] = {.lex_state = 54}, + [1076] = {.lex_state = 857}, + [1077] = {.lex_state = 54}, + [1078] = {.lex_state = 0}, + [1079] = {.lex_state = 54}, + [1080] = {.lex_state = 857}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 54}, + [1083] = {.lex_state = 857}, + [1084] = {.lex_state = 72}, + [1085] = {.lex_state = 64}, + [1086] = {.lex_state = 54}, + [1087] = {.lex_state = 54}, + [1088] = {.lex_state = 74}, + [1089] = {.lex_state = 74}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 54}, + [1092] = {.lex_state = 857}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 74}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 833}, + [1098] = {.lex_state = 54}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 37}, + [1100] = {.lex_state = 74}, + [1101] = {.lex_state = 54}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 833}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 833}, - [1106] = {.lex_state = 44}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 44}, - [1109] = {.lex_state = 833}, - [1110] = {.lex_state = 833}, - [1111] = {.lex_state = 833}, - [1112] = {.lex_state = 44}, - [1113] = {.lex_state = 833}, - [1114] = {.lex_state = 833}, - [1115] = {.lex_state = 83}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 833}, - [1118] = {.lex_state = 833}, - [1119] = {.lex_state = 833}, - [1120] = {.lex_state = 89}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 0}, + [1105] = {.lex_state = 83}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 72}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 857}, + [1112] = {.lex_state = 857}, + [1113] = {.lex_state = 64}, + [1114] = {.lex_state = 55}, + [1115] = {.lex_state = 857}, + [1116] = {.lex_state = 857}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 55}, + [1119] = {.lex_state = 857}, + [1120] = {.lex_state = 857}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 833}, - [1123] = {.lex_state = 83}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 833}, - [1126] = {.lex_state = 833}, - [1127] = {.lex_state = 83}, + [1122] = {.lex_state = 54}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 64}, + [1125] = {.lex_state = 64}, + [1126] = {.lex_state = 54}, + [1127] = {.lex_state = 857}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 833}, - [1130] = {.lex_state = 833}, - [1131] = {.lex_state = 833}, - [1132] = {.lex_state = 833}, - [1133] = {.lex_state = 833}, + [1129] = {.lex_state = 64}, + [1130] = {.lex_state = 857}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 73}, [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 833}, - [1136] = {.lex_state = 79}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 833}, - [1140] = {.lex_state = 0}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 857}, + [1137] = {.lex_state = 857}, + [1138] = {.lex_state = 54}, + [1139] = {.lex_state = 74}, + [1140] = {.lex_state = 857}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 833}, + [1142] = {.lex_state = 857}, [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, + [1144] = {.lex_state = 73}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 833}, - [1148] = {.lex_state = 833}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 833}, - [1151] = {.lex_state = 833}, + [1146] = {.lex_state = 54}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 857}, + [1149] = {.lex_state = 857}, + [1150] = {.lex_state = 55}, + [1151] = {.lex_state = 857}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 89}, - [1154] = {.lex_state = 833}, - [1155] = {.lex_state = 91}, - [1156] = {.lex_state = 833}, - [1157] = {.lex_state = 833}, - [1158] = {.lex_state = 833}, - [1159] = {.lex_state = 833}, - [1160] = {.lex_state = 833}, + [1153] = {.lex_state = 857}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 100}, + [1158] = {.lex_state = 857}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 833}, - [1163] = {.lex_state = 833}, - [1164] = {.lex_state = 833}, - [1165] = {.lex_state = 833}, - [1166] = {.lex_state = 44}, - [1167] = {.lex_state = 833}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 63}, + [1166] = {.lex_state = 63}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 93}, + [1169] = {.lex_state = 63}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 833}, - [1172] = {.lex_state = 91}, - [1173] = {.lex_state = 833}, - [1174] = {.lex_state = 833}, - [1175] = {.lex_state = 60}, - [1176] = {.lex_state = 833}, - [1177] = {.lex_state = 833}, - [1178] = {.lex_state = 833}, - [1179] = {.lex_state = 44}, + [1171] = {.lex_state = 63}, + [1172] = {.lex_state = 63}, + [1173] = {.lex_state = 63}, + [1174] = {.lex_state = 63}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 63}, + [1177] = {.lex_state = 857}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 857}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 833}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 833}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 833}, - [1187] = {.lex_state = 833}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 98}, - [1190] = {.lex_state = 85}, + [1181] = {.lex_state = 63}, + [1182] = {.lex_state = 63}, + [1183] = {.lex_state = 857}, + [1184] = {.lex_state = 857}, + [1185] = {.lex_state = 857}, + [1186] = {.lex_state = 857}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 857}, + [1189] = {.lex_state = 857}, + [1190] = {.lex_state = 857}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 44}, - [1193] = {.lex_state = 44}, - [1194] = {.lex_state = 92}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 833}, + [1192] = {.lex_state = 857}, + [1193] = {.lex_state = 857}, + [1194] = {.lex_state = 857}, + [1195] = {.lex_state = 857}, + [1196] = {.lex_state = 857}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 833}, - [1199] = {.lex_state = 833}, - [1200] = {.lex_state = 833}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 833}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 857}, + [1200] = {.lex_state = 107}, + [1201] = {.lex_state = 54}, + [1202] = {.lex_state = 857}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 94}, - [1205] = {.lex_state = 44}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 833}, - [1208] = {.lex_state = 833}, - [1209] = {.lex_state = 833}, - [1210] = {.lex_state = 833}, - [1211] = {.lex_state = 37}, - [1212] = {.lex_state = 833}, - [1213] = {.lex_state = 52}, - [1214] = {.lex_state = 833}, - [1215] = {.lex_state = 94}, - [1216] = {.lex_state = 833}, - [1217] = {.lex_state = 833}, - [1218] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 857}, + [1211] = {.lex_state = 48}, + [1212] = {.lex_state = 48}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 48}, + [1215] = {.lex_state = 857}, + [1216] = {.lex_state = 857}, + [1217] = {.lex_state = 72}, + [1218] = {.lex_state = 48}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 64}, - [1222] = {.lex_state = 37}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 833}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 44}, - [1227] = {.lex_state = 93}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 833}, - [1231] = {.lex_state = 833}, + [1220] = {.lex_state = 857}, + [1221] = {.lex_state = 48}, + [1222] = {.lex_state = 48}, + [1223] = {.lex_state = 48}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 48}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 857}, + [1229] = {.lex_state = 48}, + [1230] = {.lex_state = 48}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 37}, - [1234] = {.lex_state = 833}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 44}, + [1233] = {.lex_state = 48}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 857}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 833}, - [1239] = {.lex_state = 833}, - [1240] = {.lex_state = 833}, - [1241] = {.lex_state = 37}, - [1242] = {.lex_state = 94}, - [1243] = {.lex_state = 833}, - [1244] = {.lex_state = 833}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 37}, - [1247] = {.lex_state = 37}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 44}, - [1250] = {.lex_state = 37}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 833}, - [1253] = {.lex_state = 833}, - [1254] = {.lex_state = 37}, - [1255] = {.lex_state = 833}, - [1256] = {.lex_state = 37}, + [1238] = {.lex_state = 857}, + [1239] = {.lex_state = 857}, + [1240] = {.lex_state = 857}, + [1241] = {.lex_state = 48}, + [1242] = {.lex_state = 857}, + [1243] = {.lex_state = 48}, + [1244] = {.lex_state = 48}, + [1245] = {.lex_state = 48}, + [1246] = {.lex_state = 857}, + [1247] = {.lex_state = 48}, + [1248] = {.lex_state = 857}, + [1249] = {.lex_state = 48}, + [1250] = {.lex_state = 857}, + [1251] = {.lex_state = 48}, + [1252] = {.lex_state = 857}, + [1253] = {.lex_state = 857}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 857}, + [1256] = {.lex_state = 48}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 833}, - [1259] = {.lex_state = 833}, - [1260] = {.lex_state = 93}, - [1261] = {.lex_state = 86}, + [1258] = {.lex_state = 48}, + [1259] = {.lex_state = 857}, + [1260] = {.lex_state = 48}, + [1261] = {.lex_state = 48}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 46}, - [1265] = {.lex_state = 833}, - [1266] = {.lex_state = 46}, - [1267] = {.lex_state = 46}, - [1268] = {.lex_state = 46}, - [1269] = {.lex_state = 94}, - [1270] = {.lex_state = 46}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 90}, - [1273] = {.lex_state = 37}, - [1274] = {.lex_state = 46}, - [1275] = {.lex_state = 80}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 833}, - [1278] = {.lex_state = 46}, - [1279] = {.lex_state = 833}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 833}, - [1282] = {.lex_state = 94}, - [1283] = {.lex_state = 9}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 833}, - [1286] = {.lex_state = 46}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 94}, - [1289] = {.lex_state = 46}, - [1290] = {.lex_state = 46}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 37}, - [1296] = {.lex_state = 46}, + [1263] = {.lex_state = 857}, + [1264] = {.lex_state = 48}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 55}, + [1267] = {.lex_state = 857}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 857}, + [1270] = {.lex_state = 857}, + [1271] = {.lex_state = 857}, + [1272] = {.lex_state = 857}, + [1273] = {.lex_state = 55}, + [1274] = {.lex_state = 20}, + [1275] = {.lex_state = 857}, + [1276] = {.lex_state = 857}, + [1277] = {.lex_state = 857}, + [1278] = {.lex_state = 857}, + [1279] = {.lex_state = 857}, + [1280] = {.lex_state = 857}, + [1281] = {.lex_state = 857}, + [1282] = {.lex_state = 857}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 857}, + [1285] = {.lex_state = 857}, + [1286] = {.lex_state = 857}, + [1287] = {.lex_state = 857}, + [1288] = {.lex_state = 95}, + [1289] = {.lex_state = 95}, + [1290] = {.lex_state = 55}, + [1291] = {.lex_state = 20}, + [1292] = {.lex_state = 102}, + [1293] = {.lex_state = 95}, + [1294] = {.lex_state = 76}, + [1295] = {.lex_state = 857}, + [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 37}, - [1299] = {.lex_state = 46}, - [1300] = {.lex_state = 46}, - [1301] = {.lex_state = 46}, - [1302] = {.lex_state = 46}, + [1298] = {.lex_state = 857}, + [1299] = {.lex_state = 857}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 46}, - [1305] = {.lex_state = 833}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 31}, - [1308] = {.lex_state = 46}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 46}, - [1312] = {.lex_state = 833}, - [1313] = {.lex_state = 833}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 94}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 833}, - [1319] = {.lex_state = 46}, - [1320] = {.lex_state = 94}, - [1321] = {.lex_state = 46}, - [1322] = {.lex_state = 37}, - [1323] = {.lex_state = 46}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 833}, - [1326] = {.lex_state = 833}, - [1327] = {.lex_state = 833}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 46}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 46}, - [1332] = {.lex_state = 46}, - [1333] = {.lex_state = 833}, - [1334] = {.lex_state = 77}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 46}, + [1304] = {.lex_state = 71}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 857}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 857}, + [1309] = {.lex_state = 857}, + [1310] = {.lex_state = 857}, + [1311] = {.lex_state = 857}, + [1312] = {.lex_state = 857}, + [1313] = {.lex_state = 857}, + [1314] = {.lex_state = 857}, + [1315] = {.lex_state = 55}, + [1316] = {.lex_state = 97}, + [1317] = {.lex_state = 857}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 857}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 857}, + [1322] = {.lex_state = 857}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 101}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 91}, + [1327] = {.lex_state = 857}, + [1328] = {.lex_state = 857}, + [1329] = {.lex_state = 857}, + [1330] = {.lex_state = 102}, + [1331] = {.lex_state = 857}, + [1332] = {.lex_state = 857}, + [1333] = {.lex_state = 857}, + [1334] = {.lex_state = 0}, + [1335] = {.lex_state = 55}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 77}, - [1339] = {.lex_state = 37}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 46}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 94}, + [1338] = {.lex_state = 857}, + [1339] = {.lex_state = 857}, + [1340] = {.lex_state = 857}, + [1341] = {.lex_state = 55}, + [1342] = {.lex_state = 857}, + [1343] = {.lex_state = 857}, + [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 46}, - [1348] = {.lex_state = 37}, + [1347] = {.lex_state = 857}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 82}, - [1351] = {.lex_state = 833}, + [1350] = {.lex_state = 857}, + [1351] = {.lex_state = 101}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 46}, + [1353] = {.lex_state = 857}, [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, + [1356] = {.lex_state = 55}, [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 94}, - [1360] = {.lex_state = 37}, - [1361] = {.lex_state = 37}, - [1362] = {.lex_state = 46}, - [1363] = {.lex_state = 46}, - [1364] = {.lex_state = 833}, - [1365] = {.lex_state = 31}, - [1366] = {.lex_state = 9}, + [1358] = {.lex_state = 55}, + [1359] = {.lex_state = 55}, + [1360] = {.lex_state = 104}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 857}, + [1363] = {.lex_state = 48}, + [1364] = {.lex_state = 857}, + [1365] = {.lex_state = 16}, + [1366] = {.lex_state = 55}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 833}, - [1369] = {.lex_state = 46}, - [1370] = {.lex_state = 46}, - [1371] = {.lex_state = 46}, + [1368] = {.lex_state = 106}, + [1369] = {.lex_state = 48}, + [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 = 833}, - [1378] = {.lex_state = 37}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 37}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, + [1373] = {.lex_state = 857}, + [1374] = {.lex_state = 106}, + [1375] = {.lex_state = 55}, + [1376] = {.lex_state = 857}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 55}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 106}, + [1382] = {.lex_state = 857}, + [1383] = {.lex_state = 857}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 83}, + [1385] = {.lex_state = 55}, + [1386] = {.lex_state = 857}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 5}, - [1397] = {.lex_state = 0}, + [1388] = {.lex_state = 857}, + [1389] = {.lex_state = 857}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 55}, + [1392] = {.lex_state = 105}, + [1393] = {.lex_state = 55}, + [1394] = {.lex_state = 857}, + [1395] = {.lex_state = 857}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 857}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 96}, + [1399] = {.lex_state = 857}, + [1400] = {.lex_state = 857}, + [1401] = {.lex_state = 55}, [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}, + [1403] = {.lex_state = 55}, + [1404] = {.lex_state = 857}, + [1405] = {.lex_state = 857}, + [1406] = {.lex_state = 48}, + [1407] = {.lex_state = 857}, + [1408] = {.lex_state = 75}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 5}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 37}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 37}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 37}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 95}, - [1421] = {.lex_state = 5}, + [1410] = {.lex_state = 857}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 857}, + [1413] = {.lex_state = 48}, + [1414] = {.lex_state = 55}, + [1415] = {.lex_state = 55}, + [1416] = {.lex_state = 105}, + [1417] = {.lex_state = 857}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 857}, + [1420] = {.lex_state = 98}, + [1421] = {.lex_state = 55}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [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 = 5}, - [1432] = {.lex_state = 37}, - [1433] = {.lex_state = 37}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, + [1425] = {.lex_state = 857}, + [1426] = {.lex_state = 55}, + [1427] = {.lex_state = 857}, + [1428] = {.lex_state = 857}, + [1429] = {.lex_state = 48}, + [1430] = {.lex_state = 48}, + [1431] = {.lex_state = 857}, + [1432] = {.lex_state = 48}, + [1433] = {.lex_state = 55}, + [1434] = {.lex_state = 63}, + [1435] = {.lex_state = 48}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 5}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 37}, - [1440] = {.lex_state = 43}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 0}, + [1437] = {.lex_state = 48}, + [1438] = {.lex_state = 857}, + [1439] = {.lex_state = 55}, + [1440] = {.lex_state = 103}, + [1441] = {.lex_state = 57}, + [1442] = {.lex_state = 57}, + [1443] = {.lex_state = 57}, [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 83}, + [1445] = {.lex_state = 57}, + [1446] = {.lex_state = 57}, + [1447] = {.lex_state = 0}, [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 5}, - [1451] = {.lex_state = 37}, - [1452] = {.lex_state = 37}, - [1453] = {.lex_state = 96}, + [1449] = {.lex_state = 106}, + [1450] = {.lex_state = 57}, + [1451] = {.lex_state = 57}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 57}, [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 37}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 9}, - [1459] = {.lex_state = 37}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 48}, + [1457] = {.lex_state = 857}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 42}, + [1460] = {.lex_state = 857}, + [1461] = {.lex_state = 57}, [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 0}, + [1465] = {.lex_state = 92}, + [1466] = {.lex_state = 57}, + [1467] = {.lex_state = 48}, + [1468] = {.lex_state = 57}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, + [1470] = {.lex_state = 57}, [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 0}, + [1472] = {.lex_state = 857}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 37}, + [1474] = {.lex_state = 57}, [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 37}, + [1476] = {.lex_state = 57}, + [1477] = {.lex_state = 57}, + [1478] = {.lex_state = 857}, + [1479] = {.lex_state = 57}, [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, + [1481] = {.lex_state = 57}, [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 43}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 43}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 37}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 97}, - [1490] = {.lex_state = 78}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 97}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 833}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 37}, - [1501] = {.lex_state = 37}, + [1483] = {.lex_state = 57}, + [1484] = {.lex_state = 857}, + [1485] = {.lex_state = 48}, + [1486] = {.lex_state = 106}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 857}, + [1489] = {.lex_state = 48}, + [1490] = {.lex_state = 857}, + [1491] = {.lex_state = 20}, + [1492] = {.lex_state = 57}, + [1493] = {.lex_state = 48}, + [1494] = {.lex_state = 857}, + [1495] = {.lex_state = 20}, + [1496] = {.lex_state = 857}, + [1497] = {.lex_state = 57}, + [1498] = {.lex_state = 57}, + [1499] = {.lex_state = 48}, + [1500] = {.lex_state = 57}, + [1501] = {.lex_state = 857}, [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, + [1505] = {.lex_state = 89}, + [1506] = {.lex_state = 106}, [1507] = {.lex_state = 0}, [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 87}, - [1511] = {.lex_state = 0}, + [1510] = {.lex_state = 857}, + [1511] = {.lex_state = 57}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, + [1513] = {.lex_state = 857}, + [1514] = {.lex_state = 57}, + [1515] = {.lex_state = 57}, + [1516] = {.lex_state = 857}, [1517] = {.lex_state = 0}, [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, + [1519] = {.lex_state = 106}, [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, + [1521] = {.lex_state = 57}, + [1522] = {.lex_state = 857}, + [1523] = {.lex_state = 106}, + [1524] = {.lex_state = 106}, + [1525] = {.lex_state = 48}, [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 96}, - [1532] = {.lex_state = 0}, + [1527] = {.lex_state = 48}, + [1528] = {.lex_state = 48}, + [1529] = {.lex_state = 106}, + [1530] = {.lex_state = 89}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 57}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, + [1534] = {.lex_state = 57}, + [1535] = {.lex_state = 42}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, + [1538] = {.lex_state = 57}, [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, + [1541] = {.lex_state = 106}, [1542] = {.lex_state = 0}, [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 37}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, + [1545] = {.lex_state = 857}, + [1546] = {.lex_state = 857}, + [1547] = {.lex_state = 57}, + [1548] = {.lex_state = 57}, + [1549] = {.lex_state = 57}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, + [1551] = {.lex_state = 57}, [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, + [1553] = {.lex_state = 48}, [1554] = {.lex_state = 0}, [1555] = {.lex_state = 0}, [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, + [1557] = {.lex_state = 94}, + [1558] = {.lex_state = 857}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 37}, + [1562] = {.lex_state = 0}, [1563] = {.lex_state = 0}, [1564] = {.lex_state = 0}, [1565] = {.lex_state = 0}, @@ -16715,255 +17545,255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 37}, + [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, + [1574] = {.lex_state = 48}, [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 833}, + [1578] = {.lex_state = 54}, + [1579] = {.lex_state = 48}, + [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 833}, - [1583] = {.lex_state = 37}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 37}, - [1587] = {.lex_state = 37}, - [1588] = {.lex_state = 37}, - [1589] = {.lex_state = 37}, - [1590] = {.lex_state = 833}, - [1591] = {.lex_state = 833}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 37}, + [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 37}, + [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 37}, - [1605] = {.lex_state = 37}, - [1606] = {.lex_state = 37}, - [1607] = {.lex_state = 833}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 37}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 48}, + [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 37}, - [1612] = {.lex_state = 833}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 95}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 37}, + [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 37}, - [1619] = {.lex_state = 37}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 109}, [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 833}, + [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 37}, - [1626] = {.lex_state = 37}, - [1627] = {.lex_state = 0}, + [1625] = {.lex_state = 16}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 48}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, + [1630] = {.lex_state = 20}, [1631] = {.lex_state = 0}, [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 37}, + [1633] = {.lex_state = 48}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 37}, + [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, [1638] = {.lex_state = 0}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, [1641] = {.lex_state = 0}, [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 833}, + [1643] = {.lex_state = 109}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 37}, + [1646] = {.lex_state = 99}, [1647] = {.lex_state = 0}, [1648] = {.lex_state = 0}, [1649] = {.lex_state = 0}, [1650] = {.lex_state = 0}, [1651] = {.lex_state = 0}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, + [1653] = {.lex_state = 48}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, + [1655] = {.lex_state = 857}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 37}, + [1658] = {.lex_state = 0}, [1659] = {.lex_state = 0}, [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 833}, + [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 37}, - [1664] = {.lex_state = 37}, - [1665] = {.lex_state = 37}, - [1666] = {.lex_state = 833}, - [1667] = {.lex_state = 833}, - [1668] = {.lex_state = 37}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 54}, + [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 37}, + [1671] = {.lex_state = 0}, [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 37}, - [1674] = {.lex_state = 37}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 37}, - [1677] = {.lex_state = 37}, - [1678] = {.lex_state = 37}, - [1679] = {.lex_state = 37}, - [1680] = {.lex_state = 833}, - [1681] = {.lex_state = 37}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 5}, + [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, + [1690] = {.lex_state = 48}, [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 37}, + [1692] = {.lex_state = 0}, [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 37}, - [1695] = {.lex_state = 37}, + [1694] = {.lex_state = 48}, + [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 37}, - [1698] = {.lex_state = 9}, + [1697] = {.lex_state = 48}, + [1698] = {.lex_state = 54}, [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 37}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 37}, - [1703] = {.lex_state = 37}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, [1704] = {.lex_state = 0}, [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 37}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 37}, - [1709] = {.lex_state = 833}, - [1710] = {.lex_state = 80}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 37}, - [1713] = {.lex_state = 5}, - [1714] = {.lex_state = 37}, - [1715] = {.lex_state = 37}, - [1716] = {.lex_state = 77}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 109}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 108}, + [1711] = {.lex_state = 16}, + [1712] = {.lex_state = 48}, + [1713] = {.lex_state = 110}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 16}, + [1716] = {.lex_state = 0}, [1717] = {.lex_state = 0}, [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 37}, + [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, + [1721] = {.lex_state = 16}, [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 43}, - [1724] = {.lex_state = 833}, + [1723] = {.lex_state = 48}, + [1724] = {.lex_state = 0}, [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, + [1726] = {.lex_state = 16}, [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 0}, + [1728] = {.lex_state = 95}, [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 37}, - [1732] = {.lex_state = 37}, + [1730] = {.lex_state = 48}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 37}, - [1736] = {.lex_state = 37}, + [1734] = {.lex_state = 110}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 833}, - [1740] = {.lex_state = 0}, + [1738] = {.lex_state = 48}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 48}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 37}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 833}, - [1745] = {.lex_state = 37}, - [1746] = {.lex_state = 833}, + [1742] = {.lex_state = 48}, + [1743] = {.lex_state = 48}, + [1744] = {.lex_state = 48}, + [1745] = {.lex_state = 48}, + [1746] = {.lex_state = 0}, [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 37}, + [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 37}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 96}, - [1753] = {.lex_state = 37}, - [1754] = {.lex_state = 37}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 16}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, + [1757] = {.lex_state = 90}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 37}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 37}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 48}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 37}, - [1769] = {.lex_state = 833}, - [1770] = {.lex_state = 37}, - [1771] = {.lex_state = 37}, - [1772] = {.lex_state = 37}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 48}, + [1770] = {.lex_state = 48}, + [1771] = {.lex_state = 89}, + [1772] = {.lex_state = 92}, [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 37}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 37}, - [1778] = {.lex_state = 37}, - [1779] = {.lex_state = 37}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, + [1774] = {.lex_state = 48}, + [1775] = {.lex_state = 857}, + [1776] = {.lex_state = 16}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 48}, + [1779] = {.lex_state = 48}, + [1780] = {.lex_state = 48}, + [1781] = {.lex_state = 48}, + [1782] = {.lex_state = 48}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, + [1786] = {.lex_state = 857}, + [1787] = {.lex_state = 48}, + [1788] = {.lex_state = 48}, + [1789] = {.lex_state = 48}, + [1790] = {.lex_state = 48}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, + [1794] = {.lex_state = 48}, + [1795] = {.lex_state = 48}, [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, + [1797] = {.lex_state = 48}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, + [1799] = {.lex_state = 48}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 9}, + [1803] = {.lex_state = 48}, + [1804] = {.lex_state = 109}, + [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, + [1807] = {.lex_state = 857}, [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 833}, - [1811] = {.lex_state = 37}, - [1812] = {.lex_state = 0}, + [1809] = {.lex_state = 48}, + [1810] = {.lex_state = 48}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 48}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 43}, + [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, + [1820] = {.lex_state = 48}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, @@ -16971,60 +17801,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, + [1828] = {.lex_state = 48}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, + [1831] = {.lex_state = 857}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, + [1835] = {.lex_state = 48}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 833}, - [1840] = {.lex_state = 0}, + [1839] = {.lex_state = 0}, + [1840] = {.lex_state = 857}, [1841] = {.lex_state = 0}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, + [1844] = {.lex_state = 48}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, + [1847] = {.lex_state = 48}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, + [1851] = {.lex_state = 54}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, + [1853] = {.lex_state = 857}, [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, + [1858] = {.lex_state = 48}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, + [1862] = {.lex_state = 48}, + [1863] = {.lex_state = 48}, [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 833}, - [1867] = {.lex_state = 0}, + [1865] = {.lex_state = 857}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 48}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, + [1869] = {.lex_state = 48}, [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, + [1872] = {.lex_state = 48}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1874] = {.lex_state = 48}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, + [1879] = {.lex_state = 48}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, + [1881] = {.lex_state = 857}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, @@ -17033,58 +17863,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, + [1890] = {.lex_state = 48}, [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, + [1893] = {.lex_state = 48}, [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, + [1895] = {.lex_state = 857}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 37}, + [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, + [1903] = {.lex_state = 48}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, + [1909] = {.lex_state = 857}, + [1910] = {.lex_state = 48}, + [1911] = {.lex_state = 48}, + [1912] = {.lex_state = 48}, + [1913] = {.lex_state = 48}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 833}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 0}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 48}, + [1917] = {.lex_state = 48}, + [1918] = {.lex_state = 857}, [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, + [1920] = {.lex_state = 48}, + [1921] = {.lex_state = 857}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 833}, + [1923] = {.lex_state = 0}, [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, + [1928] = {.lex_state = 857}, [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, + [1930] = {.lex_state = 48}, [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, + [1932] = {.lex_state = 48}, + [1933] = {.lex_state = 16}, [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 833}, - [1941] = {.lex_state = 0}, + [1936] = {.lex_state = 20}, + [1937] = {.lex_state = 48}, + [1938] = {.lex_state = 48}, + [1939] = {.lex_state = 857}, + [1940] = {.lex_state = 48}, + [1941] = {.lex_state = 48}, [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, @@ -17093,29 +17923,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, + [1950] = {.lex_state = 48}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, + [1954] = {.lex_state = 48}, [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, + [1956] = {.lex_state = 48}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, + [1958] = {.lex_state = 857}, [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, + [1960] = {.lex_state = 857}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, + [1962] = {.lex_state = 48}, [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 833}, - [1967] = {.lex_state = 0}, + [1964] = {.lex_state = 48}, + [1965] = {.lex_state = 857}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 48}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, + [1969] = {.lex_state = 48}, [1970] = {.lex_state = 0}, [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 0}, + [1972] = {.lex_state = 857}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 0}, @@ -17124,7 +17954,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 37}, + [1981] = {.lex_state = 0}, [1982] = {.lex_state = 0}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, @@ -17142,17 +17972,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, + [1999] = {.lex_state = 857}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0}, + [2004] = {.lex_state = 48}, + [2005] = {.lex_state = 857}, [2006] = {.lex_state = 0}, [2007] = {.lex_state = 0}, [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 43}, + [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, [2011] = {.lex_state = 0}, [2012] = {.lex_state = 0}, @@ -17161,23 +17991,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 5}, + [2018] = {.lex_state = 0}, [2019] = {.lex_state = 0}, [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 37}, + [2021] = {.lex_state = 0}, [2022] = {.lex_state = 0}, [2023] = {.lex_state = 0}, [2024] = {.lex_state = 0}, [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 43}, + [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 42}, + [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0}, + [2032] = {.lex_state = 20}, [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 37}, + [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, @@ -17185,7 +18015,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 37}, + [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, @@ -17193,7 +18023,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 37}, + [2050] = {.lex_state = 0}, [2051] = {.lex_state = 0}, [2052] = {.lex_state = 0}, [2053] = {.lex_state = 0}, @@ -17201,23 +18031,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 37}, + [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, [2060] = {.lex_state = 0}, [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 37}, + [2062] = {.lex_state = 0}, [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 37}, + [2065] = {.lex_state = 0}, [2066] = {.lex_state = 0}, [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 37}, + [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 37}, + [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 37}, + [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, [2076] = {.lex_state = 0}, [2077] = {.lex_state = 0}, @@ -17229,67 +18059,320 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, + [2086] = {.lex_state = 857}, [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 833}, + [2088] = {.lex_state = 857}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 37}, - [2092] = {.lex_state = 0}, + [2091] = {.lex_state = 0}, + [2092] = {.lex_state = 857}, [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 42}, - [2098] = {.lex_state = 42}, - [2099] = {.lex_state = 42}, - [2100] = {.lex_state = 42}, - [2101] = {.lex_state = 42}, - [2102] = {.lex_state = 42}, - [2103] = {.lex_state = 42}, - [2104] = {.lex_state = 42}, - [2105] = {.lex_state = 42}, - [2106] = {.lex_state = 42}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 0}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, [2108] = {.lex_state = 0}, [2109] = {.lex_state = 0}, [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, + [2111] = {.lex_state = 48}, [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, + [2113] = {.lex_state = 53}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 37}, - [2118] = {.lex_state = 37}, - [2119] = {.lex_state = 37}, - [2120] = {.lex_state = 37}, - [2121] = {.lex_state = 37}, - [2122] = {.lex_state = 37}, - [2123] = {.lex_state = 37}, - [2124] = {.lex_state = 37}, - [2125] = {.lex_state = 37}, - [2126] = {.lex_state = 37}, + [2117] = {.lex_state = 0}, + [2118] = {.lex_state = 0}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 0}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 0}, + [2131] = {.lex_state = 0}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 0}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 0}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 0}, + [2148] = {.lex_state = 0}, + [2149] = {.lex_state = 0}, + [2150] = {.lex_state = 0}, + [2151] = {.lex_state = 0}, + [2152] = {.lex_state = 857}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 0}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 0}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 0}, + [2162] = {.lex_state = 48}, + [2163] = {.lex_state = 0}, + [2164] = {.lex_state = 0}, + [2165] = {.lex_state = 0}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 0}, + [2169] = {.lex_state = 0}, + [2170] = {.lex_state = 0}, + [2171] = {.lex_state = 0}, + [2172] = {.lex_state = 54}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 0}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 0}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 0}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 0}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 0}, + [2185] = {.lex_state = 0}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 0}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 0}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 0}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 0}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 0}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 0}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 54}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 0}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 48}, + [2244] = {.lex_state = 48}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 0}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 54}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 0}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 48}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 0}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 0}, + [2270] = {.lex_state = 0}, + [2271] = {.lex_state = 48}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 0}, + [2278] = {.lex_state = 0}, + [2279] = {.lex_state = 0}, + [2280] = {.lex_state = 0}, + [2281] = {.lex_state = 0}, + [2282] = {.lex_state = 48}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 0}, + [2285] = {.lex_state = 16}, + [2286] = {.lex_state = 0}, + [2287] = {.lex_state = 0}, + [2288] = {.lex_state = 0}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 857}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 48}, + [2294] = {.lex_state = 0}, + [2295] = {.lex_state = 0}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 48}, + [2301] = {.lex_state = 0}, + [2302] = {.lex_state = 0}, + [2303] = {.lex_state = 0}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 48}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 0}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 0}, + [2312] = {.lex_state = 48}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 0}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 48}, + [2319] = {.lex_state = 0}, + [2320] = {.lex_state = 0}, + [2321] = {.lex_state = 0}, + [2322] = {.lex_state = 0}, + [2323] = {.lex_state = 0}, + [2324] = {.lex_state = 48}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 0}, + [2327] = {.lex_state = 0}, + [2328] = {.lex_state = 0}, + [2329] = {.lex_state = 0}, + [2330] = {.lex_state = 0}, + [2331] = {.lex_state = 0}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 0}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 857}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 0}, + [2339] = {.lex_state = 0}, + [2340] = {.lex_state = 0}, + [2341] = {.lex_state = 0}, + [2342] = {.lex_state = 0}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 0}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0}, + [2348] = {.lex_state = 0}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 53}, + [2351] = {.lex_state = 53}, + [2352] = {.lex_state = 53}, + [2353] = {.lex_state = 53}, + [2354] = {.lex_state = 53}, + [2355] = {.lex_state = 53}, + [2356] = {.lex_state = 53}, + [2357] = {.lex_state = 53}, + [2358] = {.lex_state = 53}, + [2359] = {.lex_state = 53}, + [2360] = {.lex_state = 0}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 0}, + [2363] = {.lex_state = 0}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 0}, + [2366] = {.lex_state = 0}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 0}, + [2369] = {.lex_state = 0}, + [2370] = {.lex_state = 48}, + [2371] = {.lex_state = 48}, + [2372] = {.lex_state = 48}, + [2373] = {.lex_state = 48}, + [2374] = {.lex_state = 48}, + [2375] = {.lex_state = 48}, + [2376] = {.lex_state = 48}, + [2377] = {.lex_state = 48}, + [2378] = {.lex_state = 48}, + [2379] = {.lex_state = 48}, }; 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_drop_type_statement_token1] = ACTIONS(1), + [aux_sym_drop_type_statement_token2] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [aux_sym_drop_type_statement_token3] = ACTIONS(1), + [aux_sym_drop_type_statement_token4] = ACTIONS(1), [aux_sym_update_statement_token1] = ACTIONS(1), [aux_sym_update_statement_token2] = ACTIONS(1), [aux_sym_update_statement_token3] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), [aux_sym_update_statement_token4] = ACTIONS(1), [aux_sym_drop_function_statement_token1] = ACTIONS(1), - [aux_sym_drop_function_statement_token2] = ACTIONS(1), - [aux_sym_drop_function_statement_token3] = ACTIONS(1), - [aux_sym_drop_function_statement_token4] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [aux_sym_create_type_statement_token1] = ACTIONS(1), [aux_sym_create_type_statement_token2] = ACTIONS(1), - [aux_sym_create_type_statement_token3] = ACTIONS(1), [aux_sym_insert_statement_token2] = ACTIONS(1), [aux_sym_insert_items_token1] = ACTIONS(1), [aux_sym_insert_items_token2] = ACTIONS(1), @@ -17358,6 +18441,7 @@ 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_open_cursor_statement_token1] = ACTIONS(1), [aux_sym_get_diagnostics_statement_token1] = ACTIONS(1), [aux_sym_get_diagnostics_statement_token2] = ACTIONS(1), [aux_sym_get_diagnostics_statement_token3] = ACTIONS(1), @@ -17407,11 +18491,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_if_not_exists_token1] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), + [aux_sym__type_token1] = ACTIONS(1), + [aux_sym__type_token2] = ACTIONS(1), [aux_sym_predefined_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_array_constructor_token1] = ACTIONS(1), [aux_sym_time_expression_token1] = ACTIONS(1), [aux_sym_time_expression_token2] = ACTIONS(1), [aux_sym_time_expression_token3] = ACTIONS(1), @@ -17458,29 +18545,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2008), - [sym__statement] = STATE(2006), - [sym_update_statement] = STATE(2006), - [sym_drop_function_statement] = STATE(2006), - [sym_create_type_statement] = STATE(2006), - [sym_insert_statement] = STATE(2006), - [sym_create_table_statement] = STATE(2006), - [sym_create_schema_statement] = STATE(2006), - [sym_create_index_statement] = STATE(2006), - [sym_delete_statement] = STATE(2006), - [sym_alter_table_statement] = STATE(2006), - [sym_grant_statement] = STATE(2006), - [sym_psql_statement] = STATE(919), - [sym_create_sequence_statement] = STATE(2006), - [sym_create_trigger_statement] = STATE(2006), - [sym_do_block] = STATE(2006), - [sym_select_statement] = STATE(2006), - [sym_with_query] = STATE(1312), - [sym_create_function_statement] = STATE(2006), - [aux_sym_source_file_repeat1] = STATE(534), + [sym_source_file] = STATE(2332), + [sym__statement] = STATE(2331), + [sym_drop_type_statement] = STATE(2331), + [sym_update_statement] = STATE(2331), + [sym_drop_function_statement] = STATE(2331), + [sym_create_type_statement] = STATE(2331), + [sym_insert_statement] = STATE(2331), + [sym_create_table_statement] = STATE(2331), + [sym_create_schema_statement] = STATE(2331), + [sym_create_index_statement] = STATE(2331), + [sym_delete_statement] = STATE(2331), + [sym_alter_table_statement] = STATE(2331), + [sym_grant_statement] = STATE(2331), + [sym_psql_statement] = STATE(1069), + [sym_create_sequence_statement] = STATE(2331), + [sym_create_trigger_statement] = STATE(2331), + [sym_do_block] = STATE(2331), + [sym_select_statement] = STATE(2331), + [sym_with_query] = STATE(1545), + [sym_create_function_statement] = STATE(2331), + [aux_sym_source_file_repeat1] = STATE(690), [ts_builtin_sym_end] = ACTIONS(5), - [aux_sym_update_statement_token1] = ACTIONS(7), - [aux_sym_drop_function_statement_token1] = ACTIONS(9), + [aux_sym_drop_type_statement_token1] = ACTIONS(7), + [aux_sym_update_statement_token1] = ACTIONS(9), [aux_sym_create_type_statement_token1] = ACTIONS(11), [aux_sym_insert_statement_token1] = ACTIONS(13), [aux_sym_insert_conflict_token3] = ACTIONS(15), @@ -17494,22 +18582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [anon_sym_SEMI] = ACTIONS(29), + [aux_sym_drop_type_statement_token1] = ACTIONS(29), + [aux_sym_drop_type_statement_token2] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(29), + [aux_sym_drop_type_statement_token3] = ACTIONS(29), + [aux_sym_drop_type_statement_token4] = ACTIONS(29), [aux_sym_update_statement_token2] = ACTIONS(29), [aux_sym_update_statement_token3] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(29), [aux_sym_update_statement_token4] = ACTIONS(29), - [aux_sym_drop_function_statement_token1] = ACTIONS(29), - [aux_sym_drop_function_statement_token3] = ACTIONS(29), - [aux_sym_drop_function_statement_token4] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(29), [anon_sym_RPAREN] = ACTIONS(29), - [aux_sym_create_type_statement_token2] = ACTIONS(29), [aux_sym_insert_statement_token2] = ACTIONS(29), [aux_sym_insert_items_token1] = ACTIONS(29), [aux_sym_insert_items_token2] = ACTIONS(29), [aux_sym_insert_conflict_token1] = ACTIONS(29), [aux_sym_insert_conflict_token3] = ACTIONS(29), [aux_sym_conflict_target_token1] = ACTIONS(29), + [aux_sym_update_set_token1] = ACTIONS(29), [aux_sym_returning_token1] = ACTIONS(29), [aux_sym_schema_role_token1] = ACTIONS(29), [aux_sym_create_index_statement_token1] = ACTIONS(29), @@ -17521,7 +18610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constraint_when_token1] = ACTIONS(29), [aux_sym_table_constraint_ty_token1] = ACTIONS(29), [aux_sym_table_constraint_ty_token2] = ACTIONS(29), - [aux_sym_table_constraint_ty_token4] = ACTIONS(29), [aux_sym_constraint_foreign_key_token1] = ACTIONS(29), [aux_sym_fk_ref_action_token1] = ACTIONS(31), [aux_sym_alter_table_rename_column_token1] = ACTIONS(29), @@ -17538,6 +18626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_trigger_when_token1] = ACTIONS(29), [aux_sym_trigger_when_token2] = ACTIONS(29), [aux_sym_trigger_when_token3] = ACTIONS(29), + [aux_sym_trigger_scope_token1] = ACTIONS(29), + [aux_sym_trigger_scope_token3] = ACTIONS(29), + [aux_sym_trigger_exec_token1] = ACTIONS(29), + [aux_sym_trigger_cond_token1] = ACTIONS(29), [aux_sym_for_statement_token2] = ACTIONS(29), [aux_sym_select_statement_token1] = ACTIONS(29), [aux_sym_select_having_token1] = ACTIONS(29), @@ -17589,6 +18681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_volatility_token2] = ACTIONS(33), [aux_sym_function_volatility_token3] = ACTIONS(33), [aux_sym_where_filter_token1] = ACTIONS(33), + [anon_sym_RBRACK] = ACTIONS(33), [sym_comment] = ACTIONS(3), [aux_sym__interval_fields_token1] = ACTIONS(33), [aux_sym__interval_fields_token2] = ACTIONS(33), @@ -17657,6 +18750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_volatility_token2] = ACTIONS(37), [aux_sym_function_volatility_token3] = ACTIONS(37), [aux_sym_where_filter_token1] = ACTIONS(37), + [anon_sym_RBRACK] = ACTIONS(37), [sym_comment] = ACTIONS(3), [aux_sym__interval_fields_token1] = ACTIONS(37), [aux_sym__interval_fields_token2] = ACTIONS(37), @@ -17700,24 +18794,1361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 10, + [0] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, + aux_sym__interval_fields_token1, + ACTIONS(49), 1, + aux_sym__interval_fields_token3, + ACTIONS(51), 1, + aux_sym__interval_fields_token4, + ACTIONS(53), 1, + aux_sym__interval_fields_token5, + STATE(126), 1, + sym__interval_fields, + ACTIONS(47), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, sym_cast, - STATE(123), 1, + aux_sym_and_token1, + [82] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, + STATE(856), 1, sym_comparison_op, - STATE(625), 2, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(871), 2, sym_and, sym_or, + ACTIONS(57), 4, + aux_sym_alter_column_action_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 45, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [174] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_alter_column_action_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 46, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_precision, + ACTIONS(73), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [336] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + sym_cast, + ACTIONS(105), 1, + aux_sym_and_token1, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(95), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(75), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [446] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_alter_column_action_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [542] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(109), 1, + aux_sym_alter_column_action_token1, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(107), 21, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + aux_sym_and_token1, + [648] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(57), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 47, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [732] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_alter_column_action_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 36, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [826] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(57), 2, + aux_sym_alter_column_action_token1, + aux_sym_comparison_kw_token1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [926] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_alter_column_action_token1, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 21, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + aux_sym_and_token1, + [1032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(109), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 48, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [1116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + sym_cast, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(57), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 48, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [1200] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(115), 1, + aux_sym_alter_column_action_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 19, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + [1310] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(57), 4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [1408] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(57), 6, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [1496] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 35, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [1590] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(119), 1, + aux_sym__interval_fields_token1, + ACTIONS(123), 1, + aux_sym__interval_fields_token3, + ACTIONS(125), 1, + aux_sym__interval_fields_token4, + ACTIONS(127), 1, + aux_sym__interval_fields_token5, + STATE(114), 1, + sym__interval_fields, + ACTIONS(121), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, ACTIONS(43), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -17726,7 +20157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 47, + ACTIONS(41), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -17773,151 +20204,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, aux_sym_and_token1, - [84] = 23, + [1672] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(103), 1, sym_cast, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - STATE(123), 1, + STATE(155), 1, sym_comparison_null, - STATE(626), 1, + STATE(734), 1, sym_other_op, - STATE(629), 1, + STATE(735), 1, sym_comparison_kw, - STATE(633), 1, + STATE(737), 1, sym_contains_op, - STATE(635), 1, + STATE(738), 1, sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - STATE(625), 2, + STATE(847), 2, sym_and, sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(67), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [194] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(51), 1, + ACTIONS(109), 7, aux_sym_grant_targets_token4, - ACTIONS(53), 1, aux_sym_trigger_event_token2, - ACTIONS(57), 1, anon_sym_SLASH, - ACTIONS(59), 1, anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(67), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + aux_sym_comparison_kw_token1, + ACTIONS(107), 47, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -17927,7 +20279,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 20, + aux_sym_and_token1, + [1756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(57), 2, + aux_sym_trigger_event_token2, + aux_sym_comparison_kw_token1, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -17948,674 +20356,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [304] = 22, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [1858] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(51), 1, + ACTIONS(79), 1, aux_sym_grant_targets_token4, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, ACTIONS(81), 1, aux_sym_trigger_event_token2, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(67), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [412] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(57), 1, + ACTIONS(85), 1, anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [504] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(81), 2, - aux_sym_trigger_event_token2, - aux_sym_comparison_kw_token1, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [606] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 35, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [700] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [798] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - ACTIONS(57), 1, - anon_sym_SLASH, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [886] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - sym_cast, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(81), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 47, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [970] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - aux_sym_trigger_event_token2, - ACTIONS(45), 1, - sym_cast, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(57), 1, - anon_sym_SLASH, - ACTIONS(59), 1, - anon_sym_DASH, - ACTIONS(61), 1, - anon_sym_PLUS, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - STATE(123), 1, - sym_comparison_null, - STATE(626), 1, - sym_other_op, - STATE(629), 1, - sym_comparison_kw, - STATE(633), 1, - sym_contains_op, - STATE(635), 1, - sym_comparison_op, - ACTIONS(55), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - STATE(625), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(67), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [1078] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(87), 1, - aux_sym__interval_fields_token1, - ACTIONS(91), 1, - aux_sym__interval_fields_token3, - ACTIONS(93), 1, - aux_sym__interval_fields_token4, - ACTIONS(95), 1, - aux_sym__interval_fields_token5, - STATE(107), 1, - sym__interval_fields, - ACTIONS(89), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 7, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + sym_cast, + ACTIONS(105), 1, + aux_sym_and_token1, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(95), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [1968] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, + anon_sym_PLUS, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(57), 5, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(83), 48, + ACTIONS(55), 44, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -18637,9 +20505,6 @@ 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, @@ -18662,128 +20527,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, aux_sym_and_token1, - [1160] = 12, + [2060] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_alter_column_action_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 45, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, + ACTIONS(57), 1, aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(85), 1, + anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_DASH, + ACTIONS(89), 1, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + sym_cast, + STATE(155), 1, + sym_comparison_null, + STATE(734), 1, + sym_other_op, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(847), 2, + sym_and, + sym_or, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(95), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [1247] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(81), 2, - aux_sym_alter_column_action_token1, - aux_sym_comparison_kw_token1, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -18793,91 +20592,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 26, + ACTIONS(55), 21, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, aux_sym_and_token1, - [1346] = 23, + [2168] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(85), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(87), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(89), 1, anon_sym_PLUS, - ACTIONS(107), 1, - aux_sym_alter_column_action_token1, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + sym_cast, ACTIONS(109), 1, aux_sym_trigger_event_token2, - STATE(153), 1, + STATE(155), 1, sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, + STATE(734), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + STATE(735), 1, + sym_comparison_kw, + STATE(737), 1, + sym_contains_op, + STATE(738), 1, + sym_comparison_op, + ACTIONS(83), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(847), 2, sym_and, sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(111), 4, + ACTIONS(95), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -18887,127 +20678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - [1455] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 20, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [1560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 54, + ACTIONS(107), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -19023,14 +20699,51 @@ 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__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, + aux_sym_and_token1, + [2276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(133), 1, + anon_sym_LBRACK, + STATE(37), 1, + aux_sym__type_repeat1, + ACTIONS(135), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(129), 50, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -19056,7 +20769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [1629] = 3, + [2351] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 7, @@ -19122,496 +20835,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [1698] = 14, + [2420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(81), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 44, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, + ACTIONS(39), 7, aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [1789] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(81), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 35, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [1882] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 31, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [1977] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(101), 1, - sym_cast, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(79), 47, + ACTIONS(37), 54, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [2060] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - aux_sym_alter_column_action_token1, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 20, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [2165] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(101), 1, - sym_cast, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(43), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 47, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [2248] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, aux_sym__interval_fields_token1, - ACTIONS(117), 1, - aux_sym__interval_fields_token3, - ACTIONS(119), 1, - aux_sym__interval_fields_token4, - ACTIONS(121), 1, - aux_sym__interval_fields_token5, - STATE(140), 1, - sym__interval_fields, - ACTIONS(115), 2, aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - ACTIONS(85), 6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(83), 48, + ACTIONS(137), 53, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token2, aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_items_token1, @@ -19619,6 +20923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, aux_sym_returning_token1, aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, @@ -19631,6 +20936,471 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_if_statement_token2, aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(149), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_precision, + ACTIONS(73), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(151), 1, + anon_sym_LBRACK, + STATE(52), 1, + aux_sym__type_repeat1, + ACTIONS(153), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(129), 47, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(133), 1, + anon_sym_LBRACK, + STATE(38), 1, + aux_sym__type_repeat1, + ACTIONS(157), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 1, + anon_sym_LBRACK, + STATE(38), 1, + aux_sym__type_repeat1, + ACTIONS(161), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [2980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(168), 1, + anon_sym_LPAREN, + ACTIONS(172), 1, + anon_sym_DOT, + ACTIONS(174), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(166), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -19658,7 +21428,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [2329] = 3, + [3052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(137), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3118] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -19678,15 +21511,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, + aux_sym_create_index_statement_token1, aux_sym_index_using_token1, aux_sym_index_col_dir_token1, aux_sym_index_col_dir_token2, aux_sym_index_col_nulls_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_table_constraint_ty_token4, aux_sym_trigger_event_token2, - aux_sym_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, @@ -19721,535 +21554,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [2395] = 6, + [3184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - anon_sym_LPAREN, - ACTIONS(129), 1, - anon_sym_DOT, - ACTIONS(131), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 7, + ACTIONS(31), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(123), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [2467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 51, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_DOT, - aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [2533] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_update_statement_token2, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(155), 1, - sym__identifier, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - STATE(874), 1, - sym_identifier, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(147), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(149), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(137), 10, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [2647] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - sym_cast, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(81), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [2726] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(147), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(149), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(41), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(43), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [2829] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(81), 2, - aux_sym_update_set_token1, - aux_sym_comparison_kw_token1, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [2926] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [3013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, - aux_sym_alter_column_action_token1, - anon_sym_DOT, - anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, ACTIONS(29), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_alter_column_action_token1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -20272,6 +21651,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_if_statement_token2, aux_sym_where_filter_token1, + anon_sym_RBRACK, aux_sym_time_expression_token1, anon_sym_STAR, anon_sym_PERCENT, @@ -20300,23 +21680,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [3078] = 9, + [3316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(167), 1, - aux_sym__interval_fields_token1, - ACTIONS(171), 1, - aux_sym__interval_fields_token3, - ACTIONS(173), 1, - aux_sym__interval_fields_token4, - ACTIONS(175), 1, - aux_sym__interval_fields_token5, - STATE(211), 1, - sym__interval_fields, - ACTIONS(169), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(83), 25, + ACTIONS(147), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3382] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(178), 1, + aux_sym_update_statement_token2, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(198), 1, + sym__identifier, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + STATE(1039), 1, + sym_identifier, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(190), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(192), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(176), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(180), 10, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [3496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_DOT, + aux_sym_time_expression_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 52, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(200), 1, + anon_sym_LPAREN, + ACTIONS(202), 1, + anon_sym_DOT, + ACTIONS(204), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(166), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [3832] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(115), 1, + aux_sym_update_set_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(214), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + [3939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(151), 1, + anon_sym_LBRACK, + STATE(54), 1, + aux_sym__type_repeat1, + ACTIONS(157), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [4008] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(55), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -20341,8 +22338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(85), 25, + ACTIONS(57), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -20368,55 +22364,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [3155] = 17, + [4087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(218), 1, + anon_sym_LBRACK, + STATE(54), 1, + aux_sym__type_repeat1, + ACTIONS(161), 7, aux_sym_grant_targets_token4, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + aux_sym_trigger_event_token2, anon_sym_SLASH, - ACTIONS(163), 1, anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 4, - aux_sym_update_set_token1, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 27, + ACTIONS(159), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -20424,63 +22387,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, + aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [3248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(179), 1, - anon_sym_DOT, - ACTIONS(181), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(123), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_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, @@ -20509,25 +22428,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [3319] = 10, + [4156] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, sym_cast, - STATE(200), 1, + STATE(320), 1, sym_comparison_null, - STATE(640), 1, + STATE(743), 1, sym_comparison_op, - STATE(644), 1, + STATE(744), 1, sym_contains_op, - STATE(647), 1, + STATE(745), 1, sym_comparison_kw, - STATE(648), 1, + STATE(750), 1, sym_other_op, - STATE(649), 2, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(751), 2, sym_and, sym_or, - ACTIONS(41), 24, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [4245] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(221), 1, + aux_sym__interval_fields_token1, + ACTIONS(225), 1, + aux_sym__interval_fields_token3, + ACTIONS(227), 1, + aux_sym__interval_fields_token4, + ACTIONS(229), 1, + aux_sym__interval_fields_token5, + STATE(345), 1, + sym__interval_fields, + ACTIONS(223), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(41), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -20552,6 +22543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, ACTIONS(43), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, @@ -20578,25 +22570,394 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [3398] = 10, + [4322] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, sym_cast, - STATE(200), 1, + STATE(332), 1, sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, + STATE(777), 1, sym_other_op, - STATE(649), 2, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, sym_and, sym_or, - ACTIONS(79), 24, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(57), 4, + aux_sym_update_set_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [4415] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(55), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 17, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [4510] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(55), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [4597] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(109), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [4676] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [4765] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(107), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -20621,7 +22982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 25, + ACTIONS(109), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -20647,24 +23008,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [3477] = 10, + [4844] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(157), 1, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, sym_cast, - STATE(229), 1, + STATE(320), 1, sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, + STATE(743), 1, sym_comparison_op, - STATE(594), 2, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(751), 2, sym_and, sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 19, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [4935] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(57), 6, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [5018] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(231), 1, + aux_sym__interval_fields_token1, + ACTIONS(235), 1, + aux_sym__interval_fields_token3, + ACTIONS(237), 1, + aux_sym__interval_fields_token4, + ACTIONS(239), 1, + aux_sym__interval_fields_token5, + STATE(351), 1, + sym__interval_fields, + ACTIONS(233), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, ACTIONS(43), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, @@ -20673,228 +23178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [3556] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [3639] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - ACTIONS(153), 1, - aux_sym_and_token1, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(147), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(149), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(47), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(107), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym__identifier, - [3746] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(183), 1, - aux_sym__interval_fields_token1, - ACTIONS(187), 1, - aux_sym__interval_fields_token3, - ACTIONS(189), 1, - aux_sym__interval_fields_token4, - ACTIONS(191), 1, - aux_sym__interval_fields_token5, - STATE(224), 1, - sym__interval_fields, - ACTIONS(185), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(83), 43, + ACTIONS(41), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -20938,61 +23222,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [3823] = 22, + [5095] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(57), 1, aux_sym_update_set_token1, - ACTIONS(51), 1, + ACTIONS(79), 1, aux_sym_grant_targets_token4, - ACTIONS(69), 1, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + ACTIONS(208), 1, anon_sym_SLASH, - ACTIONS(163), 1, + ACTIONS(210), 1, anon_sym_DASH, - ACTIONS(165), 1, + ACTIONS(212), 1, anon_sym_PLUS, - STATE(229), 1, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, sym_comparison_null, - STATE(596), 1, + STATE(777), 1, sym_other_op, - STATE(599), 1, + STATE(782), 1, sym_comparison_kw, - STATE(602), 1, + STATE(794), 1, sym_contains_op, - STATE(603), 1, + STATE(795), 1, sym_comparison_op, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(159), 2, + ACTIONS(206), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(594), 2, + STATE(873), 2, sym_and, sym_or, - ACTIONS(65), 3, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, + ACTIONS(214), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -21002,7 +23286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 16, + ACTIONS(55), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -21019,596 +23303,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token2, aux_sym_where_filter_token1, aux_sym_and_token1, - [3926] = 15, + [5198] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_update_set_token1, + ACTIONS(79), 1, aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [4015] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(81), 1, - aux_sym_update_set_token1, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [4118] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(79), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 17, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [4213] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [4300] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(147), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(149), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(79), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [4403] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [4486] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_SLASH, - ACTIONS(143), 1, - anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(139), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [4575] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(107), 1, - aux_sym_update_set_token1, ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + aux_sym_update_set_token1, + ACTIONS(208), 1, anon_sym_SLASH, - ACTIONS(163), 1, + ACTIONS(210), 1, anon_sym_DASH, - ACTIONS(165), 1, + ACTIONS(212), 1, anon_sym_PLUS, - STATE(229), 1, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, sym_comparison_null, - STATE(596), 1, + STATE(777), 1, sym_other_op, - STATE(599), 1, + STATE(782), 1, sym_comparison_kw, - STATE(602), 1, + STATE(794), 1, sym_contains_op, - STATE(603), 1, + STATE(795), 1, sym_comparison_op, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(159), 2, + ACTIONS(206), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(594), 2, + STATE(873), 2, sym_and, sym_or, - ACTIONS(65), 3, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, + ACTIONS(214), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -21618,7 +23367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 14, + ACTIONS(107), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -21628,44 +23377,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_index_using_token1, aux_sym_index_col_dir_token1, aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_offset_token2, aux_sym_where_filter_token1, - [4682] = 16, + aux_sym_and_token1, + [5301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(157), 6, + aux_sym_alter_column_action_token1, anon_sym_SLASH, - ACTIONS(143), 1, anon_sym_DASH, - ACTIONS(145), 1, - anon_sym_PLUS, - ACTIONS(151), 1, - sym_cast, - STATE(200), 1, - sym_comparison_null, - STATE(640), 1, - sym_comparison_op, - STATE(644), 1, - sym_contains_op, - STATE(647), 1, - sym_comparison_kw, - STATE(648), 1, - sym_other_op, - ACTIONS(139), 2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, - STATE(649), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(73), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -21675,20 +23444,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, + sym_cast, + aux_sym_and_token1, + [5366] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + ACTIONS(196), 1, + aux_sym_and_token1, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(190), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(192), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(113), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(115), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [5473] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(57), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(81), 19, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [5552] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(190), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(192), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(107), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(109), 14, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -21701,46 +23677,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [5655] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(184), 1, + anon_sym_SLASH, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(55), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [4773] = 15, + [5738] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(81), 4, + ACTIONS(79), 1, aux_sym_grant_targets_token4, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(57), 2, + aux_sym_update_set_token1, + aux_sym_comparison_kw_token1, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -21750,898 +23805,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [4861] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [4943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, + ACTIONS(55), 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_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [5009] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(211), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, aux_sym_and_token1, - [5109] = 4, + [5835] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(184), 1, anon_sym_SLASH, + ACTIONS(186), 1, anon_sym_DASH, + ACTIONS(188), 1, + anon_sym_PLUS, + ACTIONS(194), 1, + sym_cast, + STATE(320), 1, + sym_comparison_null, + STATE(743), 1, + sym_comparison_op, + STATE(744), 1, + sym_contains_op, + STATE(745), 1, + sym_comparison_kw, + STATE(750), 1, + sym_other_op, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(190), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(192), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(751), 2, + sym_and, + sym_or, + ACTIONS(55), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 14, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, aux_sym_and_token1, - [5175] = 21, + sym__identifier, + [5938] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(197), 1, + ACTIONS(208), 1, anon_sym_SLASH, - ACTIONS(199), 1, + ACTIONS(210), 1, anon_sym_DASH, - ACTIONS(201), 1, + ACTIONS(212), 1, anon_sym_PLUS, - ACTIONS(203), 1, + ACTIONS(216), 1, sym_cast, - STATE(246), 1, + STATE(332), 1, sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, + STATE(777), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(195), 2, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(206), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(641), 2, + STATE(873), 2, sym_and, sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(211), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [5275] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(211), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [5379] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [5471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(215), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [5537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [5603] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(81), 1, - aux_sym_comparison_kw_token1, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [5699] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(81), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [5785] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [5863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 7, + ACTIONS(57), 5, aux_sym_update_set_token1, aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(33), 49, + ACTIONS(55), 39, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22658,15 +23959,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_offset_token2, aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, @@ -22689,9 +23981,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, aux_sym_and_token1, - [5927] = 3, + [6025] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(249), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_and_token1, + [6125] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -22752,10 +24122,382 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [5991] = 3, + [6189] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 7, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(109), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [6267] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(253), 1, + aux_sym_update_statement_token2, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + STATE(1039), 1, + sym_identifier, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(263), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(265), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(176), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(180), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [6379] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(269), 1, + aux_sym__interval_fields_token1, + ACTIONS(273), 1, + aux_sym__interval_fields_token3, + ACTIONS(275), 1, + aux_sym__interval_fields_token4, + ACTIONS(277), 1, + aux_sym__interval_fields_token5, + STATE(388), 1, + sym__interval_fields, + ACTIONS(271), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [6455] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [6543] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(249), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(107), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_and_token1, + [6643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -22763,7 +24505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(37), 49, + ACTIONS(33), 49, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22813,113 +24555,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [6055] = 23, + [6707] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(197), 1, - anon_sym_SLASH, - ACTIONS(199), 1, - anon_sym_DASH, - ACTIONS(201), 1, - anon_sym_PLUS, - ACTIONS(203), 1, + ACTIONS(251), 1, sym_cast, - STATE(246), 1, + STATE(354), 1, sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, + STATE(793), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(195), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(641), 2, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + STATE(792), 2, sym_and, sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(211), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [6159] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - sym_cast, - STATE(246), 1, - sym_comparison_null, - STATE(628), 1, - sym_comparison_op, - STATE(632), 1, - sym_contains_op, - STATE(638), 1, - sym_comparison_kw, - STATE(639), 1, - sym_other_op, - STATE(641), 2, - sym_and, - sym_or, - ACTIONS(43), 6, + ACTIONS(57), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 42, + ACTIONS(55), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22962,149 +24623,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, aux_sym_and_token1, - [6237] = 9, + [6785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 1, - aux_sym__interval_fields_token1, - ACTIONS(223), 1, - aux_sym__interval_fields_token3, - ACTIONS(225), 1, - aux_sym__interval_fields_token4, - ACTIONS(227), 1, - aux_sym__interval_fields_token5, - STATE(245), 1, - sym__interval_fields, - ACTIONS(221), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 6, - aux_sym_grant_targets_token4, + ACTIONS(283), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(83), 43, + ACTIONS(279), 49, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [6313] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(229), 1, - aux_sym_update_statement_token2, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - STATE(874), 1, - sym_identifier, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(239), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(241), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(137), 8, aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [6851] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(249), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(75), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [6955] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(285), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - ACTIONS(73), 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -23114,7 +24826,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [6425] = 3, + sym_cast, + aux_sym_and_token1, + [7021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(287), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [7087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [7153] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [7235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [7301] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_comparison_kw_token1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [7397] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [7483] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(319), 1, + aux_sym_for_statement_token3, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(327), 1, + aux_sym_if_statement_token5, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + STATE(1371), 1, + aux_sym_if_statement_repeat1, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + ACTIONS(325), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + STATE(145), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2033), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [7599] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(37), 25, @@ -23175,46 +25381,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [6489] = 14, + [7663] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(81), 4, + ACTIONS(79), 1, aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, + sym_cast, + STATE(354), 1, + sym_comparison_null, + STATE(793), 1, + sym_other_op, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 38, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(241), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(792), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(249), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_trigger_event_token2, + aux_sym_index_using_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -23223,633 +25462,41 @@ 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_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [6574] = 12, + [7767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [6655] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(239), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(241), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(47), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(107), 10, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym__identifier, - [6760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(255), 1, + ACTIONS(337), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_alter_column_action_token1, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 48, + ACTIONS(279), 48, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [6825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(257), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [6890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [6955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(261), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [7020] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(133), 1, - anon_sym_COMMA, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(263), 1, - aux_sym_update_statement_token2, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - STATE(874), 1, - sym_identifier, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(273), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(275), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(137), 9, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - [7131] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(239), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(241), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(41), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(43), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [7232] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(43), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(41), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -23857,8 +25504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -23870,262 +25522,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [7309] = 9, + sym_cast, + aux_sym_and_token1, + [7833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(39), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(37), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, aux_sym__interval_fields_token1, - ACTIONS(283), 1, - aux_sym__interval_fields_token3, - ACTIONS(285), 1, - aux_sym__interval_fields_token4, - ACTIONS(287), 1, - aux_sym__interval_fields_token5, - STATE(317), 1, - sym__interval_fields, - ACTIONS(281), 2, aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(83), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [7384] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(43), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [7461] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(289), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [7560] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(291), 1, - aux_sym__interval_fields_token1, - ACTIONS(295), 1, aux_sym__interval_fields_token3, - ACTIONS(297), 1, aux_sym__interval_fields_token4, - ACTIONS(299), 1, aux_sym__interval_fields_token5, - STATE(320), 1, - sym__interval_fields, - ACTIONS(293), 2, - aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, - ACTIONS(85), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(83), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -24133,8 +25565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -24147,125 +25584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [7635] = 22, + aux_sym_and_token1, + [7897] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, ACTIONS(243), 1, + anon_sym_SLASH, + ACTIONS(245), 1, + anon_sym_DASH, + ACTIONS(247), 1, + anon_sym_PLUS, + ACTIONS(251), 1, sym_cast, - STATE(302), 1, + STATE(354), 1, sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, + STATE(793), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(239), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, + STATE(812), 1, + sym_comparison_kw, + STATE(816), 1, + sym_contains_op, + STATE(819), 1, + sym_comparison_op, ACTIONS(241), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(79), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [7736] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(231), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(598), 2, + STATE(792), 2, sym_and, sym_or, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(57), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -24275,472 +25632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [7821] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(79), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 15, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [7914] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [7991] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [8072] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [8163] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(81), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 29, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [8250] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(81), 1, - aux_sym_comparison_kw_token1, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [8345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(33), 49, + ACTIONS(55), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -24757,12 +25649,51 @@ 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__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [7989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -24790,7 +25721,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [8408] = 3, + [8053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(339), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(343), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(347), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(351), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -24850,109 +26145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [8471] = 21, + [8500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(35), 6, aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(289), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_and_token1, - [8570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(301), 48, + ACTIONS(33), 49, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -24961,6 +26172,12 @@ 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__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -24988,1358 +26205,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [8633] = 3, + [8563] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(307), 7, - aux_sym_grant_targets_token4, + ACTIONS(81), 1, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(305), 48, - anon_sym_SEMI, + ACTIONS(176), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [8696] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(289), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [8799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(309), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [8862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(313), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [8925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(317), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [8988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(325), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(329), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9177] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_PLUS, - ACTIONS(253), 1, - sym_cast, - STATE(313), 1, - sym_comparison_null, - STATE(579), 1, - sym_comparison_op, - STATE(580), 1, - sym_contains_op, - STATE(583), 1, - sym_comparison_kw, - STATE(584), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(587), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(289), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [9280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9343] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + ACTIONS(196), 1, aux_sym_and_token1, + ACTIONS(198), 1, sym__identifier, - [9430] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_SLASH, - ACTIONS(235), 1, - anon_sym_DASH, - ACTIONS(237), 1, - anon_sym_PLUS, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - ACTIONS(231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 17, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [9519] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(243), 1, - sym_cast, - STATE(302), 1, - sym_comparison_null, - STATE(588), 1, - sym_comparison_op, - STATE(593), 1, - sym_contains_op, - STATE(595), 1, - sym_comparison_kw, - STATE(597), 1, - sym_other_op, - STATE(598), 2, - sym_and, - sym_or, - ACTIONS(81), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [9596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(333), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(337), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(349), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [9974] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, ACTIONS(355), 1, - anon_sym_COMMA, + aux_sym_update_statement_token2, ACTIONS(359), 1, anon_sym_SLASH, ACTIONS(361), 1, anon_sym_DASH, ACTIONS(363), 1, anon_sym_PLUS, - ACTIONS(367), 1, + ACTIONS(369), 1, sym_cast, - STATE(350), 1, + STATE(459), 1, sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, + STATE(753), 1, sym_comparison_op, - STATE(933), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + STATE(1039), 1, + sym_identifier, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, ACTIONS(357), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(353), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [10080] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_COMMA, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(273), 2, + ACTIONS(365), 2, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(275), 2, + ACTIONS(367), 2, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - STATE(600), 2, + STATE(760), 2, sym_and, sym_or, - ACTIONS(51), 4, + ACTIONS(79), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -26349,8 +26279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(107), 11, - aux_sym_update_statement_token2, + ACTIONS(180), 9, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -26360,8 +26289,4096 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + [8674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(371), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(347), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8800] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(375), 1, + aux_sym__interval_fields_token1, + ACTIONS(379), 1, + aux_sym__interval_fields_token3, + ACTIONS(381), 1, + aux_sym__interval_fields_token4, + ACTIONS(383), 1, + aux_sym__interval_fields_token5, + STATE(390), 1, + sym__interval_fields, + ACTIONS(377), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym_precision, + ACTIONS(73), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [8942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(387), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [9005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [9068] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(391), 1, + sym_cast, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(109), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [9145] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(401), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(107), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_and_token1, + [9244] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(391), 1, + sym_cast, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(57), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [9321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [9384] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [9465] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(57), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [9556] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 29, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [9643] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_comparison_kw_token1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [9738] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(57), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 38, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [9823] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(401), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_and_token1, + [9922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(387), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [9985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10237] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(57), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, sym__identifier, - [10184] = 3, + ACTIONS(55), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [10314] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(401), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [10417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10480] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(55), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [10561] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 1, + anon_sym_LPAREN, + STATE(206), 1, + sym_precision, + ACTIONS(73), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [10628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [10691] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 17, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [10780] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 21, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [10867] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(55), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 15, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [10960] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(55), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 21, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [11045] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(263), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(265), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(55), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [11146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(421), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11335] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(432), 1, + aux_sym_update_statement_token1, + ACTIONS(435), 1, + aux_sym_create_type_statement_token1, + ACTIONS(438), 1, + aux_sym_insert_statement_token1, + ACTIONS(441), 1, + aux_sym_insert_conflict_token3, + ACTIONS(444), 1, + aux_sym_delete_statement_token1, + ACTIONS(447), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(450), 1, + aux_sym_grant_statement_token1, + ACTIONS(453), 1, + anon_sym_BSLASH, + ACTIONS(456), 1, + aux_sym_sequence_start_token2, + ACTIONS(459), 1, + aux_sym_trigger_scope_token1, + ACTIONS(462), 1, + aux_sym_trigger_exec_token1, + ACTIONS(465), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(468), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(473), 1, + aux_sym_raise_statement_token1, + ACTIONS(476), 1, + aux_sym_if_statement_token1, + ACTIONS(479), 1, + aux_sym_return_statement_token1, + ACTIONS(482), 1, + aux_sym_perform_statement_token1, + ACTIONS(485), 1, + aux_sym_select_statement_token1, + ACTIONS(488), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(145), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(471), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(2033), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [11444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(351), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11570] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(145), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(491), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(2033), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [11679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(371), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(493), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [11868] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(263), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(265), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(107), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(109), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [11969] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(257), 1, + anon_sym_SLASH, + ACTIONS(259), 1, + anon_sym_DASH, + ACTIONS(261), 1, + anon_sym_PLUS, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(255), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(263), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(265), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(113), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(115), 10, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [12074] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + sym_cast, + STATE(411), 1, + sym_comparison_null, + STATE(817), 1, + sym_other_op, + STATE(821), 1, + sym_comparison_kw, + STATE(835), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_op, + STATE(806), 2, + sym_and, + sym_or, + ACTIONS(109), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [12151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(497), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(501), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(421), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(505), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(509), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(497), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(501), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(513), 1, + aux_sym__interval_fields_token1, + ACTIONS(517), 1, + aux_sym__interval_fields_token3, + ACTIONS(519), 1, + aux_sym__interval_fields_token4, + ACTIONS(521), 1, + aux_sym__interval_fields_token5, + STATE(417), 1, + sym__interval_fields, + ACTIONS(515), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [12793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(505), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(509), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(493), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [12982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(343), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [13045] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(391), 1, + sym_cast, + ACTIONS(395), 1, + anon_sym_SLASH, + ACTIONS(397), 1, + anon_sym_DASH, + ACTIONS(399), 1, + anon_sym_PLUS, + STATE(404), 1, + sym_comparison_null, + STATE(841), 1, + sym_comparison_op, + STATE(842), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_kw, + STATE(851), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(393), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(867), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(401), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(75), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [13148] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(55), 5, + anon_sym_COMMA, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 16, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13240] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(57), 6, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 37, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [13320] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -26420,1890 +30437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [10246] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [10336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(313), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [10398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [10460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [10522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(317), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [10584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 29, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [10646] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 37, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [10726] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(79), 22, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [10802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(301), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [10864] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(81), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [10940] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(47), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [11042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(333), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(309), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11228] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(79), 20, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [11308] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 10, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 18, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [11396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(305), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11458] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 10, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [11544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(325), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11606] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(79), 5, - anon_sym_COMMA, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 16, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [11698] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(79), 19, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [11782] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(79), 1, - anon_sym_COMMA, - ACTIONS(267), 1, - anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, - sym_cast, - STATE(369), 1, - sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(273), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(275), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(600), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [11882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(329), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [11944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(349), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [12006] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(81), 1, - aux_sym_trigger_event_token2, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_and_token1, - [12106] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - aux_sym_and_token1, - [12190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [12252] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(369), 1, - aux_sym__interval_fields_token1, - ACTIONS(373), 1, - aux_sym__interval_fields_token3, - ACTIONS(375), 1, - aux_sym__interval_fields_token4, - ACTIONS(377), 1, - aux_sym__interval_fields_token5, - STATE(345), 1, - sym__interval_fields, - ACTIONS(371), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(83), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [12326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(337), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [12388] = 3, + [13382] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 6, @@ -28362,25 +30496,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [12450] = 10, + [13444] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, + ACTIONS(369), 1, sym_cast, - STATE(369), 1, + STATE(459), 1, sym_comparison_null, - STATE(601), 1, - sym_other_op, - STATE(604), 1, - sym_comparison_kw, - STATE(607), 1, - sym_contains_op, - STATE(609), 1, + STATE(753), 1, sym_comparison_op, - STATE(600), 2, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + STATE(760), 2, sym_and, sym_or, - ACTIONS(41), 22, + ACTIONS(107), 22, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -28403,6 +30537,690 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + ACTIONS(109), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13520] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 10, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 18, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13608] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(55), 19, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13692] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(107), 1, + anon_sym_COMMA, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(365), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(367), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(109), 13, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [13792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 29, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_LPAREN, + STATE(224), 1, + sym_precision, + ACTIONS(73), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [13920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(531), 1, + anon_sym_LBRACK, + STATE(258), 1, + aux_sym__type_repeat1, + ACTIONS(533), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(129), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(131), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [13988] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 10, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [14074] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_COMMA, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(365), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(367), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 13, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [14174] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(55), 20, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [14254] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 1, + aux_sym__interval_fields_token1, + ACTIONS(539), 1, + aux_sym__interval_fields_token3, + ACTIONS(541), 1, + aux_sym__interval_fields_token4, + ACTIONS(543), 1, + aux_sym__interval_fields_token5, + STATE(460), 1, + sym__interval_fields, + ACTIONS(537), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(41), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, ACTIONS(43), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, @@ -28428,38 +31246,271 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [12526] = 3, + [14328] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(343), 6, - aux_sym_alter_column_action_token1, + ACTIONS(61), 1, anon_sym_SLASH, + ACTIONS(63), 1, anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(547), 1, + aux_sym_alter_column_action_token1, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 48, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(545), 11, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_items_token1, aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, + [14430] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(55), 22, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, - aux_sym_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_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [14506] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(359), 1, + anon_sym_SLASH, + ACTIONS(361), 1, + anon_sym_DASH, + ACTIONS(363), 1, + anon_sym_PLUS, + ACTIONS(369), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(753), 1, + sym_comparison_op, + STATE(756), 1, + sym_contains_op, + STATE(757), 1, + sym_comparison_kw, + STATE(759), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(357), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(365), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(367), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(760), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(115), 11, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [14610] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(527), 1, + sym_cast, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(109), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -28485,9 +31536,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [14686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_LBRACK, + STATE(254), 1, + aux_sym__type_repeat1, + ACTIONS(551), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(129), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [12588] = 3, + [14754] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_trigger_event_token2, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_and_token1, + [14854] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(57), 4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [14944] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [15028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -28546,25 +31879,274 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [12650] = 9, + [15090] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, - aux_sym__interval_fields_token1, - ACTIONS(383), 1, - aux_sym__interval_fields_token3, - ACTIONS(385), 1, - aux_sym__interval_fields_token4, - ACTIONS(387), 1, - aux_sym__interval_fields_token5, - STATE(364), 1, - sym__interval_fields, - ACTIONS(381), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(83), 23, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(57), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 27, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + aux_sym_and_token1, + [15176] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(113), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [15278] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(109), 1, + aux_sym_trigger_event_token2, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(107), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_and_token1, + [15378] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(527), 1, + sym_cast, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(57), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -28572,8 +32154,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + aux_sym_and_token1, + [15454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + anon_sym_LPAREN, + STATE(251), 1, + sym_precision, + ACTIONS(73), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -28586,49 +32233,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(85), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + aux_sym_and_token1, + [15520] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, aux_sym_grant_targets_token4, + ACTIONS(81), 1, aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + ACTIONS(563), 1, + anon_sym_COMMA, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + STATE(1112), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(561), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [12724] = 10, + [15626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - STATE(666), 2, - sym_and, - sym_or, + ACTIONS(565), 1, + aux_sym__interval_fields_token1, + ACTIONS(569), 1, + aux_sym__interval_fields_token3, + ACTIONS(571), 1, + aux_sym__interval_fields_token4, + ACTIONS(573), 1, + aux_sym__interval_fields_token5, + STATE(474), 1, + sym__interval_fields, + ACTIONS(567), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, ACTIONS(43), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -28637,7 +32339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 39, + ACTIONS(41), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -28676,116 +32378,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, aux_sym_and_token1, - [12800] = 19, + [15700] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(79), 1, aux_sym_grant_targets_token4, - ACTIONS(359), 1, + ACTIONS(525), 1, anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, + ACTIONS(527), 1, sym_cast, - STATE(350), 1, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, sym_comparison_null, - STATE(667), 1, + STATE(763), 1, sym_other_op, - STATE(668), 1, + STATE(766), 1, sym_comparison_kw, - STATE(672), 1, + STATE(768), 1, sym_contains_op, - STATE(673), 1, + STATE(770), 1, sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(81), 2, + ACTIONS(57), 2, aux_sym_trigger_event_token2, aux_sym_comparison_kw_token1, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - aux_sym_and_token1, - [12894] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(81), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 9, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -28795,13 +32435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 27, + ACTIONS(55), 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_returning_token1, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -28809,13 +32448,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, @@ -28823,147 +32455,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, aux_sym_and_token1, - [12980] = 23, + [15794] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(391), 1, - aux_sym_alter_column_action_token1, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(389), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - [13082] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, aux_sym_and_token1, - ACTIONS(109), 1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + ACTIONS(208), 1, anon_sym_SLASH, - ACTIONS(163), 1, + ACTIONS(210), 1, anon_sym_DASH, - ACTIONS(165), 1, + ACTIONS(212), 1, anon_sym_PLUS, - STATE(229), 1, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, sym_comparison_null, - STATE(596), 1, + STATE(777), 1, sym_other_op, - STATE(599), 1, + STATE(782), 1, sym_comparison_kw, - STATE(602), 1, + STATE(794), 1, sym_contains_op, - STATE(603), 1, + STATE(795), 1, sym_comparison_op, - STATE(1046), 1, + STATE(1193), 1, sym_order_by_direction, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(159), 2, + ACTIONS(206), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(395), 2, + ACTIONS(577), 2, aux_sym_index_col_dir_token1, aux_sym_index_col_dir_token2, - STATE(594), 2, + STATE(873), 2, sym_and, sym_or, - ACTIONS(65), 3, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, + ACTIONS(214), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -28973,7 +32526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(393), 9, + ACTIONS(575), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -28983,139 +32536,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [13188] = 22, + [15900] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_COMMA, - ACTIONS(69), 1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(267), 1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(525), 1, anon_sym_SLASH, - ACTIONS(269), 1, - anon_sym_DASH, - ACTIONS(271), 1, - anon_sym_PLUS, - ACTIONS(277), 1, + ACTIONS(527), 1, sym_cast, - STATE(369), 1, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, sym_comparison_null, - STATE(601), 1, + STATE(763), 1, sym_other_op, - STATE(604), 1, + STATE(766), 1, sym_comparison_kw, - STATE(607), 1, + STATE(768), 1, sym_contains_op, - STATE(609), 1, + STATE(770), 1, sym_comparison_op, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(265), 2, + ACTIONS(523), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(273), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(275), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(600), 2, + STATE(762), 2, sym_and, sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(43), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym__identifier, - [13288] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - aux_sym_trigger_event_token2, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, + ACTIONS(557), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -29125,261 +32602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(41), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_and_token1, - [13388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 46, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [13449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 30, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [13510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(35), 30, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [13571] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(359), 1, - anon_sym_SLASH, - ACTIONS(361), 1, - anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(397), 11, + ACTIONS(579), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -29391,85 +32614,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [13672] = 6, + [16001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_LPAREN, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(403), 1, - aux_sym_time_expression_token1, - ACTIONS(123), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(127), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [13739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(405), 1, - anon_sym_LPAREN, - ACTIONS(407), 1, - anon_sym_DOT, - ACTIONS(409), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 7, + ACTIONS(139), 8, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(123), 43, + ACTIONS(137), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -29486,8 +32643,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_offset_token2, aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -29513,101 +32672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [13806] = 28, + [16062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(435), 1, - aux_sym_for_statement_token3, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(443), 1, - aux_sym_if_statement_token5, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - STATE(1228), 1, - aux_sym_if_statement_repeat1, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - ACTIONS(441), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - STATE(179), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(1787), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [13917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 7, + ACTIONS(31), 8, + aux_sym_update_set_token1, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(33), 46, + ACTIONS(29), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -29615,20 +32692,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, aux_sym_for_statement_token2, - aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -29654,7 +32730,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [13978] = 3, + [16123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(137), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16184] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 26, @@ -29712,63 +32846,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [14039] = 23, + [16245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(581), 1, + anon_sym_LBRACK, + STATE(263), 1, + aux_sym__type_repeat1, + ACTIONS(583), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 7, aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(359), 1, anon_sym_SLASH, - ACTIONS(361), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + aux_sym_comparison_kw_token1, + ACTIONS(129), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -29778,7 +32905,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(453), 11, + sym_cast, + aux_sym_and_token1, + [16312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(35), 30, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [16373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [16434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 30, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [16495] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + anon_sym_LPAREN, + ACTIONS(587), 1, + anon_sym_DOT, + ACTIONS(589), 1, + aux_sym_time_expression_token1, + ACTIONS(166), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(170), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [16562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(37), 46, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [16623] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 1, + anon_sym_LPAREN, + ACTIONS(593), 1, + anon_sym_DOT, + ACTIONS(595), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(166), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [16690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16751] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(597), 11, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -29790,7 +33397,1646 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [14140] = 3, + [16852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(141), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 46, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [16974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + anon_sym_LBRACK, + STATE(266), 1, + aux_sym__type_repeat1, + ACTIONS(601), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(129), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(145), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + anon_sym_LPAREN, + STATE(272), 1, + sym_precision, + ACTIONS(73), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [17167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [17228] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(605), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(249), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(137), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17394] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(607), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17500] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(609), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(145), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17666] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(611), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17772] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(432), 1, + aux_sym_update_statement_token1, + ACTIONS(435), 1, + aux_sym_create_type_statement_token1, + ACTIONS(438), 1, + aux_sym_insert_statement_token1, + ACTIONS(441), 1, + aux_sym_insert_conflict_token3, + ACTIONS(444), 1, + aux_sym_delete_statement_token1, + ACTIONS(447), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(450), 1, + aux_sym_grant_statement_token1, + ACTIONS(453), 1, + anon_sym_BSLASH, + ACTIONS(456), 1, + aux_sym_sequence_start_token2, + ACTIONS(459), 1, + aux_sym_trigger_scope_token1, + ACTIONS(462), 1, + aux_sym_trigger_exec_token1, + ACTIONS(465), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(468), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(471), 1, + aux_sym_for_statement_token3, + ACTIONS(473), 1, + aux_sym_raise_statement_token1, + ACTIONS(476), 1, + aux_sym_if_statement_token1, + ACTIONS(479), 1, + aux_sym_return_statement_token1, + ACTIONS(482), 1, + aux_sym_perform_statement_token1, + ACTIONS(485), 1, + aux_sym_select_statement_token1, + ACTIONS(488), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17878] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(613), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17984] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(615), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18090] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(609), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(230), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18196] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(617), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(141), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [18362] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(617), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(256), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(619), 1, + anon_sym_LPAREN, + STATE(297), 1, + sym_precision, + ACTIONS(73), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(69), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [18532] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(615), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(226), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(621), 1, + anon_sym_LBRACK, + STATE(238), 1, + aux_sym__type_repeat1, + ACTIONS(161), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [18702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [18762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LBRACK, + STATE(348), 1, + aux_sym__type_repeat1, + ACTIONS(626), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(129), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [18828] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 6, @@ -29847,61 +35093,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14200] = 25, + [18888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 1, - aux_sym_update_statement_token1, - ACTIONS(458), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(461), 1, - aux_sym_create_type_statement_token1, - ACTIONS(464), 1, - aux_sym_insert_statement_token1, - ACTIONS(467), 1, - aux_sym_insert_conflict_token3, - ACTIONS(470), 1, - aux_sym_delete_statement_token1, - ACTIONS(473), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(476), 1, - aux_sym_grant_statement_token1, - ACTIONS(479), 1, - anon_sym_BSLASH, - ACTIONS(482), 1, - aux_sym_sequence_start_token2, - ACTIONS(485), 1, - aux_sym_trigger_scope_token1, - ACTIONS(488), 1, - aux_sym_trigger_exec_token1, - ACTIONS(491), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(496), 1, - aux_sym_raise_statement_token1, - ACTIONS(499), 1, - aux_sym_if_statement_token1, - ACTIONS(502), 1, - aux_sym_return_statement_token1, - ACTIONS(505), 1, - aux_sym_perform_statement_token1, - ACTIONS(508), 1, - aux_sym_select_statement_token1, - ACTIONS(511), 1, + ACTIONS(143), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [18948] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(630), 1, + aux_sym_update_statement_token4, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(640), 1, + aux_sym_grant_roles_token2, + ACTIONS(642), 1, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, + ACTIONS(648), 1, + aux_sym_select_order_by_token1, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(652), 1, + aux_sym_where_filter_token1, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(670), 1, + sym_number, + ACTIONS(672), 1, sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, + STATE(212), 1, sym_identifier, - STATE(179), 2, + STATE(832), 1, + sym_not, + STATE(877), 1, + sym_select_item, + STATE(883), 1, + sym_into, + STATE(919), 1, + sym_select_from, + STATE(968), 1, + sym_select_where, + STATE(1002), 1, + sym_select_group_by, + STATE(1080), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1148), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1331), 1, + sym__select_limit_offset, + ACTIONS(628), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(827), 2, + sym_minus, + sym_plus, + ACTIONS(634), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + STATE(45), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(674), 1, + anon_sym_LBRACK, + STATE(244), 1, + aux_sym__type_repeat1, + ACTIONS(159), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(161), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [19144] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(677), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(231), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - ACTIONS(494), 4, - aux_sym_for_statement_token3, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - STATE(1787), 25, + STATE(2077), 27, sym__statement, + sym_drop_type_statement, sym_update_statement, sym_drop_function_statement, sym_create_type_statement, @@ -29915,6 +35370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_psql_statement, sym_create_sequence_statement, sym_create_trigger_statement, + sym_open_cursor_statement, sym_get_diagnostics_statement, sym_for_statement, sym_raise_statement, @@ -29926,23 +35382,322 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [14304] = 6, + [19250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(514), 1, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(516), 1, + STATE(292), 1, + sym_precision, + ACTIONS(69), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(73), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [19314] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(677), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19420] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(681), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(259), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19526] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(683), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, anon_sym_DOT, - ACTIONS(518), 1, + ACTIONS(689), 1, aux_sym_time_expression_token1, - ACTIONS(127), 6, + ACTIONS(170), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(123), 43, + ACTIONS(166), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -29986,61 +35741,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14370] = 25, + [19698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(137), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [19758] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(411), 1, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, + ACTIONS(297), 1, aux_sym_create_type_statement_token1, - ACTIONS(417), 1, + ACTIONS(299), 1, aux_sym_insert_statement_token1, - ACTIONS(419), 1, + ACTIONS(301), 1, aux_sym_insert_conflict_token3, - ACTIONS(421), 1, + ACTIONS(303), 1, aux_sym_delete_statement_token1, - ACTIONS(423), 1, + ACTIONS(305), 1, aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, + ACTIONS(307), 1, aux_sym_grant_statement_token1, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(429), 1, + ACTIONS(311), 1, aux_sym_trigger_scope_token1, - ACTIONS(431), 1, + ACTIONS(313), 1, aux_sym_trigger_exec_token1, - ACTIONS(433), 1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, + ACTIONS(321), 1, aux_sym_raise_statement_token1, - ACTIONS(439), 1, + ACTIONS(323), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(329), 1, aux_sym_return_statement_token1, - ACTIONS(447), 1, + ACTIONS(331), 1, aux_sym_perform_statement_token1, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(451), 1, + ACTIONS(335), 1, sym__identifier, - STATE(1312), 1, + ACTIONS(691), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, sym_with_query, - STATE(1577), 1, + STATE(1905), 1, sym_identifier, - STATE(179), 2, + STATE(233), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - ACTIONS(520), 4, - aux_sym_for_statement_token3, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - STATE(1787), 25, + STATE(2077), 27, sym__statement, + sym_drop_type_statement, sym_update_statement, sym_drop_function_statement, sym_create_type_statement, @@ -30054,6 +35866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_psql_statement, sym_create_sequence_statement, sym_create_trigger_statement, + sym_open_cursor_statement, sym_get_diagnostics_statement, sym_for_statement, sym_raise_statement, @@ -30065,12 +35878,94 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [14474] = 4, + [19864] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(693), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(247), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19970] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_LBRACK, + STATE(238), 1, + aux_sym__type_repeat1, + ACTIONS(157), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -30078,7 +35973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 43, + ACTIONS(155), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30122,63 +36017,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14535] = 23, + [20034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(147), 7, aux_sym_grant_targets_token4, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(359), 1, anon_sym_SLASH, - ACTIONS(361), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(363), 1, - anon_sym_PLUS, - ACTIONS(367), 1, - sym_cast, - STATE(350), 1, - sym_comparison_null, - STATE(667), 1, - sym_other_op, - STATE(668), 1, - sym_comparison_kw, - STATE(672), 1, - sym_contains_op, - STATE(673), 1, - sym_comparison_op, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(357), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(666), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(365), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + aux_sym_comparison_kw_token1, + ACTIONS(145), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30188,7 +36072,672 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(524), 9, + sym_cast, + aux_sym_and_token1, + [20094] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(693), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20200] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(630), 1, + aux_sym_update_statement_token4, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(640), 1, + aux_sym_grant_roles_token2, + ACTIONS(642), 1, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, + ACTIONS(648), 1, + aux_sym_select_order_by_token1, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(652), 1, + aux_sym_where_filter_token1, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(670), 1, + sym_number, + ACTIONS(672), 1, + sym__identifier, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(875), 1, + sym_select_item, + STATE(896), 1, + sym_into, + STATE(920), 1, + sym_select_from, + STATE(966), 1, + sym_select_where, + STATE(994), 1, + sym_select_group_by, + STATE(1073), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(827), 2, + sym_minus, + sym_plus, + ACTIONS(697), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + STATE(45), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(531), 1, + anon_sym_LBRACK, + STATE(244), 1, + aux_sym__type_repeat1, + ACTIONS(155), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(157), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [20396] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(691), 1, + aux_sym_for_statement_token3, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(229), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(699), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [20563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [20622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [20681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(581), 1, + anon_sym_LBRACK, + STATE(264), 1, + aux_sym__type_repeat1, + ACTIONS(157), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [20744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 1, + anon_sym_LBRACK, + STATE(264), 1, + aux_sym__type_repeat1, + ACTIONS(161), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [20807] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(525), 1, + anon_sym_SLASH, + ACTIONS(527), 1, + sym_cast, + ACTIONS(553), 1, + anon_sym_DASH, + ACTIONS(555), 1, + anon_sym_PLUS, + STATE(507), 1, + sym_comparison_null, + STATE(763), 1, + sym_other_op, + STATE(766), 1, + sym_comparison_kw, + STATE(768), 1, + sym_contains_op, + STATE(770), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(523), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(762), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(557), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(704), 9, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -30198,75 +36747,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [14634] = 25, + [20906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(599), 1, + anon_sym_LBRACK, + STATE(280), 1, + aux_sym__type_repeat1, + ACTIONS(157), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, - ACTIONS(163), 1, anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - ACTIONS(528), 1, - aux_sym_update_set_token1, - ACTIONS(530), 1, - aux_sym_select_offset_token2, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(155), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(526), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - ACTIONS(73), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30276,12 +36804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [14737] = 4, + sym_cast, + [20969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, + ACTIONS(706), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, + ACTIONS(281), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -30289,7 +36818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 43, + ACTIONS(279), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30333,12 +36862,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14798] = 4, + [21030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(534), 1, + ACTIONS(31), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21089] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(225), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [21192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(708), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, + ACTIONS(281), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -30346,7 +37009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 43, + ACTIONS(279), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30390,23 +37053,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14859] = 6, + [21253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(538), 1, + ACTIONS(712), 1, anon_sym_DOT, - ACTIONS(540), 1, + ACTIONS(714), 1, aux_sym_time_expression_token1, - ACTIONS(127), 6, + ACTIONS(170), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(123), 42, + ACTIONS(166), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30449,7 +37112,700 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14924] = 3, + [21318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(137), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [21377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(716), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [21438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(718), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [21499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(720), 1, + anon_sym_LBRACK, + STATE(382), 1, + aux_sym__type_repeat1, + ACTIONS(722), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(129), 22, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(131), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [21564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + ACTIONS(726), 1, + anon_sym_DOT, + ACTIONS(728), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(166), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(159), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(730), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [21749] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + ACTIONS(734), 1, + aux_sym_update_set_token1, + ACTIONS(736), 1, + aux_sym_select_offset_token2, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(214), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(732), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [21852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(738), 1, + anon_sym_LBRACK, + STATE(280), 1, + aux_sym__type_repeat1, + ACTIONS(161), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(159), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21915] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(94), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2033), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [22018] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, + sym__identifier, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, + sym_identifier, + STATE(228), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2077), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [22121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 6, @@ -30505,25 +37861,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [14983] = 4, + [22180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(542), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 25, + ACTIONS(741), 1, + anon_sym_LBRACK, + STATE(362), 1, + aux_sym__type_repeat1, + ACTIONS(743), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(129), 39, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -30536,33 +37919,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(209), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + aux_sym_and_token1, + [22245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, aux_sym_and_token1, - sym__identifier, - [15044] = 3, + [22304] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 24, @@ -30618,242 +38032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [15103] = 6, + [22363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(544), 1, - anon_sym_LPAREN, - ACTIONS(546), 1, - anon_sym_DOT, - ACTIONS(548), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(123), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [15168] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(550), 1, + ACTIONS(745), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [15229] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(552), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [15290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [15351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(556), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, + ACTIONS(281), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -30861,7 +38045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 43, + ACTIONS(279), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30905,198 +38089,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [15412] = 3, + [22424] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(313), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(315), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(293), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(295), 1, + aux_sym_update_statement_token1, + ACTIONS(297), 1, + aux_sym_create_type_statement_token1, + ACTIONS(299), 1, + aux_sym_insert_statement_token1, + ACTIONS(301), 1, + aux_sym_insert_conflict_token3, + ACTIONS(303), 1, + aux_sym_delete_statement_token1, + ACTIONS(305), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(307), 1, + aux_sym_grant_statement_token1, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(311), 1, + aux_sym_trigger_scope_token1, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(315), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(317), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(321), 1, + aux_sym_raise_statement_token1, + ACTIONS(323), 1, + aux_sym_if_statement_token1, + ACTIONS(329), 1, + aux_sym_return_statement_token1, + ACTIONS(331), 1, + aux_sym_perform_statement_token1, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(335), 1, sym__identifier, - [15470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(333), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [15528] = 38, - ACTIONS(3), 1, - sym_comment, - ACTIONS(560), 1, - aux_sym_update_statement_token4, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(598), 1, - sym_number, - ACTIONS(600), 1, - sym__identifier, - STATE(172), 1, + STATE(1545), 1, + sym_with_query, + STATE(1905), 1, sym_identifier, - STATE(576), 1, + STATE(148), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2033), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [22527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [22586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [22647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(57), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [22705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(137), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(139), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [22763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(421), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [22821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(159), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22879] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(640), 1, + aux_sym_grant_roles_token2, + ACTIONS(642), 1, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, + ACTIONS(648), 1, + aux_sym_select_order_by_token1, + ACTIONS(652), 1, + aux_sym_where_filter_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(749), 1, + aux_sym_update_statement_token4, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + aux_sym_insert_statement_token2, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(771), 1, + sym_number, + ACTIONS(773), 1, + sym__identifier, + STATE(276), 1, + sym_identifier, + STATE(845), 1, sym_not, - STATE(714), 1, + STATE(884), 1, sym_select_item, - STATE(722), 1, + STATE(926), 1, sym_into, - STATE(762), 1, + STATE(963), 1, sym_select_from, - STATE(815), 1, + STATE(1005), 1, sym_select_where, - STATE(866), 1, + STATE(1066), 1, sym_select_group_by, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1147), 1, + sym_select_having, + STATE(1205), 1, + sym_select_order_by, + STATE(1238), 1, sym_select_offset, - STATE(1133), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1487), 1, sym__select_limit_offset, - ACTIONS(558), 2, + ACTIONS(628), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(581), 2, + STATE(849), 2, sym_minus, sym_plus, - ACTIONS(564), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - STATE(33), 10, + STATE(79), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -31105,10 +38591,120 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [15656] = 3, + [23009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(301), 25, + ACTIONS(157), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(137), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31134,7 +38730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(303), 25, + ACTIONS(423), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -31160,10 +38756,175 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [15714] = 3, + [23183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 25, + ACTIONS(495), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(493), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(351), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(343), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31189,7 +38950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(43), 25, + ACTIONS(511), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -31215,10 +38976,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [15772] = 3, + [23415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 25, + ACTIONS(505), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31244,7 +39005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(81), 25, + ACTIONS(507), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -31270,10 +39031,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [15830] = 3, + [23473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 25, + ACTIONS(501), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31299,7 +39060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(35), 25, + ACTIONS(503), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -31325,233 +39086,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [15888] = 3, + [23531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [15946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(317), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(319), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(341), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, ACTIONS(343), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_LPAREN, - ACTIONS(604), 1, - anon_sym_DOT, - ACTIONS(606), 1, - aux_sym_time_expression_token1, - ACTIONS(123), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(127), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(337), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31577,337 +39115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(339), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(333), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(335), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(317), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [16300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(331), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(309), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(311), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(327), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16474] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(345), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(347), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -31933,18 +39141,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [16532] = 3, + [23589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 7, - aux_sym_update_set_token1, + ACTIONS(143), 8, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(313), 43, + ACTIONS(141), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -31952,127 +39161,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [16590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(323), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [16648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -32098,16 +39196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [16706] = 6, + [23647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(610), 1, + ACTIONS(777), 1, anon_sym_DOT, - ACTIONS(612), 1, + ACTIONS(779), 1, aux_sym_time_expression_token1, - ACTIONS(127), 7, + ACTIONS(170), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -32115,7 +39213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(123), 40, + ACTIONS(166), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32156,10 +39254,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [16770] = 3, + [23711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(307), 7, + ACTIONS(497), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(499), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [23769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [23827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(781), 1, + anon_sym_LPAREN, + ACTIONS(783), 1, + anon_sym_DOT, + ACTIONS(785), 1, + aux_sym_time_expression_token1, + ACTIONS(166), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(170), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [23891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -32167,7 +39433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(305), 43, + ACTIONS(509), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32211,88 +39477,751 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [16828] = 38, + [23949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, - aux_sym_update_statement_token4, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, + ACTIONS(145), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(598), 1, - sym_number, - ACTIONS(600), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(147), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, sym__identifier, - STATE(172), 1, + [24007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(141), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(143), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(157), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [24181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(493), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(495), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(787), 1, + anon_sym_LBRACK, + STATE(317), 1, + aux_sym__type_repeat1, + ACTIONS(161), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [24301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(419), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(427), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(109), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(409), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [24591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [24649] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(640), 1, + aux_sym_grant_roles_token2, + ACTIONS(642), 1, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, + ACTIONS(648), 1, + aux_sym_select_order_by_token1, + ACTIONS(652), 1, + aux_sym_where_filter_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(749), 1, + aux_sym_update_statement_token4, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(753), 1, + aux_sym_insert_statement_token2, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(771), 1, + sym_number, + ACTIONS(773), 1, + sym__identifier, + STATE(276), 1, sym_identifier, - STATE(576), 1, + STATE(845), 1, sym_not, - STATE(715), 1, + STATE(886), 1, sym_select_item, - STATE(726), 1, + STATE(923), 1, sym_into, - STATE(757), 1, + STATE(958), 1, sym_select_from, - STATE(809), 1, + STATE(1021), 1, sym_select_where, - STATE(858), 1, + STATE(1071), 1, sym_select_group_by, - STATE(917), 1, - sym_select_having, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(983), 1, + STATE(1141), 1, + sym_select_having, + STATE(1187), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1158), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1554), 1, sym__select_limit_offset, - ACTIONS(614), 2, + ACTIONS(695), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(581), 2, + STATE(849), 2, sym_minus, sym_plus, - ACTIONS(616), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - STATE(33), 10, + STATE(79), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -32301,7 +40230,999 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [16956] = 3, + [24779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(411), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(413), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 25, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(31), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [24895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(347), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [24953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(373), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [25011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(405), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [25069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(353), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [25127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(31), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [25185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(347), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(349), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [25301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(505), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(501), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(371), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(497), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(790), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [25827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -32356,91 +41277,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [17014] = 3, + [25885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 25, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(31), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(31), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [17072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -32466,120 +41332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [17130] = 3, + [25943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(329), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(309), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(305), 25, + ACTIONS(387), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32605,7 +41361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(307), 25, + ACTIONS(389), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -32631,10 +41387,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [17304] = 3, + [26001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 25, + ACTIONS(33), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32660,7 +41416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(31), 25, + ACTIONS(35), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -32686,563 +41442,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [17362] = 3, + [26059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(327), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(325), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(301), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(349), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(337), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17768] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17888] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [17948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(349), 25, + ACTIONS(37), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -33268,7 +41471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(351), 25, + ACTIONS(39), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -33294,4607 +41497,2348 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [18006] = 4, + [26117] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, + anon_sym_LBRACK, + STATE(317), 1, + aux_sym__type_repeat1, + ACTIONS(157), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(205), 43, + ACTIONS(155), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [18066] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(626), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18167] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(628), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(254), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18268] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(626), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(248), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18369] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 1, - aux_sym_update_statement_token1, - ACTIONS(458), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(461), 1, - aux_sym_create_type_statement_token1, - ACTIONS(464), 1, - aux_sym_insert_statement_token1, - ACTIONS(467), 1, - aux_sym_insert_conflict_token3, - ACTIONS(470), 1, - aux_sym_delete_statement_token1, - ACTIONS(473), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(476), 1, - aux_sym_grant_statement_token1, - ACTIONS(479), 1, - anon_sym_BSLASH, - ACTIONS(482), 1, - aux_sym_sequence_start_token2, - ACTIONS(485), 1, - aux_sym_trigger_scope_token1, - ACTIONS(488), 1, - aux_sym_trigger_exec_token1, - ACTIONS(491), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(494), 1, - aux_sym_for_statement_token3, - ACTIONS(496), 1, - aux_sym_raise_statement_token1, - ACTIONS(499), 1, - aux_sym_if_statement_token1, - ACTIONS(502), 1, - aux_sym_return_statement_token1, - ACTIONS(505), 1, - aux_sym_perform_statement_token1, - ACTIONS(508), 1, - aux_sym_select_statement_token1, - ACTIONS(511), 1, - sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18470] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(630), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(301), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [18628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(309), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [18685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [18742] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(632), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(255), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18843] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(632), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18944] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(137), 1, aux_sym_insert_statement_token2, - ACTIONS(153), 1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26179] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(387), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(796), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26415] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(798), 1, + anon_sym_LBRACK, + STATE(353), 1, + aux_sym__type_repeat1, + ACTIONS(159), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(161), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, aux_sym_and_token1, - ACTIONS(155), 1, sym__identifier, + [26476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(509), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(505), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(501), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(497), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(801), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(741), 1, + anon_sym_LBRACK, + STATE(389), 1, + aux_sym__type_repeat1, + ACTIONS(157), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [26995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(805), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27227] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(180), 1, + aux_sym_insert_statement_token2, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(807), 1, + aux_sym_update_statement_token2, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + STATE(1039), 1, + sym_identifier, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(817), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(819), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(176), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [27332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(823), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27391] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27450] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(214), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(827), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [27547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(831), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(343), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(833), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [27895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(155), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(371), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(351), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(347), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(720), 1, + anon_sym_LBRACK, + STATE(353), 1, + aux_sym__type_repeat1, + ACTIONS(155), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(157), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [28241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(493), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(421), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28412] = 39, + ACTIONS(3), 1, + sym_comment, ACTIONS(634), 1, - aux_sym_update_statement_token2, - ACTIONS(638), 1, - anon_sym_SLASH, + aux_sym_for_statement_token2, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, ACTIONS(640), 1, - anon_sym_DASH, + aux_sym_grant_roles_token2, ACTIONS(642), 1, - anon_sym_PLUS, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - STATE(874), 1, - sym_identifier, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(644), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(646), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [19049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(305), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(313), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(349), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19277] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(650), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19378] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, + aux_sym_select_order_by_token1, ACTIONS(652), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19479] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(654), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19580] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(656), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(239), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19738] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(656), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(317), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [19896] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(652), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(264), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19997] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(658), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(267), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20155] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(658), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(337), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(329), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20370] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(660), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(325), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20528] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, ACTIONS(662), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(259), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20686] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(660), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(272), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20787] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, ACTIONS(664), 1, - aux_sym_for_statement_token3, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, + anon_sym_PLUS, + ACTIONS(753), 1, + aux_sym_insert_statement_token2, + ACTIONS(835), 1, + aux_sym_update_statement_token4, + ACTIONS(837), 1, + anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, + aux_sym_true_token1, + ACTIONS(853), 1, + aux_sym_false_token1, + ACTIONS(855), 1, + sym_number, + ACTIONS(857), 1, + sym__identifier, + STATE(310), 1, sym_identifier, - STATE(242), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(333), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [20945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(666), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(668), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(670), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21122] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(672), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(674), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [21240] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(676), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_offset_token1, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(678), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [21396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [21455] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(682), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [21514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [21570] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(81), 15, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21644] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(644), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(646), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(41), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(43), 5, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym__identifier, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21738] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(43), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(41), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21808] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(81), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21878] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(644), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(646), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(47), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 3, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - sym__identifier, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [21976] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(684), 1, - aux_sym__interval_fields_token1, - ACTIONS(688), 1, - aux_sym__interval_fields_token3, - ACTIONS(690), 1, - aux_sym__interval_fields_token4, - ACTIONS(692), 1, - aux_sym__interval_fields_token5, - STATE(482), 1, - sym__interval_fields, - ACTIONS(686), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(83), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(29), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22100] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(79), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 8, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [22186] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [22266] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(644), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(646), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(79), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(81), 5, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym__identifier, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [22360] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 10, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - [22442] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_SLASH, - ACTIONS(640), 1, - anon_sym_DASH, - ACTIONS(642), 1, - anon_sym_PLUS, - ACTIONS(648), 1, - sym_cast, - STATE(480), 1, - sym_comparison_null, - STATE(658), 1, - sym_other_op, - STATE(659), 1, - sym_comparison_kw, - STATE(660), 1, - sym_contains_op, - STATE(661), 1, - sym_comparison_op, - ACTIONS(636), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(655), 2, - sym_and, - sym_or, - ACTIONS(81), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [22520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(317), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [22576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(694), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [22634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [22692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(698), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [22750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(700), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(205), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(209), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [22808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(702), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [22866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(704), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [22980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(706), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(349), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [23094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(708), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(205), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(333), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(337), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(301), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [23320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23376] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, - anon_sym_SLASH, - ACTIONS(163), 1, - anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(714), 1, - aux_sym_index_using_token1, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - STATE(1352), 1, + STATE(742), 1, + sym_not, + STATE(914), 1, + sym_select_item, + STATE(932), 1, sym_into, - STATE(1755), 1, - sym_execute_using, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(710), 2, - anon_sym_SEMI, + STATE(965), 1, + sym_select_from, + STATE(1028), 1, + sym_select_where, + STATE(1109), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1163), 1, + sym_select_having, + STATE(1231), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1748), 1, + sym__select_limit_offset, + STATE(739), 2, + sym_minus, + sym_plus, + STATE(109), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [28541] = 39, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(640), 1, + aux_sym_grant_roles_token2, + ACTIONS(642), 1, + aux_sym_select_having_token1, + ACTIONS(644), 1, + aux_sym_select_limit_token1, + ACTIONS(646), 1, + aux_sym_select_offset_token1, + ACTIONS(648), 1, + aux_sym_select_order_by_token1, + ACTIONS(652), 1, + aux_sym_where_filter_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(697), 1, aux_sym_for_statement_token2, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(753), 1, + aux_sym_insert_statement_token2, + ACTIONS(835), 1, + aux_sym_update_statement_token4, + ACTIONS(837), 1, + anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, + aux_sym_true_token1, + ACTIONS(853), 1, + aux_sym_false_token1, + ACTIONS(855), 1, + sym_number, + ACTIONS(857), 1, + sym__identifier, + STATE(310), 1, + sym_identifier, + STATE(742), 1, + sym_not, + STATE(902), 1, + sym_select_item, + STATE(941), 1, + sym_into, + STATE(974), 1, + sym_select_from, + STATE(1027), 1, + sym_select_where, + STATE(1099), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1161), 1, + sym_select_having, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1747), 1, + sym__select_limit_offset, + STATE(739), 2, + sym_minus, + sym_plus, + STATE(109), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [28670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(387), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -37904,17 +43848,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [23480] = 3, + sym_cast, + aux_sym_and_token1, + [28727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(351), 6, + ACTIONS(859), 1, + anon_sym_LBRACK, + STATE(389), 1, + aux_sym__type_repeat1, + ACTIONS(161), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [28788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(349), 42, + ACTIONS(387), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -37957,17 +43959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [23536] = 3, + [28844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 6, + ACTIONS(499), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 42, + ACTIONS(497), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38010,7 +44012,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [23592] = 3, + [28900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [28956] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 23, @@ -38063,17 +44118,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [23648] = 3, + [29012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 6, + ACTIONS(373), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(371), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(347), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(301), 42, + ACTIONS(371), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38116,7 +44330,1137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [23704] = 3, + [29236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(417), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(493), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(421), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(868), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(279), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(351), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(351), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(403), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [29972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(347), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(425), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30252] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(870), 1, + aux_sym__interval_fields_token1, + ACTIONS(874), 1, + aux_sym__interval_fields_token3, + ACTIONS(876), 1, + aux_sym__interval_fields_token4, + ACTIONS(878), 1, + aux_sym__interval_fields_token5, + STATE(629), 1, + sym__interval_fields, + ACTIONS(872), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(387), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30376] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(109), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30446] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 23, @@ -38169,17 +45513,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [23760] = 3, + [30502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(311), 6, + ACTIONS(161), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(159), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(309), 42, + ACTIONS(343), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38222,116 +45619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [23816] = 3, + [30614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(305), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [23928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 23, + ACTIONS(345), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -38355,7 +45646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(309), 25, + ACTIONS(343), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38381,200 +45672,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [23984] = 3, + [30670] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(313), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [24040] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(174), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(1787), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [24138] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(716), 1, - aux_sym_update_statement_token2, - ACTIONS(720), 1, + ACTIONS(811), 1, anon_sym_SLASH, - ACTIONS(722), 1, + ACTIONS(813), 1, anon_sym_DASH, - ACTIONS(724), 1, + ACTIONS(815), 1, anon_sym_PLUS, - ACTIONS(730), 1, + ACTIONS(821), 1, sym_cast, - STATE(488), 1, + STATE(624), 1, sym_comparison_null, - STATE(692), 1, + STATE(801), 1, sym_other_op, - STATE(694), 1, + STATE(802), 1, sym_comparison_kw, - STATE(697), 1, + STATE(805), 1, sym_contains_op, - STATE(701), 1, + STATE(807), 1, sym_comparison_op, - STATE(874), 1, - sym_identifier, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(718), 2, + ACTIONS(809), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(726), 2, + ACTIONS(817), 2, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(728), 2, + ACTIONS(819), 2, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - STATE(691), 2, + STATE(800), 2, sym_and, sym_or, - ACTIONS(133), 3, + ACTIONS(107), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(51), 4, + ACTIONS(79), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(109), 5, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -38584,70 +45744,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [24240] = 23, + [30764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(503), 6, aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, anon_sym_SLASH, - ACTIONS(163), 1, anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, + aux_sym_comparison_kw_token1, + ACTIONS(501), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, - STATE(594), 2, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [30876] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(880), 1, + aux_sym_update_statement_token2, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + STATE(1039), 1, + sym_identifier, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(890), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(892), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(852), 2, sym_and, sym_or, - ACTIONS(65), 3, + ACTIONS(176), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(732), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -38657,105 +45926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [24336] = 38, + [30978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(734), 1, - aux_sym_update_statement_token4, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(738), 1, - aux_sym_insert_statement_token2, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(754), 1, - sym_number, - ACTIONS(756), 1, - sym__identifier, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(734), 1, - sym_select_item, - STATE(761), 1, - sym_into, - STATE(797), 1, - sym_select_from, - STATE(854), 1, - sym_select_where, - STATE(920), 1, - sym_select_group_by, - STATE(970), 1, - sym_select_having, - STATE(979), 1, - sym_where_filter, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(77), 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, - [24462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 6, + ACTIONS(507), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(329), 42, + ACTIONS(505), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38798,17 +45979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [24518] = 3, + [31034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(327), 6, + ACTIONS(511), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(325), 42, + ACTIONS(509), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38851,886 +46032,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [24574] = 3, + [31090] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 6, - aux_sym_grant_targets_token4, + ACTIONS(61), 1, anon_sym_SLASH, + ACTIONS(63), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(65), 1, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, + ACTIONS(67), 1, sym_cast, - aux_sym_and_token1, - [24630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(345), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(341), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(337), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(333), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(305), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [24966] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(181), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(1787), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [25064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(325), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25120] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(243), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [25218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(317), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25274] = 38, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(734), 1, - aux_sym_update_statement_token4, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(738), 1, - aux_sym_insert_statement_token2, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(754), 1, - sym_number, - ACTIONS(756), 1, - sym__identifier, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(733), 1, - sym_select_item, - STATE(771), 1, - sym_into, - STATE(795), 1, - sym_select_from, - STATE(869), 1, - sym_select_where, - STATE(908), 1, - sym_select_group_by, - STATE(955), 1, - sym_select_having, - STATE(979), 1, - sym_where_filter, - STATE(1029), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1330), 1, - sym__select_limit_offset, - ACTIONS(614), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(77), 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, - [25400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(329), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25456] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(411), 1, - aux_sym_update_statement_token1, - ACTIONS(413), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(415), 1, - aux_sym_create_type_statement_token1, - ACTIONS(417), 1, - aux_sym_insert_statement_token1, - ACTIONS(419), 1, - aux_sym_insert_conflict_token3, - ACTIONS(421), 1, - aux_sym_delete_statement_token1, - ACTIONS(423), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(425), 1, - aux_sym_grant_statement_token1, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(429), 1, - aux_sym_trigger_scope_token1, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(433), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(437), 1, - aux_sym_raise_statement_token1, - ACTIONS(439), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_return_statement_token1, - ACTIONS(447), 1, - aux_sym_perform_statement_token1, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(451), 1, - sym__identifier, - STATE(1312), 1, - sym_with_query, - STATE(1577), 1, - sym_identifier, - STATE(256), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2036), 25, - sym__statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [25554] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - STATE(153), 1, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -39740,20 +46081,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(732), 6, + ACTIONS(896), 6, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_returning_token1, aux_sym_where_filter_token1, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -39763,10 +46104,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [25648] = 3, + [31184] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 23, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(57), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [31310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [31366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(57), 15, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31440] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(57), 10, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + [31522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(421), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [31578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -39790,7 +46478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(321), 25, + ACTIONS(509), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -39816,10 +46504,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [25704] = 3, + [31634] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 23, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 14, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [31714] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(55), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 8, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(493), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [31856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -39843,7 +46717,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(313), 25, + ACTIONS(505), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -39869,126 +46743,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [25760] = 3, + [31912] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(311), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(811), 1, anon_sym_SLASH, + ACTIONS(813), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(309), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(809), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [25815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(305), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [25870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 22, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(57), 14, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_contains_op_token1, @@ -39999,14 +46785,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(33), 25, + ACTIONS(55), 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, @@ -40024,100 +46807,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - [25925] = 3, + [31990] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(329), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(331), 24, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(817), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(819), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(55), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(57), 5, aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [25980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(349), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(77), 5, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -40127,151 +46879,662 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [26035] = 3, + [32084] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 7, + ACTIONS(79), 1, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(41), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, + ACTIONS(105), 1, aux_sym_and_token1, - [26090] = 38, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(590), 1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(212), 1, anon_sym_PLUS, - ACTIONS(616), 1, - aux_sym_for_statement_token2, - ACTIONS(738), 1, - aux_sym_insert_statement_token2, - ACTIONS(758), 1, - aux_sym_update_statement_token4, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(776), 1, - sym_number, - ACTIONS(778), 1, - sym__identifier, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(739), 1, - sym_select_item, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(214), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(896), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(411), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [32236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(501), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [32350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(497), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [32406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32464] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(906), 1, + aux_sym_index_using_token1, + STATE(332), 1, + sym_comparison_null, + STATE(777), 1, + sym_other_op, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + STATE(1502), 1, sym_into, - STATE(811), 1, - sym_select_from, - STATE(873), 1, - sym_select_where, - STATE(928), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1008), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1099), 1, - sym_select_order_by, - STATE(1448), 1, - sym__select_limit_offset, - STATE(569), 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, - [26215] = 3, + STATE(1823), 1, + sym_execute_using, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(206), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(902), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + STATE(873), 2, + sym_and, + sym_or, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(214), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32568] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(335), 7, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(811), 1, + anon_sym_SLASH, + ACTIONS(813), 1, + anon_sym_DASH, + ACTIONS(815), 1, + anon_sym_PLUS, + ACTIONS(821), 1, + sym_cast, + STATE(624), 1, + sym_comparison_null, + STATE(801), 1, + sym_other_op, + STATE(802), 1, + sym_comparison_kw, + STATE(805), 1, + sym_contains_op, + STATE(807), 1, + sym_comparison_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(809), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(817), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(819), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(800), 2, + sym_and, + sym_or, + ACTIONS(113), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 3, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + sym__identifier, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 24, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(161), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(908), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(910), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(279), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(281), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -40279,7 +47542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(333), 40, + ACTIONS(493), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40320,10 +47583,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [26270] = 3, + [32893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 7, + ACTIONS(343), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(345), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [32948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -40331,7 +47646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(301), 40, + ACTIONS(407), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40372,10 +47687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [26325] = 3, + [33003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 23, + ACTIONS(411), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -40399,7 +47714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(319), 24, + ACTIONS(413), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40424,154 +47739,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [26380] = 9, + [33058] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(780), 1, - aux_sym__interval_fields_token1, - ACTIONS(784), 1, - aux_sym__interval_fields_token3, - ACTIONS(786), 1, - aux_sym__interval_fields_token4, - ACTIONS(788), 1, - aux_sym__interval_fields_token5, - STATE(489), 1, - sym__interval_fields, - ACTIONS(782), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(85), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(61), 1, anon_sym_SLASH, + ACTIONS(63), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, + ACTIONS(105), 1, aux_sym_and_token1, - sym__identifier, - ACTIONS(83), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [26447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(313), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(315), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [26502] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, + STATE(103), 1, sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, + STATE(856), 1, sym_comparison_op, - STATE(691), 2, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(43), 15, - aux_sym_update_statement_token2, + ACTIONS(93), 4, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(41), 24, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(579), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_for_statement_token2, + anon_sym_RBRACK, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 23, + anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, @@ -40593,68 +47836,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [26571] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(63), 2, + ACTIONS(109), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(726), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(728), 2, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - STATE(691), 2, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(389), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33261] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(890), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(892), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(852), 2, sym_and, sym_or, - ACTIONS(41), 3, + ACTIONS(107), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(43), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym__identifier, - ACTIONS(51), 4, + ACTIONS(79), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(49), 5, + ACTIONS(109), 4, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -40664,10 +47985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [26664] = 3, + [33354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 23, + ACTIONS(155), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -40691,7 +48012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(307), 24, + ACTIONS(157), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40716,10 +48037,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [26719] = 3, + [33409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 23, + ACTIONS(55), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -40743,7 +48064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(81), 24, + ACTIONS(57), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40768,10 +48089,225 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [26774] = 3, + [33464] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(339), 7, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(109), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(427), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(407), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(409), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(419), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -40779,7 +48315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(337), 40, + ACTIONS(55), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40820,1310 +48356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [26829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(343), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(341), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [26884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(345), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [26939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(309), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(311), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [26994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(301), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(303), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(79), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [27104] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(81), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [27173] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(81), 14, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [27246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(43), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27301] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(81), 9, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - [27382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(349), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(351), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27437] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(79), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27516] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(79), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(81), 7, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [27601] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(81), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [27678] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(726), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(728), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(79), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(81), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym__identifier, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [27771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(321), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [27826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(345), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(347), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(325), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [27936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(341), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(343), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [27991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(329), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [28046] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - aux_sym_trigger_event_token2, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(153), 1, - aux_sym_and_token1, - ACTIONS(720), 1, - anon_sym_SLASH, - ACTIONS(722), 1, - anon_sym_DASH, - ACTIONS(724), 1, - anon_sym_PLUS, - ACTIONS(730), 1, - sym_cast, - STATE(488), 1, - sym_comparison_null, - STATE(692), 1, - sym_other_op, - STATE(694), 1, - sym_comparison_kw, - STATE(697), 1, - sym_contains_op, - STATE(701), 1, - sym_comparison_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(107), 2, - aux_sym_update_statement_token2, - sym__identifier, - ACTIONS(718), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(726), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(728), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - STATE(691), 2, - sym_and, - sym_or, - ACTIONS(47), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(51), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [28143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(337), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(339), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [28198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(333), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(335), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [28253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [28308] = 3, + [33753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 22, @@ -42175,10 +48408,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28363] = 3, + [33808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 7, + ACTIONS(37), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [33863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -42186,7 +48471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(313), 40, + ACTIONS(421), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -42227,7 +48512,1063 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [28418] = 3, + [33918] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(57), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33987] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(57), 14, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(387), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(509), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34170] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(196), 1, + aux_sym_and_token1, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(115), 2, + aux_sym_update_statement_token2, + sym__identifier, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(890), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(892), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(113), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(423), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(493), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(495), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(505), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(501), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(499), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34542] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(57), 9, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + [34623] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(55), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 13, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(417), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(405), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34812] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 1, + aux_sym__interval_fields_token1, + ACTIONS(916), 1, + aux_sym__interval_fields_token3, + ACTIONS(918), 1, + aux_sym__interval_fields_token4, + ACTIONS(920), 1, + aux_sym__interval_fields_token5, + STATE(633), 1, + sym__interval_fields, + ACTIONS(914), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(503), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [34934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(497), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [34989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(507), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [35044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(511), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [35099] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 23, @@ -42279,97 +49620,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [28473] = 38, + [35154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - aux_sym_for_statement_token2, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(570), 1, - aux_sym_grant_roles_token2, - ACTIONS(572), 1, - aux_sym_select_having_token1, - ACTIONS(574), 1, - aux_sym_select_limit_token1, - ACTIONS(576), 1, - aux_sym_select_offset_token1, - ACTIONS(578), 1, - aux_sym_select_order_by_token1, - ACTIONS(582), 1, - aux_sym_where_filter_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(738), 1, - aux_sym_insert_statement_token2, - ACTIONS(758), 1, - aux_sym_update_statement_token4, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, + ACTIONS(347), 23, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(776), 1, - sym_number, - ACTIONS(778), 1, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(349), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, sym__identifier, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(738), 1, - sym_select_item, - STATE(778), 1, - sym_into, - STATE(812), 1, - sym_select_from, - STATE(875), 1, - sym_select_where, - STATE(947), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1443), 1, - sym__select_limit_offset, - STATE(569), 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, - [28598] = 3, + [35209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 7, + ACTIONS(351), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(353), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + [35264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -42377,7 +49735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(317), 40, + ACTIONS(351), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -42418,10 +49776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [28653] = 3, + [35319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 23, + ACTIONS(371), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -42445,7 +49803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(327), 24, + ACTIONS(373), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -42470,171 +49828,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - [28708] = 3, + [35374] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(323), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + ACTIONS(884), 1, anon_sym_SLASH, + ACTIONS(886), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [28763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(888), 1, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, + ACTIONS(894), 1, sym_cast, - ACTIONS(31), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - [28818] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - STATE(153), 1, + STATE(642), 1, sym_comparison_null, - STATE(681), 1, + STATE(829), 1, sym_comparison_op, - STATE(683), 1, + STATE(834), 1, sym_contains_op, - STATE(684), 1, + STATE(839), 1, sym_comparison_kw, - STATE(685), 1, + STATE(840), 1, sym_other_op, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(882), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + STATE(852), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(79), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(397), 4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(55), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_for_statement_token2, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(57), 7, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -42644,10 +49895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [28910] = 4, + [35459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 7, + ACTIONS(349), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -42655,20 +49906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(790), 10, + ACTIONS(347), 40, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, + anon_sym_EQ, aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - ACTIONS(301), 29, - anon_sym_COMMA, - anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -42696,140 +49947,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, aux_sym_and_token1, - [28966] = 23, + [35514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(35), 22, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(109), 1, aux_sym_trigger_event_token2, - ACTIONS(157), 1, - sym_cast, - ACTIONS(161), 1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, anon_sym_SLASH, - ACTIONS(163), 1, anon_sym_DASH, - ACTIONS(165), 1, - anon_sym_PLUS, - STATE(229), 1, - sym_comparison_null, - STATE(596), 1, - sym_other_op, - STATE(599), 1, - sym_comparison_kw, - STATE(602), 1, - sym_contains_op, - STATE(603), 1, - sym_comparison_op, - ACTIONS(63), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(159), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(594), 2, - sym_and, - sym_or, - ACTIONS(65), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(193), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(453), 4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(33), 25, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(403), 40, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_returning_token1, - ACTIONS(49), 5, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29060] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1324), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(792), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(111), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -42839,7 +50049,455 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [29156] = 3, + sym_cast, + aux_sym_and_token1, + [35624] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(57), 13, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(343), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [35756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(425), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [35811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [35866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(371), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [35921] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(884), 1, + anon_sym_SLASH, + ACTIONS(886), 1, + anon_sym_DASH, + ACTIONS(888), 1, + anon_sym_PLUS, + ACTIONS(894), 1, + sym_cast, + STATE(642), 1, + sym_comparison_null, + STATE(829), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(839), 1, + sym_comparison_kw, + STATE(840), 1, + sym_other_op, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(882), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(890), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(892), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + STATE(852), 2, + sym_and, + sym_or, + ACTIONS(55), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(57), 4, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(155), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [36069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(107), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [36124] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 21, @@ -42890,59 +50548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [29210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(796), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - ACTIONS(305), 29, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - aux_sym_and_token1, - [29266] = 3, + [36178] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 21, @@ -42993,705 +50599,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [29320] = 24, + [36232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(798), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1504), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, + ACTIONS(409), 7, aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29415] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1507), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29510] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(802), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1442), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29605] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1430), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29700] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1413), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29795] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(808), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1394), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29890] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1533), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29985] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(812), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1561), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30080] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1550), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30175] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(453), 3, + ACTIONS(922), 10, anon_sym_SEMI, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + ACTIONS(407), 29, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -43701,1751 +50649,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [30266] = 24, + sym_cast, + aux_sym_and_token1, + [36288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(413), 7, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(816), 1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(924), 10, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(153), 1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + ACTIONS(411), 29, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + aux_sym_and_token1, + [36344] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, STATE(1540), 1, aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30361] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(818), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1568), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30456] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(820), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1460), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30551] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(822), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1519), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30646] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(824), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1558), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30741] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(826), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1546), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30836] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(828), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1539), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30931] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1530), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31026] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(832), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1520), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31121] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(834), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1515), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31216] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(836), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1509), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31311] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(838), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1462), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31406] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(840), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1505), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31501] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(842), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1498), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31596] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(844), 1, + ACTIONS(926), 2, anon_sym_SEMI, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1463), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31691] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(846), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1548), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31786] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(848), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1488), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31881] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(850), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1481), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31976] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(852), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1484), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32071] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1552), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32166] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(856), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1480), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32261] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(858), 1, - anon_sym_SEMI, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1541), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32356] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(860), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - STATE(1537), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32451] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(862), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32541] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(864), 1, - aux_sym_sequence_increment_token2, - ACTIONS(866), 1, aux_sym_for_statement_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -45455,13 +50759,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -45471,134 +50775,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [32633] = 22, + [36440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(930), 1, + anon_sym_LPAREN, + STATE(566), 1, + sym_precision, + ACTIONS(73), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(868), 2, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 27, anon_sym_SEMI, anon_sym_COMMA, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32723] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(870), 1, - aux_sym_sequence_increment_token2, - ACTIONS(872), 1, - aux_sym_for_statement_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -45608,66 +50827,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [32815] = 23, + sym_cast, + [36498] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, + ACTIONS(79), 1, + aux_sym_grant_targets_token4, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(874), 1, - aux_sym_sequence_increment_token2, - ACTIONS(876), 1, - aux_sym_for_statement_token2, - STATE(153), 1, + ACTIONS(208), 1, + anon_sym_SLASH, + ACTIONS(210), 1, + anon_sym_DASH, + ACTIONS(212), 1, + anon_sym_PLUS, + ACTIONS(216), 1, + sym_cast, + STATE(332), 1, sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, + STATE(777), 1, sym_other_op, - ACTIONS(63), 2, + STATE(782), 1, + sym_comparison_kw, + STATE(794), 1, + sym_contains_op, + STATE(795), 1, + sym_comparison_op, + ACTIONS(91), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(71), 2, + ACTIONS(99), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(206), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + STATE(873), 2, sym_and, sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(111), 4, + ACTIONS(214), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(597), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -45677,7 +50899,3550 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [32907] = 3, + [36592] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(932), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1618), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36687] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(934), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1700), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36782] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(936), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1600), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36877] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(938), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1678), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36972] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(940), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1676), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37067] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(942), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1752), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37162] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(944), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1567), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(946), 1, + anon_sym_LPAREN, + STATE(584), 1, + sym_precision, + ACTIONS(73), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37314] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(948), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1642), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37409] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(950), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1699), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37504] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(952), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1636), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37599] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(954), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1596), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37694] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(956), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1702), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37789] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(958), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1570), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37884] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1575), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37979] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(962), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1616), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38074] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1587), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 1, + anon_sym_LBRACK, + STATE(594), 1, + aux_sym__type_repeat1, + ACTIONS(968), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(129), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38228] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(970), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1585), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38323] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(972), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1583), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38418] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(974), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1696), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38513] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(976), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1623), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38608] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(978), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1680), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38703] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(980), 1, + anon_sym_SEMI, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1644), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38798] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(982), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1614), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38893] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(984), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1580), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [38988] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(986), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1681), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39083] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1577), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39178] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(990), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1684), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39273] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(992), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1669), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39368] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(597), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_returning_token1, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39459] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(994), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1634), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39554] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(996), 1, + anon_sym_SEMI, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1671), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39649] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(998), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1688), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39744] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1000), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1686), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39839] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1002), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1603), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39934] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1004), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1609), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40029] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1006), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1755), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40124] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1008), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1640), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40219] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1010), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1666), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40314] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1012), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1658), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40409] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1014), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1647), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40504] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1016), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1565), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40599] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1018), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1613), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40694] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_RBRACK, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1649), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40789] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(1022), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + STATE(1673), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_LPAREN, + ACTIONS(1026), 1, + anon_sym_DOT, + ACTIONS(1028), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(166), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [40942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(145), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [40994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(141), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41098] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1030), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(139), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(137), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41240] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 17, @@ -45726,18 +54491,776 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [32959] = 6, + [41292] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(878), 1, - anon_sym_LPAREN, - ACTIONS(880), 1, - anon_sym_DOT, - ACTIONS(882), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 16, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1032), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1034), 1, + aux_sym_for_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41384] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1036), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41474] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1038), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1040), 1, + aux_sym_for_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41566] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1042), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1044), 1, + aux_sym_for_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41658] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + anon_sym_LBRACK, + STATE(601), 1, + aux_sym__type_repeat1, + ACTIONS(1048), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(131), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(129), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41716] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1050), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(145), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41857] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1052), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41946] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1054), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(141), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [42086] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1056), 1, + aux_sym_if_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42175] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1058), 1, + aux_sym_for_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1060), 1, + anon_sym_LPAREN, + ACTIONS(1062), 1, + anon_sym_DOT, + ACTIONS(1064), 1, + aux_sym_time_expression_token1, + ACTIONS(170), 15, aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -45752,7 +55275,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(123), 25, + ACTIONS(166), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45778,317 +55301,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [33017] = 22, + [42321] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(884), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33107] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(876), 1, - aux_sym_for_statement_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33196] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(886), 1, - aux_sym_if_statement_token2, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33285] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(888), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33374] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(890), 1, + ACTIONS(1066), 1, anon_sym_DOT_DOT, - STATE(153), 1, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46098,13 +55352,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46114,48 +55368,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33463] = 22, + [42410] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(892), 1, - aux_sym_if_statement_token2, - STATE(153), 1, + ACTIONS(1068), 1, + anon_sym_DOT_DOT, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46165,13 +55419,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46181,48 +55435,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33552] = 22, + [42499] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(894), 1, - anon_sym_RPAREN, - STATE(153), 1, + ACTIONS(1070), 1, + aux_sym_for_statement_token2, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46232,13 +55486,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46248,64 +55502,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33641] = 22, + [42588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(139), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(896), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(137), 27, anon_sym_SEMI, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46315,48 +55549,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33730] = 22, + sym_cast, + [42639] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(898), 1, - aux_sym_for_statement_token2, - STATE(153), 1, + ACTIONS(1072), 1, + anon_sym_DOT_DOT, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46366,13 +55601,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46382,48 +55617,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33819] = 22, + [42728] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(900), 1, - aux_sym_for_statement_token2, - STATE(153), 1, + ACTIONS(1074), 1, + anon_sym_RPAREN, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46433,13 +55668,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46449,7 +55684,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33908] = 3, + [42817] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1076), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42906] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1078), 1, + anon_sym_SEMI, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42995] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 16, @@ -46497,48 +55866,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [33959] = 22, + [43046] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, + ACTIONS(61), 1, anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, + ACTIONS(63), 1, anon_sym_DASH, - ACTIONS(105), 1, + ACTIONS(65), 1, anon_sym_PLUS, - ACTIONS(109), 1, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, aux_sym_trigger_event_token2, - ACTIONS(902), 1, - anon_sym_RPAREN, - STATE(153), 1, + ACTIONS(1044), 1, + aux_sym_for_statement_token2, + STATE(103), 1, sym_comparison_null, - STATE(681), 1, + STATE(856), 1, sym_comparison_op, - STATE(683), 1, + STATE(861), 1, sym_contains_op, - STATE(684), 1, + STATE(864), 1, sym_comparison_kw, - STATE(685), 1, + STATE(866), 1, sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, + ACTIONS(59), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(687), 2, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, sym_and, sym_or, - ACTIONS(65), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -46548,13 +55917,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(49), 5, + ACTIONS(77), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(73), 9, + ACTIONS(101), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46564,1025 +55933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [34048] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 1, - anon_sym_LPAREN, - ACTIONS(906), 1, - anon_sym_DOT, - ACTIONS(908), 1, - aux_sym_time_expression_token1, - ACTIONS(127), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(123), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [34105] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(910), 1, - anon_sym_SEMI, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34194] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(912), 1, - anon_sym_SEMI, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34283] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(914), 1, - anon_sym_DOT_DOT, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34372] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(916), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34461] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(918), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34550] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(920), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34639] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(922), 1, - anon_sym_RPAREN, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34728] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_comparison_kw_token1, - ACTIONS(75), 1, - aux_sym_and_token1, - ACTIONS(99), 1, - anon_sym_SLASH, - ACTIONS(101), 1, - sym_cast, - ACTIONS(103), 1, - anon_sym_DASH, - ACTIONS(105), 1, - anon_sym_PLUS, - ACTIONS(109), 1, - aux_sym_trigger_event_token2, - ACTIONS(924), 1, - anon_sym_DOT_DOT, - STATE(153), 1, - sym_comparison_null, - STATE(681), 1, - sym_comparison_op, - STATE(683), 1, - sym_contains_op, - STATE(684), 1, - sym_comparison_kw, - STATE(685), 1, - sym_other_op, - ACTIONS(63), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(71), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(687), 2, - sym_and, - sym_or, - ACTIONS(65), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(111), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(49), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(73), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [34869] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [34921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(930), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [34973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(79), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(934), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(335), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(333), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(317), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(339), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(337), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35272] = 3, + [43135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 16, aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -47594,13 +55953,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(29), 25, + ACTIONS(29), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -47620,10 +55981,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35321] = 3, + [43186] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(343), 16, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1080), 1, + anon_sym_SEMI, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43275] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1082), 1, + aux_sym_if_statement_token2, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(966), 1, + anon_sym_LBRACK, + STATE(599), 1, + aux_sym__type_repeat1, + ACTIONS(157), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -47640,7 +56139,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(341), 25, + ACTIONS(155), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47666,10 +56165,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35370] = 3, + [43419] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 16, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1084), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43508] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1086), 1, + anon_sym_SEMI, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43597] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1088), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43686] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_SLASH, + ACTIONS(63), 1, + anon_sym_DASH, + ACTIONS(65), 1, + anon_sym_PLUS, + ACTIONS(67), 1, + sym_cast, + ACTIONS(97), 1, + aux_sym_comparison_kw_token1, + ACTIONS(105), 1, + aux_sym_and_token1, + ACTIONS(117), 1, + aux_sym_trigger_event_token2, + ACTIONS(1090), 1, + anon_sym_RPAREN, + STATE(103), 1, + sym_comparison_null, + STATE(856), 1, + sym_comparison_op, + STATE(861), 1, + sym_contains_op, + STATE(864), 1, + sym_comparison_kw, + STATE(866), 1, + sym_other_op, + ACTIONS(59), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(91), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + STATE(871), 2, + sym_and, + sym_or, + ACTIONS(93), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(111), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(77), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43775] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 1, + anon_sym_LBRACK, + STATE(599), 1, + aux_sym__type_repeat1, + ACTIONS(161), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -47686,7 +56457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(313), 25, + ACTIONS(159), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47712,195 +56483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35419] = 3, + [43830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(329), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(347), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(345), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(305), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(936), 1, + ACTIONS(1095), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(351), 16, + ACTIONS(281), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -47917,7 +56505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(349), 25, + ACTIONS(279), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47943,57 +56531,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35666] = 4, + [43882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(938), 1, + ACTIONS(1046), 1, + anon_sym_LBRACK, + STATE(606), 1, + aux_sym__type_repeat1, + ACTIONS(157), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(155), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [43936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1097), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(205), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [35717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 16, + ACTIONS(281), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48010,7 +56602,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(325), 25, + ACTIONS(279), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48036,10 +56628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35766] = 3, + [43988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 16, + ACTIONS(161), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48056,11 +56648,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(41), 25, + ACTIONS(159), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -48082,10 +56675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35815] = 3, + [44038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 16, + ACTIONS(1099), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48102,7 +56697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(301), 25, + ACTIONS(279), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48128,10 +56723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35864] = 3, + [44090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(311), 16, + ACTIONS(1101), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48148,7 +56745,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(309), 25, + ACTIONS(279), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48174,10 +56771,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35913] = 3, + [44142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 16, + ACTIONS(1103), 1, + anon_sym_LBRACK, + STATE(606), 1, + aux_sym__type_repeat1, + ACTIONS(161), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(159), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48194,7 +56840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(321), 25, + ACTIONS(501), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48220,10 +56866,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35962] = 3, + [44245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 16, + ACTIONS(1106), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(507), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -48240,7 +56933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(33), 25, + ACTIONS(505), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48266,7 +56959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36011] = 3, + [44345] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 16, @@ -48312,13 +57005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36060] = 4, + [44394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(940), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(209), 15, + ACTIONS(499), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48333,7 +57025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(205), 25, + ACTIONS(497), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48359,11 +57051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36111] = 3, + [44443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(307), 15, + ACTIONS(495), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48378,7 +57071,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(305), 25, + ACTIONS(493), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48404,101 +57097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36159] = 3, + [44492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(311), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - aux_sym_and_token1, - sym__identifier, - ACTIONS(309), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 15, + ACTIONS(35), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48539,11 +57143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36303] = 3, + [44541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(343), 15, + ACTIONS(349), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48558,7 +57163,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(341), 25, + ACTIONS(347), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48584,11 +57189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36351] = 3, + [44590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 15, + ACTIONS(409), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48603,7 +57209,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(79), 25, + ACTIONS(407), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48629,10 +57235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36399] = 3, + [44639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(347), 15, + ACTIONS(161), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48648,7 +57254,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(345), 25, + ACTIONS(159), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(417), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48674,10 +57327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36447] = 3, + [44737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 15, + ACTIONS(1108), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48693,7 +57348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(329), 25, + ACTIONS(279), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48719,11 +57374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36495] = 3, + [44788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(351), 15, + ACTIONS(353), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -48738,7 +57394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(349), 25, + ACTIONS(351), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48764,7 +57420,1147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36543] = 3, + [44837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(509), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(371), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(425), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1110), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(411), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(403), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(343), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(421), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(387), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(55), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(155), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(281), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(279), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(389), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(387), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(497), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(493), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(351), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(411), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(343), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(417), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(405), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(403), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(421), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(155), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + aux_sym_and_token1, + sym__identifier, + ACTIONS(347), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 15, @@ -48809,10 +58605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36591] = 3, + [46102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(339), 15, + ACTIONS(503), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48828,7 +58624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(337), 25, + ACTIONS(501), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48854,10 +58650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36639] = 3, + [46150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(327), 15, + ACTIONS(373), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48873,7 +58669,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(325), 25, + ACTIONS(371), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48899,10 +58695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36687] = 3, + [46198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 15, + ACTIONS(427), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48918,7 +58714,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(321), 25, + ACTIONS(425), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48944,10 +58740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36735] = 3, + [46246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 15, + ACTIONS(507), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -48963,7 +58759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(29), 25, + ACTIONS(505), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -48989,10 +58785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36783] = 3, + [46294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(335), 15, + ACTIONS(35), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -49008,7 +58804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(333), 25, + ACTIONS(33), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49034,10 +58830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36831] = 3, + [46342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 15, + ACTIONS(57), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -49053,7 +58849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(317), 25, + ACTIONS(55), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49079,10 +58875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36879] = 3, + [46390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 15, + ACTIONS(511), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -49098,7 +58894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(301), 25, + ACTIONS(509), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49124,10 +58920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36927] = 3, + [46438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(315), 15, + ACTIONS(409), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -49143,7 +58939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, aux_sym_and_token1, sym__identifier, - ACTIONS(313), 25, + ACTIONS(407), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49169,175 +58965,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36975] = 2, + [46486] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 35, - anon_sym_SEMI, - aux_sym_update_statement_token2, - 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_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, + ACTIONS(309), 1, 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, - [37016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(944), 35, - anon_sym_SEMI, - aux_sym_update_statement_token2, - 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_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, - [37057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(946), 35, - anon_sym_SEMI, - aux_sym_update_statement_token2, - 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_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, - [37098] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(431), 1, + ACTIONS(313), 1, aux_sym_trigger_exec_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(952), 1, + ACTIONS(1118), 1, aux_sym_for_statement_token1, - ACTIONS(954), 1, + ACTIONS(1120), 1, aux_sym_select_statement_token1, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(968), 1, + ACTIONS(1136), 1, sym_number, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(2031), 1, + STATE(2336), 1, sym_with_query, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(1802), 2, + STATE(2028), 2, sym_execute_statement, sym_select_statement, - STATE(455), 10, + STATE(582), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49346,58 +59028,181 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37182] = 24, + [46574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(431), 1, - aux_sym_trigger_exec_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1140), 36, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, anon_sym_LPAREN, - ACTIONS(950), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_items_token2, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, - ACTIONS(954), 1, + 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, - ACTIONS(956), 1, + 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, + [46616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1142), 36, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_items_token2, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_roles_token2, + aux_sym_sequence_start_token2, + aux_sym_for_statement_token2, + aux_sym_select_statement_token1, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [46658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1144), 36, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_items_token2, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_roles_token2, + aux_sym_sequence_start_token2, + aux_sym_for_statement_token2, + aux_sym_select_statement_token1, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [46700] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(313), 1, + aux_sym_trigger_exec_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1120), 1, + aux_sym_select_statement_token1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(972), 1, + ACTIONS(1146), 1, aux_sym_for_statement_token1, - ACTIONS(974), 1, + ACTIONS(1148), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(2031), 1, + STATE(2336), 1, sym_with_query, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(1841), 2, + STATE(2042), 2, sym_execute_statement, sym_select_statement, - STATE(460), 10, + STATE(585), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49406,55 +59211,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37266] = 23, + [46788] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(976), 1, + ACTIONS(1150), 1, anon_sym_RPAREN, - ACTIONS(978), 1, + ACTIONS(1152), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1897), 1, + STATE(2010), 1, sym_select_statement, - STATE(676), 2, + STATE(2034), 1, + sym_with_query, + STATE(787), 2, sym_minus, sym_plus, - STATE(407), 10, + STATE(534), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49463,55 +59271,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37346] = 23, + [46872] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(980), 1, + ACTIONS(1154), 1, anon_sym_RPAREN, - ACTIONS(982), 1, + ACTIONS(1156), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1784), 1, - sym_select_statement, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(676), 2, + STATE(2116), 1, + sym_select_statement, + STATE(787), 2, sym_minus, sym_plus, - STATE(404), 10, + STATE(520), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49520,55 +59331,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37426] = 23, + [46956] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(984), 1, + ACTIONS(1158), 1, anon_sym_RPAREN, - ACTIONS(986), 1, + ACTIONS(1160), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1983), 1, + STATE(1981), 1, sym_select_statement, - STATE(676), 2, + STATE(2034), 1, + sym_with_query, + STATE(787), 2, sym_minus, sym_plus, - STATE(422), 10, + STATE(526), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49577,55 +59391,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37506] = 23, + [47040] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(988), 1, + ACTIONS(1162), 1, anon_sym_RPAREN, - ACTIONS(990), 1, + ACTIONS(1164), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1931), 1, + STATE(2195), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(414), 10, + STATE(549), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49634,55 +59451,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37586] = 23, + [47124] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(992), 1, + ACTIONS(1166), 1, anon_sym_RPAREN, - ACTIONS(994), 1, + ACTIONS(1168), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1989), 1, + STATE(2210), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(423), 10, + STATE(535), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49691,55 +59511,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37666] = 23, + [47208] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(996), 1, + ACTIONS(1170), 1, anon_sym_RPAREN, - ACTIONS(998), 1, + ACTIONS(1172), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1914), 1, + STATE(2156), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(410), 10, + STATE(518), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49748,55 +59571,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37746] = 23, + [47292] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1000), 1, + ACTIONS(1174), 1, anon_sym_RPAREN, - ACTIONS(1002), 1, + ACTIONS(1176), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(2033), 1, + STATE(2226), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(425), 10, + STATE(527), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49805,55 +59631,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37826] = 23, + [47376] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1004), 1, + ACTIONS(1178), 1, anon_sym_RPAREN, - ACTIONS(1006), 1, + ACTIONS(1180), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1948), 1, + STATE(2179), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(416), 10, + STATE(543), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49862,55 +59691,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37906] = 23, + [47460] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1008), 1, + ACTIONS(1182), 1, anon_sym_RPAREN, - ACTIONS(1010), 1, + ACTIONS(1184), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1995), 1, + STATE(2087), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(426), 10, + STATE(539), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49919,55 +59751,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [37986] = 23, + [47544] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1012), 1, + ACTIONS(1186), 1, anon_sym_RPAREN, - ACTIONS(1014), 1, + ACTIONS(1188), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1879), 1, + STATE(2110), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(417), 10, + STATE(553), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -49976,55 +59811,58 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38066] = 23, + [47628] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1016), 1, + ACTIONS(1190), 1, anon_sym_RPAREN, - ACTIONS(1018), 1, + ACTIONS(1192), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1977), 1, + STATE(2038), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(401), 10, + STATE(529), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50033,112 +59871,648 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38146] = 23, + [47712] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1020), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - ACTIONS(1022), 1, + ACTIONS(1196), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2027), 1, + sym_select_statement, + STATE(2034), 1, sym_with_query, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(551), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [47796] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1198), 1, + anon_sym_RPAREN, + ACTIONS(1200), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2204), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(548), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [47880] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1202), 1, + anon_sym_RPAREN, + ACTIONS(1204), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2133), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(555), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [47964] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1206), 1, + anon_sym_RPAREN, + ACTIONS(1208), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2216), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(524), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48048] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1210), 1, + anon_sym_RPAREN, + ACTIONS(1212), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2222), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(516), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48132] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1214), 1, + anon_sym_RPAREN, + ACTIONS(1216), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2063), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(557), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48216] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1218), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2125), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(556), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48297] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1220), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2029), 1, + sym_select_statement, + STATE(2034), 1, + sym_with_query, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(540), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48378] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1222), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2148), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(554), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48459] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1224), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(2034), 1, + sym_with_query, + STATE(2049), 1, + sym_select_statement, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(530), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [48540] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + aux_sym_sequence_start_token2, + ACTIONS(333), 1, + aux_sym_select_statement_token1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1226), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, STATE(2001), 1, sym_select_statement, - STATE(676), 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, - [38226] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1024), 1, - anon_sym_RPAREN, - ACTIONS(1026), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1860), 1, - sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(413), 10, + STATE(531), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50147,55 +60521,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38306] = 23, + [48621] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1028), 1, - anon_sym_RPAREN, - ACTIONS(1030), 1, + ACTIONS(1228), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1838), 1, - sym_select_statement, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(676), 2, + STATE(2035), 1, + sym_select_statement, + STATE(787), 2, sym_minus, sym_plus, - STATE(427), 10, + STATE(560), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50204,55 +60579,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38386] = 23, + [48702] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1032), 1, - anon_sym_RPAREN, - ACTIONS(1034), 1, + ACTIONS(1230), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1965), 1, + STATE(2079), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(419), 10, + STATE(515), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50261,55 +60637,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38466] = 23, + [48783] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1036), 1, - anon_sym_RPAREN, - ACTIONS(1038), 1, + ACTIONS(1232), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1815), 1, - sym_select_statement, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(676), 2, + STATE(2102), 1, + sym_select_statement, + STATE(787), 2, sym_minus, sym_plus, - STATE(402), 10, + STATE(546), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50318,55 +60695,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38546] = 23, + [48864] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1040), 1, - anon_sym_RPAREN, - ACTIONS(1042), 1, + ACTIONS(1234), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(2005), 1, + STATE(2055), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(430), 10, + STATE(528), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50375,53 +60753,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38626] = 22, + [48945] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1044), 1, + ACTIONS(1236), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1781), 1, + STATE(1989), 1, sym_select_statement, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(405), 10, + STATE(519), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50430,53 +60811,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38703] = 22, + [49026] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1046), 1, + ACTIONS(1238), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1891), 1, + STATE(1989), 1, sym_select_statement, - STATE(676), 2, + STATE(2034), 1, + sym_with_query, + STATE(787), 2, sym_minus, sym_plus, - STATE(406), 10, + STATE(550), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50485,53 +60869,56 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38780] = 22, + [49107] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(449), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1048), 1, + ACTIONS(1240), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(1942), 1, + STATE(2171), 1, sym_select_statement, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(415), 10, + STATE(537), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50540,96 +60927,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [38857] = 22, + [49188] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1050), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1959), 1, - sym_select_statement, - STATE(676), 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, - [38934] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 1, + ACTIONS(1242), 1, ts_builtin_sym_end, - ACTIONS(1054), 1, + ACTIONS(1244), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(1247), 1, aux_sym_update_statement_token1, - ACTIONS(1057), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(1060), 1, + ACTIONS(1250), 1, aux_sym_create_type_statement_token1, - ACTIONS(1063), 1, + ACTIONS(1253), 1, aux_sym_insert_statement_token1, - ACTIONS(1066), 1, + ACTIONS(1256), 1, aux_sym_insert_conflict_token3, - ACTIONS(1069), 1, + ACTIONS(1259), 1, aux_sym_delete_statement_token1, - ACTIONS(1072), 1, + ACTIONS(1262), 1, aux_sym_alter_table_statement_token1, - ACTIONS(1075), 1, + ACTIONS(1265), 1, aux_sym_grant_statement_token1, - ACTIONS(1078), 1, + ACTIONS(1268), 1, anon_sym_BSLASH, - ACTIONS(1081), 1, + ACTIONS(1271), 1, aux_sym_sequence_start_token2, - ACTIONS(1084), 1, + ACTIONS(1274), 1, aux_sym_select_statement_token1, - STATE(531), 1, + STATE(688), 1, aux_sym_source_file_repeat1, - STATE(919), 1, + STATE(1069), 1, sym_psql_statement, - STATE(1312), 1, + STATE(1545), 1, sym_with_query, - STATE(2006), 16, + STATE(2331), 17, sym__statement, + sym_drop_type_statement, sym_update_statement, sym_drop_function_statement, sym_create_type_statement, @@ -50645,53 +60978,54 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [39001] = 22, + [49256] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1087), 1, + ACTIONS(1277), 1, + anon_sym_RPAREN, + ACTIONS(1279), 1, + aux_sym_insert_items_token1, + ACTIONS(1281), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1925), 1, - sym_select_statement, - STATE(676), 2, + STATE(1720), 1, + sym_insert_item, + STATE(787), 2, sym_minus, sym_plus, - STATE(411), 10, + STATE(565), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -50700,68 +61034,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [39078] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1089), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1908), 1, - sym_select_statement, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(408), 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, - [39155] = 17, + [49334] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, - aux_sym_update_statement_token1, + aux_sym_drop_type_statement_token1, ACTIONS(9), 1, - aux_sym_drop_function_statement_token1, + aux_sym_update_statement_token1, ACTIONS(11), 1, aux_sym_create_type_statement_token1, ACTIONS(13), 1, @@ -50780,16 +61059,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(1091), 1, + ACTIONS(1283), 1, ts_builtin_sym_end, - STATE(531), 1, + STATE(688), 1, aux_sym_source_file_repeat1, - STATE(919), 1, + STATE(1069), 1, sym_psql_statement, - STATE(1312), 1, + STATE(1545), 1, sym_with_query, - STATE(2006), 16, + STATE(2331), 17, sym__statement, + sym_drop_type_statement, sym_update_statement, sym_drop_function_statement, sym_create_type_statement, @@ -50805,381 +61085,322 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [39222] = 22, + [49402] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1093), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1854), 1, - sym_select_statement, - STATE(1856), 1, - sym_with_query, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(412), 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, - [39299] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1095), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1856), 1, - sym_with_query, - STATE(1873), 1, - sym_select_statement, - STATE(676), 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, - [39376] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1097), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1807), 1, - sym_select_statement, - STATE(1856), 1, - sym_with_query, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(400), 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, - [39453] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1099), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1807), 1, - sym_select_statement, - STATE(1856), 1, - sym_with_query, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(403), 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, - [39530] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1101), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1831), 1, - sym_select_statement, - STATE(1856), 1, - sym_with_query, - STATE(676), 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, - [39607] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 1, - aux_sym_sequence_start_token2, - ACTIONS(449), 1, - aux_sym_select_statement_token1, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1103), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1853), 1, - sym_select_statement, - STATE(1856), 1, - sym_with_query, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(420), 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, - [39684] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1105), 1, - anon_sym_RPAREN, - ACTIONS(1107), 1, + ACTIONS(1285), 1, aux_sym_insert_items_token1, - ACTIONS(1109), 1, + ACTIONS(1287), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(1409), 1, + STATE(1287), 1, + sym_update_value, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(429), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [49477] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1285), 1, + aux_sym_insert_items_token1, + ACTIONS(1287), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(1598), 1, + sym_update_value, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(429), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [49552] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1289), 1, + anon_sym_SEMI, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1309), 1, + sym_number, + ACTIONS(1311), 1, + sym__identifier, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(1725), 1, + sym_select_item, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(426), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [49627] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1285), 1, + aux_sym_insert_items_token1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1331), 1, + sym_number, + ACTIONS(1333), 1, + sym__identifier, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(1287), 1, + sym_update_value, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(443), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [49702] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1285), 1, + aux_sym_insert_items_token1, + ACTIONS(1287), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(1894), 1, + sym_update_value, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(429), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [49777] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1279), 1, + aux_sym_insert_items_token1, + ACTIONS(1281), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(1943), 1, sym_insert_item, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(440), 10, + STATE(565), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51188,49 +61409,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [39758] = 20, + [49852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1111), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, - aux_sym_insert_items_token1, - ACTIONS(1115), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1121), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1123), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1125), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1127), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1129), 1, - sym_number, - ACTIONS(1131), 1, + ACTIONS(1138), 1, sym__identifier, - STATE(173), 1, + ACTIONS(1285), 1, + aux_sym_insert_items_token1, + ACTIONS(1287), 1, + sym_number, + STATE(50), 1, sym_identifier, - STATE(613), 1, + STATE(791), 1, sym_not, - STATE(1122), 1, + STATE(1664), 1, sym_update_value, - STATE(614), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(324), 10, + STATE(429), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51239,304 +61463,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [39829] = 20, + [49927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1335), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1337), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1341), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1349), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1351), 1, aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1113), 1, - aux_sym_insert_items_token1, - ACTIONS(1133), 1, + ACTIONS(1353), 1, sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1669), 1, - sym_update_value, - STATE(676), 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, - [39900] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1355), 1, sym__identifier, - ACTIONS(1113), 1, - aux_sym_insert_items_token1, - ACTIONS(1133), 1, - sym_number, - STATE(41), 1, + STATE(561), 1, sym_identifier, - STATE(678), 1, + STATE(828), 1, sym_not, - STATE(1122), 1, - sym_update_value, - STATE(676), 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, - [39971] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1113), 1, - aux_sym_insert_items_token1, - ACTIONS(1133), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1412), 1, - sym_update_value, - STATE(676), 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, - [40042] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1107), 1, - aux_sym_insert_items_token1, - ACTIONS(1109), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1705), 1, - sym_insert_item, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(440), 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, - [40113] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1113), 1, - aux_sym_insert_items_token1, - ACTIONS(1133), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(1511), 1, - sym_update_value, - STATE(676), 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, - [40184] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1135), 1, - anon_sym_SEMI, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1153), 1, - sym_number, - ACTIONS(1155), 1, - sym__identifier, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(1444), 1, + STATE(1337), 1, sym_select_item, - STATE(711), 2, + STATE(830), 2, sym_minus, sym_plus, - STATE(323), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51545,96 +61515,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40255] = 19, + [49999] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1335), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1337), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1341), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1349), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1351), 1, aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1157), 1, - aux_sym_return_statement_token2, - ACTIONS(1159), 1, + ACTIONS(1353), 1, sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(454), 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, - [40323] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1177), 1, - sym_number, - ACTIONS(1179), 1, + ACTIONS(1355), 1, sym__identifier, - STATE(439), 1, + STATE(561), 1, sym_identifier, - STATE(665), 1, + STATE(828), 1, sym_not, - STATE(882), 1, + STATE(1302), 1, sym_select_item, - STATE(669), 2, + STATE(830), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51643,47 +61567,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40391] = 19, + [50071] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1181), 1, - anon_sym_RPAREN, - ACTIONS(1183), 1, + ACTIONS(1357), 1, + anon_sym_RBRACK, + ACTIONS(1359), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(432), 10, + STATE(558), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51692,47 +61619,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40459] = 19, + [50143] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(751), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(755), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(757), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(765), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(767), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(769), 1, aux_sym_false_token1, - ACTIONS(1177), 1, + ACTIONS(771), 1, sym_number, - ACTIONS(1179), 1, + ACTIONS(773), 1, sym__identifier, - STATE(439), 1, + STATE(276), 1, sym_identifier, - STATE(665), 1, + STATE(845), 1, sym_not, - STATE(1188), 1, + STATE(1036), 1, sym_select_item, - STATE(669), 2, + STATE(849), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(79), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51741,47 +61671,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40527] = 19, + [50215] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1111), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1121), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1123), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1125), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1127), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1131), 1, + ACTIONS(1138), 1, sym__identifier, - ACTIONS(1185), 1, - aux_sym_grant_privileges_token1, - ACTIONS(1187), 1, + ACTIONS(1361), 1, + anon_sym_RBRACK, + ACTIONS(1363), 1, sym_number, - STATE(173), 1, + STATE(50), 1, sym_identifier, - STATE(613), 1, + STATE(791), 1, sym_not, - STATE(614), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(279), 10, + STATE(552), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51790,47 +61723,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40595] = 19, + [50287] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(1291), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1293), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(1295), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(1297), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(1303), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1305), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(1307), 1, aux_sym_false_token1, - ACTIONS(1177), 1, + ACTIONS(1309), 1, sym_number, - ACTIONS(1179), 1, + ACTIONS(1311), 1, sym__identifier, - STATE(439), 1, + STATE(580), 1, sym_identifier, - STATE(665), 1, + STATE(814), 1, sym_not, - STATE(1232), 1, + STATE(1560), 1, sym_select_item, - STATE(669), 2, + STATE(813), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(426), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51839,47 +61775,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40663] = 19, + [50359] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(594), 1, + ACTIONS(837), 1, + anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(596), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(598), 1, + ACTIONS(855), 1, sym_number, - ACTIONS(600), 1, + ACTIONS(857), 1, sym__identifier, - STATE(172), 1, + STATE(310), 1, sym_identifier, - STATE(576), 1, + STATE(742), 1, sym_not, - STATE(882), 1, + STATE(1036), 1, sym_select_item, - STATE(581), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(33), 10, + STATE(109), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -51888,145 +61827,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40731] = 19, + [50431] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1315), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1317), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1319), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1325), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1327), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1329), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1333), 1, sym__identifier, - ACTIONS(1189), 1, - anon_sym_SEMI, - ACTIONS(1191), 1, + ACTIONS(1365), 1, sym_number, - STATE(41), 1, + STATE(214), 1, sym_identifier, - STATE(678), 1, + STATE(859), 1, sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(424), 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, - [40799] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(844), 1, - anon_sym_SEMI, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1193), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(431), 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, - [40867] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1195), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(1023), 1, + STATE(1158), 1, sym_order_by_item, - STATE(614), 2, + STATE(862), 2, sym_minus, sym_plus, - STATE(165), 10, + STATE(202), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52035,47 +61879,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [40935] = 19, + [50503] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(760), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(762), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(764), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(766), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(768), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(770), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(772), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(774), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(776), 1, - sym_number, - ACTIONS(778), 1, + ACTIONS(1138), 1, sym__identifier, - STATE(206), 1, + ACTIONS(1367), 1, + anon_sym_RBRACK, + ACTIONS(1369), 1, + sym_number, + STATE(50), 1, sym_identifier, - STATE(615), 1, + STATE(791), 1, sym_not, - STATE(882), 1, - sym_select_item, - STATE(569), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(86), 10, + STATE(542), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52084,47 +61931,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [41003] = 19, + [50575] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(1177), 1, + ACTIONS(670), 1, sym_number, - ACTIONS(1179), 1, + ACTIONS(672), 1, sym__identifier, - STATE(439), 1, + STATE(212), 1, sym_identifier, - STATE(665), 1, + STATE(832), 1, sym_not, - STATE(1169), 1, + STATE(1036), 1, sym_select_item, - STATE(669), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(45), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52133,47 +61983,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [41071] = 19, + [50647] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(1335), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1337), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(1341), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1349), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(1351), 1, aux_sym_false_token1, - ACTIONS(1177), 1, + ACTIONS(1353), 1, sym_number, - ACTIONS(1179), 1, + ACTIONS(1355), 1, sym__identifier, - STATE(439), 1, + STATE(561), 1, sym_identifier, - STATE(665), 1, + STATE(828), 1, sym_not, - STATE(1144), 1, + STATE(1297), 1, sym_select_item, - STATE(669), 2, + STATE(830), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52182,47 +62035,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [41139] = 19, + [50719] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(1335), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1337), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(1341), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(1347), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1349), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(1351), 1, aux_sym_false_token1, - ACTIONS(1177), 1, + ACTIONS(1353), 1, sym_number, - ACTIONS(1179), 1, + ACTIONS(1355), 1, sym__identifier, - STATE(439), 1, + STATE(561), 1, sym_identifier, - STATE(665), 1, + STATE(828), 1, sym_not, - STATE(1138), 1, + STATE(1323), 1, sym_select_item, - STATE(669), 2, + STATE(830), 2, sym_minus, sym_plus, - STATE(249), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52231,47 +62087,622 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [41207] = 19, + [50791] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1137), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1139), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1145), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1147), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1151), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1153), 1, - sym_number, - ACTIONS(1155), 1, + ACTIONS(1138), 1, sym__identifier, - STATE(452), 1, + ACTIONS(1371), 1, + anon_sym_RBRACK, + ACTIONS(1373), 1, + sym_number, + STATE(50), 1, sym_identifier, - STATE(710), 1, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(521), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [50863] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1375), 1, + anon_sym_RBRACK, + ACTIONS(1377), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(536), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [50935] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1379), 1, + anon_sym_RBRACK, + ACTIONS(1381), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(525), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51007] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1383), 1, + anon_sym_RBRACK, + ACTIONS(1385), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(559), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51079] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1387), 1, + anon_sym_RBRACK, + ACTIONS(1389), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(544), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51151] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1391), 1, + anon_sym_RBRACK, + ACTIONS(1393), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(541), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51223] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1365), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(1186), 1, + sym_order_by_item, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(202), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51295] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1395), 1, + anon_sym_RBRACK, + ACTIONS(1397), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(533), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51367] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1353), 1, + sym_number, + ACTIONS(1355), 1, + sym__identifier, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(1355), 1, + sym_select_item, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(367), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51439] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1399), 1, + aux_sym_return_statement_token2, + ACTIONS(1401), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(596), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51511] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1403), 1, + aux_sym_grant_privileges_token1, + ACTIONS(1405), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(370), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51583] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1353), 1, + sym_number, + ACTIONS(1355), 1, + sym__identifier, + STATE(561), 1, + sym_identifier, + STATE(828), 1, sym_not, STATE(1345), 1, sym_select_item, - STATE(711), 2, + STATE(830), 2, sym_minus, sym_plus, - STATE(323), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -52280,2170 +62711,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [41275] = 19, + [51655] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1177), 1, - sym_number, - ACTIONS(1179), 1, - sym__identifier, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(1180), 1, - sym_select_item, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(249), 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, - [41343] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1177), 1, - sym_number, - ACTIONS(1179), 1, - sym__identifier, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(1168), 1, - sym_select_item, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(249), 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, - [41411] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1195), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(1018), 1, - sym_order_by_item, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(165), 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, - [41479] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(754), 1, - sym_number, - ACTIONS(756), 1, - sym__identifier, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(882), 1, - sym_select_item, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(77), 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, - [41547] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1153), 1, - sym_number, - ACTIONS(1155), 1, - sym__identifier, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(882), 1, - sym_select_item, - STATE(711), 2, - sym_minus, - sym_plus, - STATE(323), 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, - [41615] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, - ACTIONS(1197), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 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, - [41680] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, - ACTIONS(1199), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(288), 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, - [41745] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1201), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [41810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1219), 1, - sym_number, - ACTIONS(1221), 1, - sym__identifier, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [41875] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1223), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(456), 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, - [41940] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1225), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 2, - sym_minus, - sym_plus, - STATE(91), 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, - [42005] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1227), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(80), 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, - [42070] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, - ACTIONS(1229), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(35), 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, - [42135] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1231), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 2, - sym_minus, - sym_plus, - STATE(96), 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, - [42200] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1233), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [42265] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1235), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [42330] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1237), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [42395] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, - ACTIONS(1239), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(42), 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, - [42460] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1241), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [42525] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1243), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [42590] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1245), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 2, - sym_minus, - sym_plus, - STATE(79), 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, - [42655] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, - ACTIONS(1247), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(125), 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, - [42720] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1249), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(457), 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, - [42785] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1251), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [42850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1253), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(116), 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, - [42915] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1255), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 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, - [42980] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1257), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 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, - [43045] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1259), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(458), 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, - [43110] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1261), 1, - anon_sym_LPAREN, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1277), 1, - sym_number, - ACTIONS(1279), 1, - sym__identifier, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(124), 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, - [43175] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1281), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 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, - [43240] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1283), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(50), 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, - [43305] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1285), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(95), 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, - [43370] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1287), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(37), 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, - [43435] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, - ACTIONS(1289), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 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, - [43500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, - anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, ACTIONS(1291), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 2, - sym_minus, - sym_plus, - STATE(93), 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, - [43565] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, ACTIONS(1293), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(36), 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, - [43630] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, ACTIONS(1295), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(148), 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, - [43695] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, ACTIONS(1297), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(147), 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, - [43760] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, ACTIONS(1299), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(49), 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, - [43825] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, + aux_sym_array_constructor_token1, ACTIONS(1301), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(40), 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, - [43890] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, ACTIONS(1303), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(146), 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, - [43955] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, ACTIONS(1305), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(54), 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, - [44020] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, ACTIONS(1307), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(34), 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, - [44085] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, ACTIONS(1309), 1, sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(144), 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, - [44150] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1311), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [44215] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, sym__identifier, - ACTIONS(1313), 1, - sym_number, - STATE(206), 1, + STATE(580), 1, sym_identifier, - STATE(615), 1, + STATE(814), 1, sym_not, - STATE(569), 2, + STATE(1036), 1, + sym_select_item, + STATE(813), 2, sym_minus, sym_plus, - STATE(142), 10, + STATE(426), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -54452,468 +62763,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [44280] = 18, + [51727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, - aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, - ACTIONS(1315), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [44345] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, - ACTIONS(1317), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 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, - [44410] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, - ACTIONS(1319), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 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, - [44475] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1321), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(48), 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, - [44540] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1323), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(44), 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, - [44605] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, - aux_sym_alter_column_action_token2, - ACTIONS(764), 1, - anon_sym_DOLLAR, - ACTIONS(766), 1, - anon_sym_SQUOTE, - ACTIONS(768), 1, - aux_sym_time_expression_token4, - ACTIONS(770), 1, - anon_sym_STAR, - ACTIONS(772), 1, - aux_sym_true_token1, - ACTIONS(774), 1, - aux_sym_false_token1, - ACTIONS(778), 1, - sym__identifier, - ACTIONS(1325), 1, - sym_number, - STATE(206), 1, - sym_identifier, - STATE(615), 1, - sym_not, - STATE(569), 2, - sym_minus, - sym_plus, - STATE(166), 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, - [44670] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, ACTIONS(1335), 1, - aux_sym_time_expression_token4, + anon_sym_LPAREN, ACTIONS(1337), 1, - anon_sym_STAR, + aux_sym_alter_column_action_token2, ACTIONS(1339), 1, - aux_sym_true_token1, + anon_sym_DOLLAR, ACTIONS(1341), 1, - aux_sym_false_token1, + anon_sym_SQUOTE, ACTIONS(1343), 1, - sym_number, + aux_sym_array_constructor_token1, ACTIONS(1345), 1, - sym__identifier, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 2, - sym_minus, - sym_plus, - STATE(75), 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, - [44735] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, ACTIONS(1347), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [44800] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1349), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(435), 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, - [44865] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, + aux_sym_true_token1, ACTIONS(1351), 1, - anon_sym_LPAREN, + aux_sym_false_token1, ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, + sym_number, ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1367), 1, - sym_number, - ACTIONS(1369), 1, sym__identifier, - STATE(31), 1, + STATE(561), 1, sym_identifier, - STATE(645), 1, + STATE(828), 1, sym_not, - STATE(646), 2, + STATE(1036), 1, + sym_select_item, + STATE(830), 2, sym_minus, sym_plus, - STATE(6), 10, + STATE(367), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -54922,891 +62815,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [44930] = 18, + [51799] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1371), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(441), 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, - [44995] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, - ACTIONS(1373), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 2, - sym_minus, - sym_plus, - STATE(70), 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, - [45060] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, - ACTIONS(1375), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [45125] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1377), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [45190] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, - aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, - ACTIONS(1379), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(184), 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, - [45255] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, - ACTIONS(1381), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 2, - sym_minus, - sym_plus, - STATE(8), 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, - [45320] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, - ACTIONS(1383), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 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, - [45385] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1385), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(445), 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, - [45450] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, - ACTIONS(1387), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [45515] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, - ACTIONS(1389), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 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, - [45580] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, - ACTIONS(1391), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(43), 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, - [45645] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, - ACTIONS(1393), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(45), 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, - [45710] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, - ACTIONS(1395), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [45775] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, - ACTIONS(1397), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 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, - [45840] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, - ACTIONS(1401), 1, - sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(137), 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, - [45905] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, - ACTIONS(1403), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 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, - [45970] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(1405), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [46035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1407), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [46100] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, + anon_sym_SEMI, ACTIONS(1409), 1, sym_number, - STATE(180), 1, + STATE(50), 1, sym_identifier, - STATE(617), 1, + STATE(791), 1, sym_not, - STATE(616), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(68), 10, + STATE(547), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -55815,92 +62867,102 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [46165] = 18, + [51871] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, ACTIONS(1335), 1, - aux_sym_time_expression_token4, + anon_sym_LPAREN, ACTIONS(1337), 1, - anon_sym_STAR, + aux_sym_alter_column_action_token2, ACTIONS(1339), 1, - aux_sym_true_token1, + anon_sym_DOLLAR, ACTIONS(1341), 1, - aux_sym_false_token1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1353), 1, + sym_number, + ACTIONS(1355), 1, + sym__identifier, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(1402), 1, + sym_select_item, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(367), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [51943] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1411), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [46230] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, + anon_sym_RBRACK, ACTIONS(1413), 1, sym_number, - STATE(172), 1, + STATE(50), 1, sym_identifier, - STATE(576), 1, + STATE(791), 1, sym_not, - STATE(581), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(57), 10, + STATE(517), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -55909,92 +62971,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [46295] = 18, + [52015] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1327), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1329), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1333), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1335), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1337), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1341), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1345), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1415), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 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, - [46360] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, + anon_sym_RPAREN, ACTIONS(1417), 1, sym_number, - STATE(31), 1, + STATE(50), 1, sym_identifier, - STATE(645), 1, + STATE(791), 1, sym_not, - STATE(646), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(13), 10, + STATE(523), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -56003,45 +63023,50 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [46425] = 18, + [52087] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1351), 1, + ACTIONS(996), 1, + anon_sym_SEMI, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1357), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1359), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1361), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1365), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1369), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1419), 1, sym_number, - STATE(31), 1, + STATE(50), 1, sym_identifier, - STATE(645), 1, + STATE(791), 1, sym_not, - STATE(646), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(14), 10, + STATE(538), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -56050,45 +63075,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [46490] = 18, + [52159] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(594), 1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(596), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(600), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1421), 1, sym_number, - STATE(172), 1, + STATE(50), 1, sym_identifier, - STATE(576), 1, + STATE(791), 1, sym_not, - STATE(581), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(55), 10, + STATE(18), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -56097,515 +63125,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [46555] = 18, + [52228] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1351), 1, - anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, ACTIONS(1423), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 2, - sym_minus, - sym_plus, - STATE(15), 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, - [46620] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1351), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - aux_sym_true_token1, - ACTIONS(1365), 1, - aux_sym_false_token1, - ACTIONS(1369), 1, - sym__identifier, ACTIONS(1425), 1, - sym_number, - STATE(31), 1, - sym_identifier, - STATE(645), 1, - sym_not, - STATE(646), 2, - sym_minus, - sym_plus, - STATE(5), 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, - [46685] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, ACTIONS(1427), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(51), 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, - [46750] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, ACTIONS(1429), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(52), 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, - [46815] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(594), 1, - aux_sym_true_token1, - ACTIONS(596), 1, - aux_sym_false_token1, - ACTIONS(600), 1, - sym__identifier, ACTIONS(1431), 1, - sym_number, - STATE(172), 1, - sym_identifier, - STATE(576), 1, - sym_not, - STATE(581), 2, - sym_minus, - sym_plus, - STATE(53), 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, - [46880] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, + aux_sym_array_constructor_token1, ACTIONS(1433), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(448), 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, - [46945] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1111), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - ACTIONS(1121), 1, aux_sym_time_expression_token4, - ACTIONS(1123), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_true_token1, - ACTIONS(1127), 1, - aux_sym_false_token1, - ACTIONS(1131), 1, - sym__identifier, ACTIONS(1435), 1, - sym_number, - STATE(173), 1, - sym_identifier, - STATE(613), 1, - sym_not, - STATE(614), 2, - sym_minus, - sym_plus, - STATE(311), 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, - [47010] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(736), 1, - anon_sym_LPAREN, - ACTIONS(740), 1, - aux_sym_alter_column_action_token2, - ACTIONS(742), 1, - anon_sym_DOLLAR, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(746), 1, - aux_sym_time_expression_token4, - ACTIONS(748), 1, anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_true_token1, - ACTIONS(752), 1, - aux_sym_false_token1, - ACTIONS(756), 1, - sym__identifier, ACTIONS(1437), 1, - sym_number, - STATE(191), 1, - sym_identifier, - STATE(671), 1, - sym_not, - STATE(674), 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, - [47075] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1439), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(442), 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, - [47140] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1441), 1, sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 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, - [47205] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1443), 1, - sym_number, - STATE(439), 1, + sym__identifier, + STATE(250), 1, sym_identifier, - STATE(665), 1, + STATE(848), 1, sym_not, - STATE(669), 2, + STATE(850), 2, sym_minus, sym_plus, - STATE(293), 10, + STATE(90), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -56614,45 +63175,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [47270] = 18, + [52297] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1351), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1353), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1355), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1357), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1359), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1361), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1365), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1369), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1445), 1, sym_number, - STATE(31), 1, + STATE(50), 1, sym_identifier, - STATE(645), 1, + STATE(791), 1, sym_not, - STATE(646), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(7), 10, + STATE(583), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -56661,515 +63225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [47335] = 18, + [52366] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, - anon_sym_DOLLAR, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - ACTIONS(1335), 1, - aux_sym_time_expression_token4, - ACTIONS(1337), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - aux_sym_true_token1, - ACTIONS(1341), 1, - aux_sym_false_token1, - ACTIONS(1345), 1, - sym__identifier, ACTIONS(1447), 1, - sym_number, - STATE(180), 1, - sym_identifier, - STATE(617), 1, - sym_not, - STATE(616), 2, - sym_minus, - sym_plus, - STATE(74), 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, - [47400] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1449), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(295), 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, - [47465] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1451), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(291), 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, - [47530] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1453), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(292), 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, - [47595] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1455), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(294), 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, - [47660] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, + aux_sym_array_constructor_token1, ACTIONS(1457), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 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, - [47725] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1459), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(443), 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, - [47790] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, anon_sym_STAR, - ACTIONS(1173), 1, - aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1461), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(287), 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, - [47855] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1161), 1, - anon_sym_LPAREN, - ACTIONS(1163), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, - anon_sym_DOLLAR, - ACTIONS(1167), 1, - anon_sym_SQUOTE, - ACTIONS(1169), 1, - aux_sym_time_expression_token4, - ACTIONS(1171), 1, - anon_sym_STAR, - ACTIONS(1173), 1, aux_sym_true_token1, - ACTIONS(1175), 1, - aux_sym_false_token1, - ACTIONS(1179), 1, - sym__identifier, ACTIONS(1463), 1, - sym_number, - STATE(439), 1, - sym_identifier, - STATE(665), 1, - sym_not, - STATE(669), 2, - sym_minus, - sym_plus, - STATE(285), 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, - [47920] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, ACTIONS(1465), 1, sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(151), 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, - [47985] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, ACTIONS(1467), 1, - sym_number, - STATE(217), 1, + sym__identifier, + STATE(39), 1, sym_identifier, - STATE(690), 1, + STATE(746), 1, sym_not, - STATE(693), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(152), 10, + STATE(25), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57178,45 +63275,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48050] = 18, + [52435] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, ACTIONS(1469), 1, sym_number, - STATE(217), 1, + STATE(50), 1, sym_identifier, - STATE(690), 1, + STATE(791), 1, sym_not, - STATE(693), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(162), 10, + STATE(570), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57225,45 +63325,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48115] = 18, + [52504] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1161), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1449), 1, aux_sym_alter_column_action_token2, - ACTIONS(1165), 1, + ACTIONS(1451), 1, anon_sym_DOLLAR, - ACTIONS(1167), 1, + ACTIONS(1453), 1, anon_sym_SQUOTE, - ACTIONS(1169), 1, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, aux_sym_time_expression_token4, - ACTIONS(1171), 1, + ACTIONS(1459), 1, anon_sym_STAR, - ACTIONS(1173), 1, + ACTIONS(1461), 1, aux_sym_true_token1, - ACTIONS(1175), 1, + ACTIONS(1463), 1, aux_sym_false_token1, - ACTIONS(1179), 1, + ACTIONS(1467), 1, sym__identifier, ACTIONS(1471), 1, sym_number, - STATE(439), 1, + STATE(39), 1, sym_identifier, - STATE(665), 1, + STATE(746), 1, sym_not, - STATE(669), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(286), 10, + STATE(26), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57272,45 +63375,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48180] = 18, + [52573] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1137), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1139), 1, + ACTIONS(1449), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, + ACTIONS(1451), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, + ACTIONS(1453), 1, anon_sym_SQUOTE, - ACTIONS(1145), 1, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, aux_sym_time_expression_token4, - ACTIONS(1147), 1, + ACTIONS(1459), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1461), 1, aux_sym_true_token1, - ACTIONS(1151), 1, + ACTIONS(1463), 1, aux_sym_false_token1, - ACTIONS(1155), 1, + ACTIONS(1467), 1, sym__identifier, ACTIONS(1473), 1, sym_number, - STATE(452), 1, + STATE(39), 1, sym_identifier, - STATE(710), 1, + STATE(746), 1, sym_not, - STATE(711), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(381), 10, + STATE(24), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57319,45 +63425,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48245] = 18, + [52642] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(736), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(742), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(744), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(746), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(748), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(750), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(752), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(756), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1475), 1, sym_number, - STATE(191), 1, + STATE(50), 1, sym_identifier, - STATE(671), 1, + STATE(791), 1, sym_not, - STATE(674), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(87), 10, + STATE(595), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57366,45 +63475,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48310] = 18, + [52711] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, + ACTIONS(1449), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1451), 1, + anon_sym_DOLLAR, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, + aux_sym_time_expression_token4, + ACTIONS(1459), 1, + anon_sym_STAR, + ACTIONS(1461), 1, + aux_sym_true_token1, + ACTIONS(1463), 1, + aux_sym_false_token1, + ACTIONS(1467), 1, + sym__identifier, ACTIONS(1477), 1, sym_number, - STATE(217), 1, + STATE(39), 1, sym_identifier, - STATE(690), 1, + STATE(746), 1, sym_not, - STATE(693), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(163), 10, + STATE(21), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57413,45 +63525,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48375] = 18, + [52780] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, + ACTIONS(1449), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1451), 1, + anon_sym_DOLLAR, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, + aux_sym_time_expression_token4, + ACTIONS(1459), 1, + anon_sym_STAR, + ACTIONS(1461), 1, + aux_sym_true_token1, + ACTIONS(1463), 1, + aux_sym_false_token1, + ACTIONS(1467), 1, + sym__identifier, ACTIONS(1479), 1, sym_number, - STATE(217), 1, + STATE(39), 1, sym_identifier, - STATE(690), 1, + STATE(746), 1, sym_not, - STATE(693), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(127), 10, + STATE(19), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57460,45 +63575,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48440] = 18, + [52849] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(736), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(740), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(742), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(744), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(746), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(748), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(750), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(752), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(756), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1481), 1, sym_number, - STATE(191), 1, + STATE(310), 1, sym_identifier, - STATE(671), 1, + STATE(742), 1, sym_not, - STATE(674), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(88), 10, + STATE(174), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57507,45 +63625,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48505] = 18, + [52918] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, + ACTIONS(1449), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1451), 1, + anon_sym_DOLLAR, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, + aux_sym_time_expression_token4, + ACTIONS(1459), 1, + anon_sym_STAR, + ACTIONS(1461), 1, + aux_sym_true_token1, + ACTIONS(1463), 1, + aux_sym_false_token1, + ACTIONS(1467), 1, + sym__identifier, ACTIONS(1483), 1, sym_number, - STATE(217), 1, + STATE(39), 1, sym_identifier, - STATE(690), 1, + STATE(746), 1, sym_not, - STATE(693), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(133), 10, + STATE(20), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57554,45 +63675,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48570] = 18, + [52987] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1449), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1451), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1453), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1459), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1461), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1463), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1467), 1, sym__identifier, ACTIONS(1485), 1, sym_number, - STATE(41), 1, + STATE(39), 1, sym_identifier, - STATE(678), 1, + STATE(746), 1, sym_not, - STATE(676), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(28), 10, + STATE(12), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57601,45 +63725,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48635] = 18, + [53056] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(837), 1, anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, + aux_sym_true_token1, + ACTIONS(853), 1, + aux_sym_false_token1, + ACTIONS(857), 1, + sym__identifier, ACTIONS(1487), 1, sym_number, - STATE(217), 1, + STATE(310), 1, sym_identifier, - STATE(690), 1, + STATE(742), 1, sym_not, - STATE(693), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(136), 10, + STATE(177), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57648,45 +63775,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48700] = 18, + [53125] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(672), 1, sym__identifier, ACTIONS(1489), 1, sym_number, - STATE(41), 1, + STATE(212), 1, sym_identifier, - STATE(678), 1, + STATE(832), 1, sym_not, - STATE(676), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(27), 10, + STATE(63), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57695,45 +63825,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48765] = 18, + [53194] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(672), 1, sym__identifier, ACTIONS(1491), 1, sym_number, - STATE(41), 1, + STATE(212), 1, sym_identifier, - STATE(678), 1, + STATE(832), 1, sym_not, - STATE(676), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(26), 10, + STATE(55), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57742,45 +63875,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48830] = 18, + [53263] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(672), 1, sym__identifier, ACTIONS(1493), 1, sym_number, - STATE(41), 1, + STATE(212), 1, sym_identifier, - STATE(678), 1, + STATE(832), 1, sym_not, - STATE(676), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(17), 10, + STATE(58), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57789,45 +63925,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48895] = 18, + [53332] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1449), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1451), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1453), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1459), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1461), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1463), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1467), 1, sym__identifier, ACTIONS(1495), 1, sym_number, - STATE(41), 1, + STATE(39), 1, sym_identifier, - STATE(678), 1, + STATE(746), 1, sym_not, - STATE(676), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(25), 10, + STATE(28), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57836,45 +63975,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [48960] = 18, + [53401] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1111), 1, + ACTIONS(1447), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(1449), 1, aux_sym_alter_column_action_token2, - ACTIONS(1117), 1, + ACTIONS(1451), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1453), 1, anon_sym_SQUOTE, - ACTIONS(1121), 1, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, aux_sym_time_expression_token4, - ACTIONS(1123), 1, + ACTIONS(1459), 1, anon_sym_STAR, - ACTIONS(1125), 1, + ACTIONS(1461), 1, aux_sym_true_token1, - ACTIONS(1127), 1, + ACTIONS(1463), 1, aux_sym_false_token1, - ACTIONS(1131), 1, + ACTIONS(1467), 1, sym__identifier, ACTIONS(1497), 1, sym_number, - STATE(173), 1, + STATE(39), 1, sym_identifier, - STATE(613), 1, + STATE(746), 1, sym_not, - STATE(614), 2, + STATE(747), 2, sym_minus, sym_plus, - STATE(395), 10, + STATE(23), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57883,45 +64025,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49025] = 18, + [53470] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1499), 1, sym_number, - STATE(41), 1, + STATE(50), 1, sym_identifier, - STATE(678), 1, + STATE(791), 1, sym_not, - STATE(676), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(24), 10, + STATE(185), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57930,45 +64075,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49090] = 18, + [53539] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1501), 1, sym_number, - STATE(41), 1, + STATE(310), 1, sym_identifier, - STATE(678), 1, + STATE(742), 1, sym_not, - STATE(676), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(18), 10, + STATE(186), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -57977,45 +64125,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49155] = 18, + [53608] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(672), 1, sym__identifier, ACTIONS(1503), 1, sym_number, - STATE(41), 1, + STATE(212), 1, sym_identifier, - STATE(678), 1, + STATE(832), 1, sym_not, - STATE(676), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(23), 10, + STATE(59), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58024,45 +64175,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49220] = 18, + [53677] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(632), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(650), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(660), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(668), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(672), 1, sym__identifier, ACTIONS(1505), 1, sym_number, - STATE(41), 1, + STATE(212), 1, sym_identifier, - STATE(678), 1, + STATE(832), 1, sym_not, - STATE(676), 2, + STATE(827), 2, sym_minus, sym_plus, - STATE(433), 10, + STATE(74), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58071,45 +64225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49285] = 18, + [53746] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1507), 1, sym_number, - STATE(41), 1, + STATE(310), 1, sym_identifier, - STATE(678), 1, + STATE(742), 1, sym_not, - STATE(676), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(20), 10, + STATE(183), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58118,45 +64275,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49350] = 18, + [53815] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1509), 1, sym_number, - STATE(41), 1, + STATE(310), 1, sym_identifier, - STATE(678), 1, + STATE(742), 1, sym_not, - STATE(676), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(453), 10, + STATE(175), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58165,45 +64325,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49415] = 18, + [53884] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(562), 1, - anon_sym_LPAREN, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(568), 1, - aux_sym_alter_column_action_token2, - ACTIONS(580), 1, - anon_sym_DOLLAR, - ACTIONS(584), 1, - anon_sym_SQUOTE, - ACTIONS(586), 1, - aux_sym_time_expression_token4, - ACTIONS(588), 1, - anon_sym_STAR, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(594), 1, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(596), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(600), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1511), 1, sym_number, - STATE(172), 1, + STATE(50), 1, sym_identifier, - STATE(576), 1, + STATE(791), 1, sym_not, - STATE(581), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(46), 10, + STATE(597), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58212,562 +64375,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [49480] = 18, + [53953] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, ACTIONS(1513), 1, - sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(167), 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, - [49545] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1515), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 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, - [49610] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1517), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 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, - [49675] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, ACTIONS(1519), 1, - sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(161), 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, - [49740] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1521), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 2, - sym_minus, - sym_plus, - STATE(373), 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, - [49805] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, + aux_sym_array_constructor_token1, ACTIONS(1523), 1, - sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(171), 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, - [49870] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1203), 1, - anon_sym_LPAREN, - ACTIONS(1205), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1207), 1, - anon_sym_DOLLAR, - ACTIONS(1209), 1, - anon_sym_SQUOTE, - ACTIONS(1211), 1, aux_sym_time_expression_token4, - ACTIONS(1213), 1, - anon_sym_STAR, - ACTIONS(1215), 1, - aux_sym_true_token1, - ACTIONS(1217), 1, - aux_sym_false_token1, - ACTIONS(1221), 1, - sym__identifier, ACTIONS(1525), 1, - sym_number, - STATE(187), 1, - sym_identifier, - STATE(574), 1, - sym_not, - STATE(572), 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, - [49935] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1527), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 2, - sym_minus, - sym_plus, - STATE(372), 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, - [50000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1529), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(447), 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, - [50065] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1531), 1, sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(451), 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, - [50130] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, - ACTIONS(974), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(460), 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, - [50195] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1533), 1, - sym_number, - STATE(452), 1, + sym__identifier, + STATE(271), 1, sym_identifier, - STATE(710), 1, + STATE(808), 1, sym_not, - STATE(711), 2, + STATE(803), 2, sym_minus, sym_plus, - STATE(370), 10, + STATE(169), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58776,45 +64425,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50260] = 18, + [54022] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1137), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(1139), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(1145), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(1147), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(1151), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(1155), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1535), 1, sym_number, - STATE(452), 1, + STATE(310), 1, sym_identifier, - STATE(710), 1, + STATE(742), 1, sym_not, - STATE(711), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(368), 10, + STATE(181), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58823,45 +64475,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50325] = 18, + [54091] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1537), 1, sym_number, - STATE(41), 1, + STATE(310), 1, sym_identifier, - STATE(678), 1, + STATE(742), 1, sym_not, - STATE(676), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(409), 10, + STATE(170), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58870,45 +64525,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50390] = 18, + [54160] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1137), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1139), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1145), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1147), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1151), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1155), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1539), 1, sym_number, - STATE(452), 1, + STATE(50), 1, sym_identifier, - STATE(710), 1, + STATE(791), 1, sym_not, - STATE(711), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(367), 10, + STATE(458), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58917,45 +64575,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50455] = 18, + [54229] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, + ACTIONS(837), 1, anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, + aux_sym_true_token1, + ACTIONS(853), 1, + aux_sym_false_token1, + ACTIONS(857), 1, + sym__identifier, ACTIONS(1541), 1, sym_number, - STATE(217), 1, + STATE(310), 1, sym_identifier, - STATE(690), 1, + STATE(742), 1, sym_not, - STATE(693), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(177), 10, + STATE(176), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -58964,45 +64625,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50520] = 18, + [54298] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(948), 1, + ACTIONS(837), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(839), 1, aux_sym_alter_column_action_token2, - ACTIONS(956), 1, + ACTIONS(841), 1, anon_sym_DOLLAR, - ACTIONS(958), 1, + ACTIONS(843), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, aux_sym_time_expression_token4, - ACTIONS(962), 1, + ACTIONS(849), 1, anon_sym_STAR, - ACTIONS(964), 1, + ACTIONS(851), 1, aux_sym_true_token1, - ACTIONS(966), 1, + ACTIONS(853), 1, aux_sym_false_token1, - ACTIONS(970), 1, + ACTIONS(857), 1, sym__identifier, ACTIONS(1543), 1, sym_number, - STATE(41), 1, + STATE(310), 1, sym_identifier, - STATE(678), 1, + STATE(742), 1, sym_not, - STATE(676), 2, + STATE(739), 2, sym_minus, sym_plus, - STATE(393), 10, + STATE(182), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -59011,45 +64675,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50585] = 18, + [54367] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1327), 1, + ACTIONS(1114), 1, anon_sym_LPAREN, - ACTIONS(1329), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token2, - ACTIONS(1331), 1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1333), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(1335), 1, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, aux_sym_time_expression_token4, - ACTIONS(1337), 1, + ACTIONS(1130), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1132), 1, aux_sym_true_token1, - ACTIONS(1341), 1, + ACTIONS(1134), 1, aux_sym_false_token1, - ACTIONS(1345), 1, + ACTIONS(1138), 1, sym__identifier, ACTIONS(1545), 1, sym_number, - STATE(180), 1, + STATE(50), 1, sym_identifier, - STATE(617), 1, + STATE(791), 1, sym_not, - STATE(616), 2, + STATE(787), 2, sym_minus, sym_plus, - STATE(64), 10, + STATE(512), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -59058,280 +64725,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [50650] = 18, + [54436] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(636), 1, aux_sym_alter_column_action_token1, - ACTIONS(590), 1, + ACTIONS(662), 1, anon_sym_DASH, - ACTIONS(592), 1, + ACTIONS(664), 1, anon_sym_PLUS, - ACTIONS(1263), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1265), 1, - anon_sym_DOLLAR, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - ACTIONS(1269), 1, - aux_sym_time_expression_token4, - ACTIONS(1271), 1, - anon_sym_STAR, - ACTIONS(1273), 1, - aux_sym_true_token1, - ACTIONS(1275), 1, - aux_sym_false_token1, - ACTIONS(1279), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_LPAREN, ACTIONS(1547), 1, - sym_number, - STATE(217), 1, - sym_identifier, - STATE(690), 1, - sym_not, - STATE(693), 2, - sym_minus, - sym_plus, - STATE(183), 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, - [50715] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1549), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(459), 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, - [50780] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, - anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1551), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 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, - [50845] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(1137), 1, - anon_sym_LPAREN, - ACTIONS(1139), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1141), 1, anon_sym_DOLLAR, - ACTIONS(1143), 1, - anon_sym_SQUOTE, - ACTIONS(1145), 1, - aux_sym_time_expression_token4, - ACTIONS(1147), 1, - anon_sym_STAR, - ACTIONS(1149), 1, - aux_sym_true_token1, - ACTIONS(1151), 1, - aux_sym_false_token1, - ACTIONS(1155), 1, - sym__identifier, ACTIONS(1553), 1, - sym_number, - STATE(452), 1, - sym_identifier, - STATE(710), 1, - sym_not, - STATE(711), 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, - [50910] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, ACTIONS(1555), 1, - sym_number, - STATE(41), 1, - sym_identifier, - STATE(678), 1, - sym_not, - STATE(676), 2, - sym_minus, - sym_plus, - STATE(164), 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, - [50975] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 1, - aux_sym_alter_column_action_token1, - ACTIONS(590), 1, - anon_sym_DASH, - ACTIONS(592), 1, - anon_sym_PLUS, - ACTIONS(948), 1, - anon_sym_LPAREN, - ACTIONS(950), 1, - aux_sym_alter_column_action_token2, - ACTIONS(956), 1, - anon_sym_DOLLAR, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(960), 1, - aux_sym_time_expression_token4, - ACTIONS(962), 1, - anon_sym_STAR, - ACTIONS(964), 1, - aux_sym_true_token1, - ACTIONS(966), 1, - aux_sym_false_token1, - ACTIONS(970), 1, - sym__identifier, + aux_sym_array_constructor_token1, ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1565), 1, sym_number, - STATE(41), 1, + ACTIONS(1567), 1, + sym__identifier, + STATE(307), 1, sym_identifier, - STATE(678), 1, + STATE(786), 1, sym_not, - STATE(676), 2, + STATE(789), 2, sym_minus, sym_plus, - STATE(19), 10, + STATE(190), 11, sym_string, sym__value_expression, + sym_array_constructor, sym_dollar_quote_string, sym_time_expression, sym_function_call, @@ -59340,292 +64775,5752 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [51040] = 21, + [54505] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 1, - anon_sym_COMMA, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(717), 1, - aux_sym_returning_repeat1, - STATE(735), 1, - sym_into, - STATE(766), 1, - sym_select_from, - STATE(816), 1, - sym_select_where, - STATE(855), 1, - sym_select_group_by, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [51108] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_COMMA, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(716), 1, - aux_sym_returning_repeat1, - STATE(722), 1, - sym_into, - STATE(762), 1, - sym_select_from, - STATE(815), 1, - sym_select_where, - STATE(866), 1, - sym_select_group_by, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - ACTIONS(558), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [51176] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_COMMA, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(735), 1, - sym_into, - STATE(766), 1, - sym_select_from, - STATE(816), 1, - sym_select_where, - STATE(855), 1, - sym_select_group_by, - STATE(871), 1, - aux_sym_returning_repeat1, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [51244] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1561), 1, - anon_sym_COMMA, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(736), 1, - sym_into, - STATE(756), 1, - sym_select_from, - STATE(808), 1, - sym_select_where, - STATE(838), 1, - sym_select_group_by, - STATE(871), 1, - aux_sym_returning_repeat1, - STATE(895), 1, - sym_select_having, - STATE(959), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [51312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, anon_sym_LPAREN, - STATE(746), 1, - sym__list_of_identifiers, - ACTIONS(1579), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [51345] = 7, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1569), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(192), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54574] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1571), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(571), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54643] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1573), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(450), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54712] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1575), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(201), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54781] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1577), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(449), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54850] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1579), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(194), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54919] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1581), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(593), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [54988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1583), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(191), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55057] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, sym__identifier, ACTIONS(1585), 1, - aux_sym_update_statement_token2, - ACTIONS(1587), 1, - anon_sym_LPAREN, - STATE(750), 1, + sym_number, + STATE(307), 1, sym_identifier, - ACTIONS(1583), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1589), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [51384] = 4, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(171), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55126] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, anon_sym_LPAREN, - STATE(740), 1, - sym__list_of_identifiers, - ACTIONS(1591), 21, - anon_sym_SEMI, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1587), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(586), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55195] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1589), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(51), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55264] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1591), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(197), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55333] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1593), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(203), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55402] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1595), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(598), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55471] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1597), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(75), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55540] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1599), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(96), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55609] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1148), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(585), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55678] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(672), 1, + sym__identifier, + ACTIONS(1601), 1, + sym_number, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(827), 2, + sym_minus, + sym_plus, + STATE(69), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55747] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1603), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(86), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55816] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1605), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(73), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55885] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(837), 1, + anon_sym_LPAREN, + ACTIONS(839), 1, + aux_sym_alter_column_action_token2, + ACTIONS(841), 1, + anon_sym_DOLLAR, + ACTIONS(843), 1, + anon_sym_SQUOTE, + ACTIONS(845), 1, + aux_sym_array_constructor_token1, + ACTIONS(847), 1, + aux_sym_time_expression_token4, + ACTIONS(849), 1, + anon_sym_STAR, + ACTIONS(851), 1, + aux_sym_true_token1, + ACTIONS(853), 1, + aux_sym_false_token1, + ACTIONS(857), 1, + sym__identifier, + ACTIONS(1607), 1, + sym_number, + STATE(310), 1, + sym_identifier, + STATE(742), 1, + sym_not, + STATE(739), 2, + sym_minus, + sym_plus, + STATE(187), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [55954] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1609), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(587), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56023] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1611), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(195), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56092] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1613), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(196), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56161] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1615), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(16), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56230] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1617), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(575), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56299] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1619), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(188), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56368] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1621), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(545), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56437] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1623), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(11), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56506] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1625), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(76), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56575] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1627), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(93), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56644] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1629), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(61), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56713] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1631), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(57), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56782] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1633), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(265), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56851] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1635), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(569), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56920] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1637), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(279), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [56989] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1639), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(64), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57058] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1641), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(442), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57127] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1643), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(441), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57196] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1645), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(438), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57265] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1647), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(116), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57334] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1649), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(70), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57403] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1651), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(437), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57472] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1653), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(141), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57541] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1655), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(434), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57610] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1657), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(117), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57679] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1659), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(433), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57748] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1661), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(430), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57817] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1663), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(199), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57886] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1667), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(92), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [57955] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1669), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(464), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58024] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1671), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(461), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58093] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1551), 1, + anon_sym_DOLLAR, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + ACTIONS(1555), 1, + aux_sym_array_constructor_token1, + ACTIONS(1557), 1, + aux_sym_time_expression_token4, + ACTIONS(1559), 1, + anon_sym_STAR, + ACTIONS(1561), 1, + aux_sym_true_token1, + ACTIONS(1563), 1, + aux_sym_false_token1, + ACTIONS(1567), 1, + sym__identifier, + ACTIONS(1673), 1, + sym_number, + STATE(307), 1, + sym_identifier, + STATE(786), 1, + sym_not, + STATE(789), 2, + sym_minus, + sym_plus, + STATE(216), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58162] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1675), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(81), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58231] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1677), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(140), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58300] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1679), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(153), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58369] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1681), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(99), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58438] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1683), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(573), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58507] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1685), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(139), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58576] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1687), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(118), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58645] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1689), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(472), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1691), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(473), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58783] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1693), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(590), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58852] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(672), 1, + sym__identifier, + ACTIONS(1695), 1, + sym_number, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(827), 2, + sym_minus, + sym_plus, + STATE(72), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58921] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(672), 1, + sym__identifier, + ACTIONS(1697), 1, + sym_number, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(827), 2, + sym_minus, + sym_plus, + STATE(62), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [58990] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1699), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(423), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59059] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1701), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(482), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59128] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR, + ACTIONS(1341), 1, + anon_sym_SQUOTE, + ACTIONS(1343), 1, + aux_sym_array_constructor_token1, + ACTIONS(1345), 1, + aux_sym_time_expression_token4, + ACTIONS(1347), 1, + anon_sym_STAR, + ACTIONS(1349), 1, + aux_sym_true_token1, + ACTIONS(1351), 1, + aux_sym_false_token1, + ACTIONS(1355), 1, + sym__identifier, + ACTIONS(1703), 1, + sym_number, + STATE(561), 1, + sym_identifier, + STATE(828), 1, + sym_not, + STATE(830), 2, + sym_minus, + sym_plus, + STATE(418), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59197] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1705), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(84), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59266] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(672), 1, + sym__identifier, + ACTIONS(1707), 1, + sym_number, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(827), 2, + sym_minus, + sym_plus, + STATE(71), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59335] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1709), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(578), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59404] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1711), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(483), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59473] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1713), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(138), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59542] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1715), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(137), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59611] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1717), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(17), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59680] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1719), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(120), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59749] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1721), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(496), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59818] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1723), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(500), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59887] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1725), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(121), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [59956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1727), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(122), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60025] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1729), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(581), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60094] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1731), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(123), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60163] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1733), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(152), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60232] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1735), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(568), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60301] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1449), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1451), 1, + anon_sym_DOLLAR, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, + aux_sym_time_expression_token4, + ACTIONS(1459), 1, + anon_sym_STAR, + ACTIONS(1461), 1, + aux_sym_true_token1, + ACTIONS(1463), 1, + aux_sym_false_token1, + ACTIONS(1467), 1, + sym__identifier, + ACTIONS(1737), 1, + sym_number, + STATE(39), 1, + sym_identifier, + STATE(746), 1, + sym_not, + STATE(747), 2, + sym_minus, + sym_plus, + STATE(27), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60370] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1739), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(82), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60439] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1741), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(154), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60508] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1423), 1, + anon_sym_LPAREN, + ACTIONS(1425), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1427), 1, + anon_sym_DOLLAR, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + ACTIONS(1431), 1, + aux_sym_array_constructor_token1, + ACTIONS(1433), 1, + aux_sym_time_expression_token4, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1437), 1, + aux_sym_true_token1, + ACTIONS(1439), 1, + aux_sym_false_token1, + ACTIONS(1443), 1, + sym__identifier, + ACTIONS(1743), 1, + sym_number, + STATE(250), 1, + sym_identifier, + STATE(848), 1, + sym_not, + STATE(850), 2, + sym_minus, + sym_plus, + STATE(78), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60577] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1745), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(124), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60646] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1747), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(505), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60715] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1447), 1, + anon_sym_LPAREN, + ACTIONS(1449), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1451), 1, + anon_sym_DOLLAR, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(1455), 1, + aux_sym_array_constructor_token1, + ACTIONS(1457), 1, + aux_sym_time_expression_token4, + ACTIONS(1459), 1, + anon_sym_STAR, + ACTIONS(1461), 1, + aux_sym_true_token1, + ACTIONS(1463), 1, + aux_sym_false_token1, + ACTIONS(1467), 1, + sym__identifier, + ACTIONS(1749), 1, + sym_number, + STATE(39), 1, + sym_identifier, + STATE(746), 1, + sym_not, + STATE(747), 2, + sym_minus, + sym_plus, + STATE(9), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60784] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1751), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(7), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60853] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1753), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(576), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60922] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1755), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(10), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [60991] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1757), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(588), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61060] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1759), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(579), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61129] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1761), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(67), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61198] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1295), 1, + anon_sym_DOLLAR, + ACTIONS(1297), 1, + anon_sym_SQUOTE, + ACTIONS(1299), 1, + aux_sym_array_constructor_token1, + ACTIONS(1301), 1, + aux_sym_time_expression_token4, + ACTIONS(1303), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + aux_sym_true_token1, + ACTIONS(1307), 1, + aux_sym_false_token1, + ACTIONS(1311), 1, + sym__identifier, + ACTIONS(1763), 1, + sym_number, + STATE(580), 1, + sym_identifier, + STATE(814), 1, + sym_not, + STATE(813), 2, + sym_minus, + sym_plus, + STATE(476), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61267] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1765), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(13), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61336] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1767), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(60), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61405] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1769), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(592), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61474] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1771), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(14), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61543] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1773), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(514), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61612] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1775), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(6), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61681] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1777), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(125), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61750] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1513), 1, + anon_sym_LPAREN, + ACTIONS(1515), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1517), 1, + anon_sym_DOLLAR, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + ACTIONS(1521), 1, + aux_sym_array_constructor_token1, + ACTIONS(1523), 1, + aux_sym_time_expression_token4, + ACTIONS(1525), 1, + anon_sym_STAR, + ACTIONS(1527), 1, + aux_sym_true_token1, + ACTIONS(1529), 1, + aux_sym_false_token1, + ACTIONS(1533), 1, + sym__identifier, + ACTIONS(1779), 1, + sym_number, + STATE(271), 1, + sym_identifier, + STATE(808), 1, + sym_not, + STATE(803), 2, + sym_minus, + sym_plus, + STATE(132), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61819] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1781), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(134), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + aux_sym_alter_column_action_token2, + ACTIONS(757), 1, + anon_sym_DOLLAR, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + aux_sym_array_constructor_token1, + ACTIONS(763), 1, + aux_sym_time_expression_token4, + ACTIONS(765), 1, + anon_sym_STAR, + ACTIONS(767), 1, + aux_sym_true_token1, + ACTIONS(769), 1, + aux_sym_false_token1, + ACTIONS(773), 1, + sym__identifier, + ACTIONS(1783), 1, + sym_number, + STATE(276), 1, + sym_identifier, + STATE(845), 1, + sym_not, + STATE(849), 2, + sym_minus, + sym_plus, + STATE(131), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [61957] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1114), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1122), 1, + anon_sym_DOLLAR, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(1126), 1, + aux_sym_array_constructor_token1, + ACTIONS(1128), 1, + aux_sym_time_expression_token4, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1132), 1, + aux_sym_true_token1, + ACTIONS(1134), 1, + aux_sym_false_token1, + ACTIONS(1138), 1, + sym__identifier, + ACTIONS(1785), 1, + sym_number, + STATE(50), 1, + sym_identifier, + STATE(791), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + STATE(15), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [62026] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(638), 1, + aux_sym_alter_column_action_token2, + ACTIONS(650), 1, + anon_sym_DOLLAR, + ACTIONS(654), 1, + anon_sym_SQUOTE, + ACTIONS(656), 1, + aux_sym_array_constructor_token1, + ACTIONS(658), 1, + aux_sym_time_expression_token4, + ACTIONS(660), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(666), 1, + aux_sym_true_token1, + ACTIONS(668), 1, + aux_sym_false_token1, + ACTIONS(672), 1, + sym__identifier, + ACTIONS(1787), 1, + sym_number, + STATE(212), 1, + sym_identifier, + STATE(832), 1, + sym_not, + STATE(827), 2, + sym_minus, + sym_plus, + STATE(53), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [62095] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + aux_sym_alter_column_action_token1, + ACTIONS(662), 1, + anon_sym_DASH, + ACTIONS(664), 1, + anon_sym_PLUS, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1315), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1317), 1, + anon_sym_DOLLAR, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + ACTIONS(1321), 1, + aux_sym_array_constructor_token1, + ACTIONS(1323), 1, + aux_sym_time_expression_token4, + ACTIONS(1325), 1, + anon_sym_STAR, + ACTIONS(1327), 1, + aux_sym_true_token1, + ACTIONS(1329), 1, + aux_sym_false_token1, + ACTIONS(1333), 1, + sym__identifier, + ACTIONS(1789), 1, + sym_number, + STATE(214), 1, + sym_identifier, + STATE(859), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + STATE(66), 11, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [62164] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1793), 1, anon_sym_COMMA, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(895), 1, + sym_into, + STATE(915), 1, + sym_select_from, + STATE(967), 1, + sym_select_where, + STATE(1006), 1, + sym_select_group_by, + STATE(1048), 1, + aux_sym_returning_repeat1, + STATE(1070), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1136), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1350), 1, + sym__select_limit_offset, + ACTIONS(1791), 5, + anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [51417] = 3, + [62232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(1793), 1, + anon_sym_COMMA, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(874), 1, + aux_sym_returning_repeat1, + STATE(887), 1, + sym_into, + STATE(918), 1, + sym_select_from, + STATE(969), 1, + sym_select_where, + STATE(999), 1, + sym_select_group_by, + STATE(1056), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62300] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1793), 1, + anon_sym_COMMA, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(887), 1, + sym_into, + STATE(918), 1, + sym_select_from, + STATE(969), 1, + sym_select_where, + STATE(999), 1, + sym_select_group_by, + STATE(1048), 1, + aux_sym_returning_repeat1, + STATE(1056), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62368] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1793), 1, + anon_sym_COMMA, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(876), 1, + aux_sym_returning_repeat1, + STATE(896), 1, + sym_into, + STATE(920), 1, + sym_select_from, + STATE(966), 1, + sym_select_where, + STATE(994), 1, + sym_select_group_by, + STATE(1073), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_BSLASH, - ACTIONS(1593), 22, + ACTIONS(1811), 23, + aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, - aux_sym_drop_function_statement_token1, aux_sym_create_type_statement_token1, aux_sym_insert_statement_token1, aux_sym_insert_conflict_token3, @@ -59635,6 +70530,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, aux_sym_trigger_scope_token1, aux_sym_trigger_exec_token1, + aux_sym_open_cursor_statement_token1, aux_sym_get_diagnostics_statement_token1, aux_sym_for_statement_token3, aux_sym_raise_statement_token1, @@ -59646,144 +70542,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [51448] = 19, + [62468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(766), 1, - sym_select_from, - STATE(816), 1, - sym_select_where, - STATE(855), 1, - sym_select_group_by, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [51510] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1599), 1, - aux_sym_join_item_token1, - ACTIONS(1601), 1, - aux_sym_join_item_token2, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1080), 1, - sym_join_type, - STATE(730), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1597), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [51552] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1609), 1, - anon_sym_COMMA, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - STATE(764), 1, - sym_into, - STATE(803), 1, - sym_select_from, - STATE(835), 1, - sym_select_where, - STATE(921), 1, - sym_select_group_by, - STATE(926), 1, - aux_sym_returning_repeat1, - STATE(979), 1, - sym_where_filter, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [51620] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(730), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 19, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(899), 1, + sym__list_of_identifiers, + ACTIONS(1815), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, @@ -59796,63 +70571,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [51652] = 19, + [62501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(762), 1, - sym_select_from, - STATE(815), 1, - sym_select_where, - STATE(866), 1, - sym_select_group_by, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym__list_of_identifiers, + ACTIONS(1819), 21, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [51714] = 6, + 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, + [62534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(1615), 1, + ACTIONS(1823), 1, aux_sym_update_statement_token2, - STATE(720), 1, + ACTIONS(1825), 1, + anon_sym_LPAREN, + STATE(901), 1, sym_identifier, - ACTIONS(1613), 3, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1617), 16, + ACTIONS(1827), 16, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, @@ -59869,88 +70632,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [51750] = 4, + [62573] = 22, ACTIONS(3), 1, sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(725), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1619), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, + ACTIONS(1799), 1, aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - [51782] = 9, + ACTIONS(1829), 1, + anon_sym_COMMA, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + STATE(929), 1, + sym_into, + STATE(956), 1, + sym_select_from, + STATE(993), 1, + sym_select_where, + STATE(1072), 1, + sym_select_group_by, + STATE(1095), 1, + aux_sym_returning_repeat1, + STATE(1115), 1, + sym_where_filter, + STATE(1145), 1, + sym_select_having, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62641] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, - aux_sym_join_item_token1, - ACTIONS(1601), 1, - aux_sym_join_item_token2, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1080), 1, - sym_join_type, - STATE(723), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1619), 12, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(920), 1, + sym_select_from, + STATE(966), 1, + sym_select_where, + STATE(994), 1, + sym_select_group_by, + STATE(1073), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [51824] = 9, + [62703] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, - aux_sym_join_item_token1, - ACTIONS(1626), 1, - aux_sym_join_item_token2, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - STATE(1080), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + anon_sym_COMMA, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + STATE(890), 1, + aux_sym_returning_repeat1, + STATE(923), 1, + sym_into, + STATE(958), 1, + sym_select_from, + STATE(1021), 1, + sym_select_where, + STATE(1071), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1141), 1, + sym_select_having, + STATE(1187), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62771] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, sym_join_type, - STATE(730), 2, + STATE(893), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1635), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1621), 12, + ACTIONS(1833), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59962,8 +70787,208 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - [51866] = 3, + [62803] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + anon_sym_COMMA, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + STATE(882), 1, + aux_sym_returning_repeat1, + STATE(922), 1, + sym_into, + STATE(957), 1, + sym_select_from, + STATE(1007), 1, + sym_select_where, + STATE(1065), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62871] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(915), 1, + sym_select_from, + STATE(967), 1, + sym_select_where, + STATE(1006), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1136), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1350), 1, + sym__select_limit_offset, + ACTIONS(1791), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62933] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym_join_type, + STATE(885), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1839), 1, + aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1837), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1841), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63001] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + anon_sym_COMMA, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + STATE(922), 1, + sym_into, + STATE(957), 1, + sym_select_from, + STATE(1007), 1, + sym_select_where, + STATE(1065), 1, + sym_select_group_by, + STATE(1095), 1, + aux_sym_returning_repeat1, + STATE(1115), 1, + sym_where_filter, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -59990,785 +71015,224 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [51896] = 22, + [63099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1609), 1, - anon_sym_COMMA, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - STATE(769), 1, - sym_into, - STATE(802), 1, - sym_select_from, - STATE(851), 1, - sym_select_where, - STATE(892), 1, - sym_select_group_by, - STATE(926), 1, - aux_sym_returning_repeat1, - STATE(979), 1, - sym_where_filter, - STATE(996), 1, - sym_select_having, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [51964] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1609), 1, - anon_sym_COMMA, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - STATE(724), 1, - aux_sym_returning_repeat1, - STATE(761), 1, - sym_into, - STATE(797), 1, - sym_select_from, - STATE(854), 1, - sym_select_where, - STATE(920), 1, - sym_select_group_by, - STATE(970), 1, - sym_select_having, - STATE(979), 1, - sym_where_filter, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [52032] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1609), 1, - anon_sym_COMMA, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - STATE(732), 1, - aux_sym_returning_repeat1, - STATE(764), 1, - sym_into, - STATE(803), 1, - sym_select_from, - STATE(835), 1, - sym_select_where, - STATE(921), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [52100] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(756), 1, - sym_select_from, - STATE(808), 1, - sym_select_where, - STATE(838), 1, - sym_select_group_by, - STATE(895), 1, - sym_select_having, - STATE(959), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [52162] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - aux_sym_update_statement_token4, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(765), 1, - sym_select_from, - STATE(813), 1, - sym_select_where, - STATE(841), 1, - sym_select_group_by, - STATE(898), 1, - sym_select_having, - STATE(960), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1165), 1, - sym__select_limit_offset, - ACTIONS(1638), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [52224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + ACTIONS(1843), 1, aux_sym_join_item_token1, + ACTIONS(1845), 1, aux_sym_join_item_token2, + ACTIONS(1847), 1, aux_sym_join_item_token3, + ACTIONS(1849), 1, aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52251] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1642), 1, - anon_sym_COMMA, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(752), 1, - aux_sym_returning_repeat1, - STATE(791), 1, - sym_into, - STATE(804), 1, - sym_select_from, - STATE(883), 1, - sym_select_where, - STATE(935), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1429), 1, - sym__select_limit_offset, - [52318] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1642), 1, - anon_sym_COMMA, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(741), 1, - aux_sym_returning_repeat1, - STATE(778), 1, - sym_into, - STATE(812), 1, - sym_select_from, - STATE(875), 1, - sym_select_where, - STATE(947), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1443), 1, - sym__select_limit_offset, - [52385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52412] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1642), 1, - anon_sym_COMMA, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(791), 1, - sym_into, - STATE(804), 1, - sym_select_from, - STATE(883), 1, - sym_select_where, - STATE(935), 1, - sym_select_group_by, - STATE(958), 1, - aux_sym_returning_repeat1, - STATE(979), 1, - sym_where_filter, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1429), 1, - sym__select_limit_offset, - [52479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(331), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [52508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(327), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [52537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - STATE(737), 1, - sym_identifier, - ACTIONS(1646), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1648), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52570] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1650), 1, - aux_sym_update_statement_token2, - ACTIONS(1652), 1, - anon_sym_LPAREN, - STATE(750), 1, - sym_identifier, - ACTIONS(1583), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1589), 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, - [52607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1654), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1658), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(323), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [52717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1646), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52771] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - ACTIONS(1642), 1, - anon_sym_COMMA, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(776), 1, - sym_into, - STATE(807), 1, - sym_select_from, - STATE(872), 1, - sym_select_where, - STATE(936), 1, - sym_select_group_by, - STATE(958), 1, - aux_sym_returning_repeat1, - STATE(979), 1, - sym_where_filter, - STATE(1009), 1, - sym_select_having, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1417), 1, - sym__select_limit_offset, - [52838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1660), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [52865] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1662), 1, - aux_sym_join_item_token1, - ACTIONS(1664), 1, - aux_sym_join_item_token2, - STATE(1080), 1, + STATE(1230), 1, sym_join_type, - STATE(760), 2, + STATE(893), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1607), 3, + ACTIONS(1851), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1619), 10, + ACTIONS(1833), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [52905] = 3, + [63141] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(1855), 1, + aux_sym_join_item_token1, + ACTIONS(1858), 1, + aux_sym_join_item_token2, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + STATE(1230), 1, + sym_join_type, + STATE(893), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1853), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [63183] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1843), 1, + aux_sym_join_item_token1, + ACTIONS(1845), 1, + aux_sym_join_item_token2, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1230), 1, + sym_join_type, + STATE(892), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [63225] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(916), 1, + sym_select_from, + STATE(973), 1, + sym_select_where, + STATE(1013), 1, + sym_select_group_by, + STATE(1074), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1153), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63287] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + aux_sym_update_statement_token4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(918), 1, + sym_select_from, + STATE(969), 1, + sym_select_where, + STATE(999), 1, + sym_select_group_by, + STATE(1056), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1872), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, anon_sym_BSLASH, - ACTIONS(1593), 19, + ACTIONS(1811), 20, + aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, - aux_sym_drop_function_statement_token1, aux_sym_create_type_statement_token1, aux_sym_insert_statement_token1, aux_sym_insert_conflict_token3, @@ -60778,6 +71242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, aux_sym_trigger_scope_token1, aux_sym_trigger_exec_token1, + aux_sym_open_cursor_statement_token1, aux_sym_get_diagnostics_statement_token1, aux_sym_for_statement_token3, aux_sym_raise_statement_token1, @@ -60786,98 +71251,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [52933] = 17, + [63405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(813), 1, - sym_select_where, - STATE(841), 1, - sym_select_group_by, - STATE(898), 1, - sym_select_having, - STATE(960), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1165), 1, - sym__select_limit_offset, - ACTIONS(1638), 5, + ACTIONS(1874), 21, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [52989] = 17, + 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, + [63432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(815), 1, - sym_select_where, - STATE(866), 1, - sym_select_group_by, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, + ACTIONS(1876), 21, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [53045] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(770), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, + 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, @@ -60890,20 +71301,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [53075] = 4, + [63459] = 2, ACTIONS(3), 1, sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(758), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1619), 17, + ACTIONS(1878), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, @@ -60916,132 +71326,514 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [53105] = 9, + [63486] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1662), 1, - aux_sym_join_item_token1, - ACTIONS(1664), 1, - aux_sym_join_item_token2, - STATE(1080), 1, - sym_join_type, - STATE(770), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1597), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(904), 1, aux_sym_insert_statement_token2, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, + ACTIONS(1799), 1, aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - [53145] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1611), 1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, aux_sym_update_statement_token4, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(803), 1, - sym_select_from, - STATE(835), 1, - sym_select_where, - STATE(921), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, + STATE(903), 1, + aux_sym_returning_repeat1, + STATE(944), 1, sym_into, - STATE(1293), 1, + STATE(970), 1, + sym_select_from, + STATE(1043), 1, + sym_select_where, + STATE(1090), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1160), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1611), 1, sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [53207] = 17, + [63553] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - STATE(816), 1, - sym_select_where, - STATE(855), 1, - sym_select_group_by, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(979), 1, - sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(949), 1, sym_into, - STATE(1181), 1, + STATE(972), 1, + sym_select_from, + STATE(1052), 1, + sym_select_where, + STATE(1110), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1155), 1, + aux_sym_returning_repeat1, + STATE(1164), 1, + sym_select_having, + STATE(1224), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1637), 1, sym__select_limit_offset, - ACTIONS(1559), 5, + [63620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(373), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [63649] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(944), 1, + sym_into, + STATE(970), 1, + sym_select_from, + STATE(1043), 1, + sym_select_where, + STATE(1090), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1155), 1, + aux_sym_returning_repeat1, + STATE(1160), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1611), 1, + sym__select_limit_offset, + [63716] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1884), 1, + aux_sym_update_statement_token2, + ACTIONS(1886), 1, + anon_sym_LPAREN, + STATE(901), 1, + sym_identifier, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1827), 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, + [63753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + STATE(897), 1, + sym_identifier, + ACTIONS(1878), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1888), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(353), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [63842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1815), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1892), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(349), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [63952] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1880), 1, + anon_sym_COMMA, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(905), 1, + aux_sym_returning_repeat1, + STATE(941), 1, + sym_into, + STATE(974), 1, + sym_select_from, + STATE(1027), 1, + sym_select_where, + STATE(1099), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1161), 1, + sym_select_having, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1747), 1, + sym__select_limit_offset, + [64019] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(973), 1, + sym_select_where, + STATE(1013), 1, + sym_select_group_by, + STATE(1074), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1153), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [53263] = 7, + [64075] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(975), 1, + sym_select_where, + STATE(1017), 1, + sym_select_group_by, + STATE(1054), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1149), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1332), 1, + sym__select_limit_offset, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [64131] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, sym__identifier, - ACTIONS(1583), 1, + ACTIONS(1821), 1, anon_sym_COMMA, - ACTIONS(1668), 1, + ACTIONS(1896), 1, aux_sym_update_statement_token2, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_LPAREN, - STATE(750), 1, + STATE(901), 1, sym_identifier, - ACTIONS(1589), 15, + ACTIONS(1827), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -61057,155 +71849,239 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [53299] = 20, + [64167] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(802), 1, - sym_select_from, - STATE(851), 1, + STATE(967), 1, sym_select_where, - STATE(892), 1, + STATE(1006), 1, sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(996), 1, + STATE(1070), 1, sym_select_having, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [53361] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(805), 1, - sym_select_where, - STATE(861), 1, - sym_select_group_by, - STATE(888), 1, - sym_select_having, - STATE(964), 1, - sym_select_order_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1136), 1, + sym_select_order_by, + STATE(1238), 1, sym_select_offset, - STATE(1148), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, sym_into, - STATE(1160), 1, + STATE(1350), 1, sym__select_limit_offset, - ACTIONS(1672), 5, + ACTIONS(1791), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [53417] = 17, + [64223] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - STATE(808), 1, + STATE(966), 1, sym_select_where, - STATE(838), 1, + STATE(994), 1, sym_select_group_by, - STATE(895), 1, + STATE(1073), 1, sym_select_having, - STATE(959), 1, - sym_select_order_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, sym_into, - ACTIONS(1577), 5, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [53473] = 6, + [64279] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1615), 1, - aux_sym_update_statement_token2, - STATE(720), 1, - sym_identifier, - ACTIONS(1613), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 14, - aux_sym_insert_statement_token2, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, + ACTIONS(1799), 1, aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(969), 1, + sym_select_where, + STATE(999), 1, + sym_select_group_by, + STATE(1056), 1, + sym_select_having, + STATE(1115), 1, + sym_where_filter, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [64335] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, aux_sym_join_item_token3, + ACTIONS(1849), 1, aux_sym_join_type_token1, + ACTIONS(1900), 1, + aux_sym_join_item_token1, + ACTIONS(1902), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(928), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, + ACTIONS(1833), 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, - [53507] = 3, + [64375] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(956), 1, + sym_select_from, + STATE(993), 1, + sym_select_where, + STATE(1072), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1145), 1, + sym_select_having, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64437] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(957), 1, + sym_select_from, + STATE(1007), 1, + sym_select_where, + STATE(1065), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64499] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -61230,69 +72106,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [53535] = 20, + [64527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1611), 1, - aux_sym_update_statement_token4, - ACTIONS(1666), 1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1839), 1, + aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1837), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1841), 14, aux_sym_insert_statement_token2, - STATE(794), 1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [64561] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1831), 1, + aux_sym_update_statement_token4, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(958), 1, sym_select_from, - STATE(853), 1, + STATE(1021), 1, sym_select_where, - STATE(909), 1, + STATE(1071), 1, sym_select_group_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(992), 1, + STATE(1141), 1, sym_select_having, - STATE(1044), 1, + STATE(1187), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, sym_into, - STATE(1284), 1, + STATE(1554), 1, sym__select_limit_offset, - ACTIONS(1638), 2, + ACTIONS(695), 2, anon_sym_SEMI, anon_sym_RPAREN, - [53597] = 9, + [64623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - ACTIONS(1674), 1, - aux_sym_join_item_token1, - ACTIONS(1677), 1, - aux_sym_join_item_token2, - STATE(1080), 1, + STATE(1230), 1, sym_join_type, - STATE(770), 2, + STATE(928), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1635), 3, + ACTIONS(1833), 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(1621), 10, + aux_sym_where_filter_token1, + [64653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + ACTIONS(1906), 1, + aux_sym_join_item_token1, + ACTIONS(1909), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(928), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1853), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -61303,60 +72233,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [53637] = 20, + [64693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - ACTIONS(1611), 1, + ACTIONS(1831), 1, aux_sym_update_statement_token4, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(797), 1, + STATE(959), 1, sym_select_from, - STATE(854), 1, + STATE(997), 1, sym_select_where, - STATE(920), 1, + STATE(1062), 1, sym_select_group_by, - STATE(970), 1, - sym_select_having, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1028), 1, + STATE(1117), 1, + sym_select_having, + STATE(1209), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1147), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, sym_into, - STATE(1372), 1, + STATE(1454), 1, sym__select_limit_offset, - ACTIONS(558), 2, + ACTIONS(1870), 2, anon_sym_SEMI, anon_sym_RPAREN, - [53699] = 5, + [64755] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - STATE(737), 1, - sym_identifier, - ACTIONS(1646), 3, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(1900), 1, + aux_sym_join_item_token1, + ACTIONS(1902), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(921), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [64795] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym_join_type, + STATE(927), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 17, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1648), 14, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_select_having_token1, @@ -61371,394 +72332,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [53730] = 3, + [64825] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(323), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [53757] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1680), 1, - anon_sym_SEMI, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - STATE(783), 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, - [53802] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1700), 1, - anon_sym_SEMI, - STATE(786), 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, - [53847] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1638), 1, + ACTIONS(695), 1, aux_sym_for_statement_token2, - ACTIONS(1644), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1882), 1, aux_sym_update_statement_token4, - STATE(810), 1, + STATE(974), 1, sym_select_from, - STATE(877), 1, + STATE(1027), 1, sym_select_where, - STATE(937), 1, + STATE(1099), 1, sym_select_group_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1021), 1, + STATE(1161), 1, sym_select_having, - STATE(1060), 1, + STATE(1219), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1415), 1, - sym__select_limit_offset, - [53908] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1702), 1, - anon_sym_SEMI, - STATE(779), 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, - [53953] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(804), 1, - sym_select_from, - STATE(883), 1, - sym_select_where, - STATE(935), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, + STATE(1239), 1, sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, + STATE(1322), 1, sym_into, - STATE(1429), 1, + STATE(1747), 1, sym__select_limit_offset, - [54014] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1704), 1, - anon_sym_SEMI, - STATE(787), 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, - [54059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(327), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [54086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1613), 1, - anon_sym_COMMA, - ACTIONS(1615), 1, - aux_sym_update_statement_token2, - STATE(720), 1, - sym_identifier, - ACTIONS(1617), 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, - [54119] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(812), 1, - sym_select_from, - STATE(875), 1, - sym_select_where, - STATE(947), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [54180] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1702), 1, - anon_sym_SEMI, - STATE(787), 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, - [54225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(331), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [54252] = 3, + [64886] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 2, @@ -61782,339 +72397,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [54279] = 12, + [64913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1680), 1, - anon_sym_SEMI, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(1684), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1686), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1688), 1, - aux_sym_sequence_min_token1, - ACTIONS(1690), 1, - aux_sym_sequence_max_token1, - ACTIONS(1692), 1, - aux_sym_sequence_start_token1, - ACTIONS(1694), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1696), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1698), 1, - aux_sym_sequence_owned_token1, - STATE(787), 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, - [54324] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1706), 1, - anon_sym_SEMI, - ACTIONS(1708), 1, - aux_sym_update_statement_token2, - ACTIONS(1711), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1714), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1717), 1, - aux_sym_sequence_min_token1, - ACTIONS(1720), 1, - aux_sym_sequence_max_token1, - ACTIONS(1723), 1, - aux_sym_sequence_start_token1, - ACTIONS(1726), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1729), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1732), 1, - aux_sym_sequence_owned_token1, - STATE(787), 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, - [54369] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1735), 1, - aux_sym_join_item_token1, - ACTIONS(1737), 1, - aux_sym_join_item_token2, - STATE(1080), 1, - sym_join_type, - STATE(790), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1597), 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, - [54408] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1735), 1, - aux_sym_join_item_token1, - ACTIONS(1737), 1, - aux_sym_join_item_token2, - STATE(1080), 1, - sym_join_type, - STATE(788), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1619), 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, - [54447] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - ACTIONS(1739), 1, - aux_sym_join_item_token1, - ACTIONS(1742), 1, - aux_sym_join_item_token2, - STATE(1080), 1, - sym_join_type, - STATE(790), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1635), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1621), 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, - [54486] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - ACTIONS(1644), 1, - aux_sym_update_statement_token4, - STATE(807), 1, - sym_select_from, - STATE(872), 1, - sym_select_where, - STATE(936), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1009), 1, - sym_select_having, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [54547] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(793), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1619), 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, - [54576] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1080), 1, - sym_join_type, - STATE(790), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 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, - [54605] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(860), 1, - sym_select_where, - STATE(923), 1, - sym_select_group_by, - STATE(975), 1, - sym_select_having, - STATE(979), 1, - sym_where_filter, - STATE(1031), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1317), 1, - sym__select_limit_offset, - ACTIONS(1672), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [54661] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(854), 1, - sym_select_where, - STATE(920), 1, - sym_select_group_by, - STATE(970), 1, - sym_select_having, - STATE(979), 1, - sym_where_filter, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1147), 1, - sym_into, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [54717] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(1646), 1, - anon_sym_COMMA, - STATE(737), 1, + STATE(897), 1, sym_identifier, - ACTIONS(1648), 15, + ACTIONS(1878), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1888), 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, + [64944] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym_join_type, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1833), 16, + anon_sym_COMMA, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -62130,75 +72448,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [54747] = 18, + [64973] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(835), 1, - sym_select_where, - STATE(921), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [54803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - anon_sym_LPAREN, - STATE(827), 1, - sym_precision, - ACTIONS(1745), 16, - anon_sym_SEMI, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + ACTIONS(1912), 1, + aux_sym_join_item_token1, + ACTIONS(1915), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1853), 9, 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, - [54831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_COMMA, - ACTIONS(331), 17, - aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -62206,6 +72477,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65012] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + STATE(938), 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, + [65057] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1938), 1, + anon_sym_SEMI, + STATE(947), 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, + [65102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(349), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -62215,13 +72568,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [54857] = 3, + [65129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(1940), 1, + aux_sym_join_item_token1, + ACTIONS(1942), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1833), 9, anon_sym_COMMA, - ACTIONS(327), 17, + 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, + [65168] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(970), 1, + sym_select_from, + STATE(1043), 1, + sym_select_where, + STATE(1090), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1160), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1313), 1, + sym_into, + STATE(1611), 1, + sym__select_limit_offset, + [65229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1837), 1, + anon_sym_COMMA, + ACTIONS(1839), 1, aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1841), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -62237,189 +72666,906 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym__identifier, - [54883] = 3, + [65262] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_COMMA, - ACTIONS(323), 17, + ACTIONS(1920), 1, aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [54909] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(853), 1, - sym_select_where, - STATE(909), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(992), 1, - sym_select_having, - STATE(1044), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1284), 1, - sym__select_limit_offset, - ACTIONS(1638), 2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1944), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [54965] = 18, + STATE(946), 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, + [65307] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1666), 1, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - STATE(851), 1, - sym_select_where, - STATE(892), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(996), 1, - sym_select_having, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [55021] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - ACTIONS(1577), 1, + ACTIONS(1791), 1, aux_sym_for_statement_token2, - STATE(872), 1, - sym_select_where, - STATE(936), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1009), 1, - sym_select_having, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [55076] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - STATE(864), 1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(972), 1, + sym_select_from, + STATE(1052), 1, + sym_select_where, + STATE(1110), 1, sym_select_group_by, - STATE(918), 1, - sym_select_having, - STATE(971), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1150), 1, - sym__select_limit_offset, + STATE(1115), 1, + sym_where_filter, STATE(1164), 1, + sym_select_having, + STATE(1224), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, sym_into, - ACTIONS(1749), 5, + STATE(1637), 1, + sym__select_limit_offset, + [65368] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1946), 1, + anon_sym_SEMI, + STATE(947), 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, + [65413] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + STATE(947), 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, + [65458] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1948), 1, + anon_sym_SEMI, + ACTIONS(1950), 1, + aux_sym_update_statement_token2, + ACTIONS(1953), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1956), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1959), 1, + aux_sym_sequence_min_token1, + ACTIONS(1962), 1, + aux_sym_sequence_max_token1, + ACTIONS(1965), 1, + aux_sym_sequence_start_token1, + ACTIONS(1968), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1971), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1974), 1, + aux_sym_sequence_owned_token1, + STATE(947), 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, + [65503] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1230), 1, + sym_join_type, + STATE(935), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 16, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65532] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + ACTIONS(1882), 1, + aux_sym_update_statement_token4, + STATE(976), 1, + sym_select_from, + STATE(1051), 1, + sym_select_where, + STATE(1102), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1170), 1, + sym_select_having, + STATE(1226), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1739), 1, + sym__select_limit_offset, + [65593] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(1940), 1, + aux_sym_join_item_token1, + ACTIONS(1942), 1, + aux_sym_join_item_token2, + STATE(1230), 1, + sym_join_type, + STATE(940), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(373), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [65659] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(1922), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1924), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1926), 1, + aux_sym_sequence_min_token1, + ACTIONS(1928), 1, + aux_sym_sequence_max_token1, + ACTIONS(1930), 1, + aux_sym_sequence_start_token1, + ACTIONS(1932), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1934), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1936), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1938), 1, + anon_sym_SEMI, + STATE(945), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [65704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(353), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [65731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1977), 17, + anon_sym_SEMI, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_alter_table_rename_column_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 18, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_alter_table_rename_column_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65784] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(997), 1, + sym_select_where, + STATE(1062), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1117), 1, + sym_select_having, + STATE(1209), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1454), 1, + sym__select_limit_offset, + ACTIONS(1870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65840] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(993), 1, + sym_select_where, + STATE(1072), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1145), 1, + sym_select_having, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65896] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1007), 1, + sym_select_where, + STATE(1065), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65952] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(991), 1, + sym_select_where, + STATE(1081), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1156), 1, + sym_select_having, + STATE(1206), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, + sym_into, + STATE(1526), 1, + sym__select_limit_offset, + ACTIONS(1894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(347), 1, + anon_sym_COMMA, + ACTIONS(349), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 1, + anon_sym_COMMA, + ACTIONS(373), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 1, + anon_sym_COMMA, + ACTIONS(353), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66086] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1021), 1, + sym_select_where, + STATE(1071), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1141), 1, + sym_select_having, + STATE(1187), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1878), 1, + anon_sym_COMMA, + STATE(897), 1, + sym_identifier, + ACTIONS(1888), 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, + [66172] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(1027), 1, + sym_select_where, + STATE(1099), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1161), 1, + sym_select_having, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1747), 1, + sym__select_limit_offset, + [66227] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(999), 1, + sym_select_group_by, + STATE(1056), 1, + sym_select_having, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [55123] = 6, + [66274] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(1753), 1, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1013), 1, + sym_select_group_by, + STATE(1074), 1, + sym_select_having, + STATE(1153), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - STATE(843), 1, + aux_sym_returning_token1, + [66321] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(994), 1, + sym_select_group_by, + STATE(1073), 1, + sym_select_having, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66368] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1006), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1136), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1350), 1, + sym__select_limit_offset, + ACTIONS(1791), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66415] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + STATE(1052), 1, + sym_select_where, + STATE(1110), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1164), 1, + sym_select_having, + STATE(1224), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1637), 1, + sym__select_limit_offset, + [66470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(1984), 1, + aux_sym_insert_conflict_token1, + STATE(1016), 1, sym__list_of_identifiers, - STATE(842), 2, + STATE(1015), 2, sym_fk_action, aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1751), 12, + ACTIONS(1982), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -62432,269 +73578,199 @@ 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, - [55154] = 18, + [66501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - ACTIONS(1638), 1, + ACTIONS(1870), 1, aux_sym_for_statement_token2, - STATE(877), 1, + STATE(1051), 1, sym_select_where, - STATE(937), 1, + STATE(1102), 1, sym_select_group_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1021), 1, + STATE(1170), 1, sym_select_having, - STATE(1060), 1, + STATE(1226), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, sym_into, - STATE(1415), 1, + STATE(1739), 1, sym__select_limit_offset, - [55209] = 14, + [66556] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - STATE(841), 1, + STATE(1017), 1, sym_select_group_by, - STATE(898), 1, + STATE(1054), 1, sym_select_having, - STATE(960), 1, + STATE(1149), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1165), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1332), 1, sym__select_limit_offset, - ACTIONS(1638), 5, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [55256] = 14, + [66603] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(866), 1, - sym_select_group_by, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [55303] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1575), 1, + ACTIONS(1807), 1, aux_sym_where_filter_token1, - ACTIONS(1672), 1, + ACTIONS(1809), 1, aux_sym_for_statement_token2, - STATE(886), 1, + STATE(1043), 1, sym_select_where, - STATE(953), 1, + STATE(1090), 1, sym_select_group_by, - STATE(979), 1, + STATE(1115), 1, sym_where_filter, - STATE(1020), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1100), 1, - sym_select_order_by, - STATE(1148), 1, - sym_into, - STATE(1399), 1, - sym__select_limit_offset, - [55358] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(875), 1, - sym_select_where, - STATE(947), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [55413] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1575), 1, - aux_sym_where_filter_token1, - STATE(883), 1, - sym_select_where, - STATE(935), 1, - sym_select_group_by, - STATE(979), 1, - sym_where_filter, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1429), 1, - sym__select_limit_offset, - [55468] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(861), 1, - sym_select_group_by, - STATE(888), 1, - sym_select_having, - STATE(964), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, STATE(1160), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1313), 1, + sym_into, + STATE(1611), 1, sym__select_limit_offset, - ACTIONS(1672), 5, + [66658] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1020), 1, + sym_select_group_by, + STATE(1076), 1, + sym_select_having, + STATE(1140), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1328), 1, + sym__select_limit_offset, + STATE(1339), 1, + sym_into, + ACTIONS(1986), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [55515] = 7, + [66705] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1807), 1, + aux_sym_where_filter_token1, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1041), 1, + sym_select_where, + STATE(1093), 1, + sym_select_group_by, + STATE(1115), 1, + sym_where_filter, + STATE(1180), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1262), 1, + sym_select_order_by, + STATE(1333), 1, + sym_into, + STATE(1737), 1, + sym__select_limit_offset, + [66760] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, sym__identifier, - ACTIONS(1755), 1, + ACTIONS(1988), 1, aux_sym_update_statement_token2, - ACTIONS(1757), 1, + ACTIONS(1990), 1, anon_sym_LPAREN, - STATE(750), 1, + STATE(901), 1, sym_identifier, - ACTIONS(1583), 3, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1589), 10, + ACTIONS(1827), 10, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, @@ -62705,80 +73781,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [55548] = 14, + [66793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(855), 1, - sym_select_group_by, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, + STATE(1249), 1, + sym_join_type, + STATE(980), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1833), 13, anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [55595] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(838), 1, - sym_select_group_by, - STATE(895), 1, - sym_select_having, - STATE(959), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [55642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, anon_sym_COMMA, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1759), 15, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [66819] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(978), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [66845] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + ACTIONS(1992), 1, + aux_sym_join_item_token1, + ACTIONS(1995), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(980), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1853), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [66881] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(1998), 1, + aux_sym_join_item_token1, + ACTIONS(2000), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(980), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1833), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [66917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + STATE(987), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 14, anon_sym_SEMI, aux_sym_update_statement_token4, anon_sym_RPAREN, @@ -62786,7 +73894,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_index_using_token1, - aux_sym_alter_table_rename_column_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, @@ -62794,149 +73901,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [55669] = 5, + [66943] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_LBRACK, - STATE(867), 1, - aux_sym__type_repeat1, - ACTIONS(1768), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(1764), 13, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2006), 1, + aux_sym_update_statement_token2, + ACTIONS(2008), 1, + anon_sym_LPAREN, + STATE(901), 1, + sym_identifier, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1827), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [66975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1839), 1, + aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1837), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1841), 10, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [67005] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2010), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2012), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2014), 1, + anon_sym_LPAREN, + STATE(1032), 1, + sym_precision, + ACTIONS(69), 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, - [55698] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1770), 1, - aux_sym_update_statement_token2, - ACTIONS(1772), 1, - anon_sym_LPAREN, - STATE(750), 1, - sym_identifier, - ACTIONS(1583), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1589), 9, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [55730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1615), 1, - aux_sym_update_statement_token2, - STATE(720), 1, - sym_identifier, - ACTIONS(1613), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 10, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [55760] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - ACTIONS(1774), 1, - aux_sym_join_item_token1, - ACTIONS(1777), 1, - aux_sym_join_item_token2, - STATE(1090), 1, - sym_join_type, - STATE(821), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1635), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1621), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [55796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - STATE(834), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1780), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [55822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 16, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_alter_table_rename_column_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [55844] = 3, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [67109] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -62957,379 +74059,246 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [55868] = 4, + [67133] = 9, ACTIONS(3), 1, sym_comment, - STATE(1090), 1, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(1998), 1, + aux_sym_join_item_token1, + ACTIONS(2000), 1, + aux_sym_join_item_token2, + STATE(1249), 1, sym_join_type, - STATE(828), 2, + STATE(981), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1619), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, + ACTIONS(1851), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [55894] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1784), 1, - aux_sym_join_item_token1, - ACTIONS(1786), 1, - aux_sym_join_item_token2, - STATE(1090), 1, - sym_join_type, - STATE(833), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1619), 6, + ACTIONS(1835), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [55930] = 2, + [67169] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 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, - [55952] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1090), 1, - sym_join_type, - STATE(821), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [55978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - STATE(830), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1790), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + ACTIONS(1799), 1, aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [56004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1792), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [56030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1794), 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, - [56052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 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, - [56074] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1784), 1, - aux_sym_join_item_token1, - ACTIONS(1786), 1, - aux_sym_join_item_token2, - STATE(1090), 1, - sym_join_type, - STATE(821), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1597), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [56110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1790), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [56136] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(892), 1, - sym_select_group_by, - STATE(996), 1, - sym_select_having, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [56183] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1053), 1, - sym_join_type, - STATE(848), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [56208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - aux_sym_insert_items_token1, ACTIONS(1803), 1, - aux_sym_conflict_target_token1, - ACTIONS(1809), 1, - aux_sym_alter_column_action_token1, - ACTIONS(1812), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1815), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1818), 1, - aux_sym_constraint_foreign_key_token1, - STATE(897), 1, - sym_column_constraint_ty, - STATE(954), 1, - sym_constraint_foreign_key, - ACTIONS(1806), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(837), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(1798), 3, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1078), 1, + sym_select_group_by, + STATE(1154), 1, + sym_select_having, + STATE(1204), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1339), 1, + sym_into, + STATE(1520), 1, + sym__select_limit_offset, + ACTIONS(1986), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67216] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1241), 1, + sym_join_type, + STATE(1009), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1833), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [56249] = 12, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [67241] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - STATE(898), 1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1062), 1, + sym_select_group_by, + STATE(1117), 1, sym_select_having, - STATE(960), 1, + STATE(1209), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, sym_into, - STATE(1165), 1, + STATE(1454), 1, sym__select_limit_offset, - ACTIONS(1638), 5, + ACTIONS(1870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67288] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1056), 1, + sym_select_having, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [56290] = 12, + [67329] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, - aux_sym_insert_items_token1, - ACTIONS(1825), 1, + ACTIONS(2016), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2018), 1, + aux_sym_drop_function_statement_token1, + ACTIONS(2020), 1, aux_sym_conflict_target_token1, - ACTIONS(1829), 1, - aux_sym_alter_column_action_token1, - ACTIONS(1831), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1833), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1835), 1, - aux_sym_constraint_foreign_key_token1, - STATE(897), 1, - sym_column_constraint_ty, - STATE(954), 1, - sym_constraint_foreign_key, - ACTIONS(1827), 2, + ACTIONS(2022), 1, + aux_sym_create_table_statement_token1, + ACTIONS(2024), 1, + aux_sym_create_table_statement_token2, + ACTIONS(2026), 1, + aux_sym_create_schema_statement_token1, + ACTIONS(2028), 1, aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(837), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(1821), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [56331] = 3, + ACTIONS(2030), 1, + aux_sym_create_index_statement_token2, + ACTIONS(2032), 1, + aux_sym_grant_targets_token5, + ACTIONS(2034), 1, + aux_sym_create_trigger_statement_token1, + ACTIONS(2036), 1, + aux_sym_trigger_event_token2, + ACTIONS(2038), 1, + aux_sym_temporary_token1, + ACTIONS(2040), 1, + aux_sym_temporary_token2, + STATE(1731), 1, + sym_temporary, + STATE(2279), 1, + sym_or_replace, + [67378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 3, + ACTIONS(198), 1, + sym__identifier, + STATE(1035), 1, + sym_identifier, + ACTIONS(2042), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(323), 12, - aux_sym_update_statement_token2, + ACTIONS(2044), 10, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67405] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1081), 1, + sym_select_group_by, + STATE(1156), 1, + sym_select_having, + STATE(1206), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, + sym_into, + STATE(1526), 1, + sym__select_limit_offset, + ACTIONS(1894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + STATE(897), 1, + sym_identifier, + ACTIONS(1878), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1888), 10, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, @@ -63340,108 +74309,333 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym__identifier, - [56354] = 12, + [67479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - STATE(888), 1, + STATE(1070), 1, sym_select_having, - STATE(964), 1, + STATE(1136), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1148), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, sym_into, - STATE(1160), 1, + STATE(1350), 1, sym__select_limit_offset, - ACTIONS(1672), 5, + ACTIONS(1791), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [56395] = 4, + [67520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - aux_sym_insert_conflict_token1, - STATE(863), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1837), 12, + STATE(1241), 1, + sym_join_type, + STATE(992), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 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, - [56420] = 4, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [67545] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - aux_sym_insert_conflict_token1, - STATE(852), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1837), 12, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(2046), 1, + aux_sym_join_item_token1, + ACTIONS(2048), 1, + aux_sym_join_item_token2, + STATE(1241), 1, + sym_join_type, + STATE(1022), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_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, - [56445] = 12, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [67580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1073), 1, + sym_select_having, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [67621] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, aux_sym_insert_items_token1, - ACTIONS(1825), 1, + ACTIONS(2054), 1, aux_sym_conflict_target_token1, - ACTIONS(1829), 1, + ACTIONS(2058), 1, aux_sym_alter_column_action_token1, - ACTIONS(1831), 1, + ACTIONS(2060), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(1833), 1, + ACTIONS(2062), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(1835), 1, + ACTIONS(2064), 1, aux_sym_constraint_foreign_key_token1, - STATE(897), 1, + STATE(1082), 1, sym_column_constraint_ty, - STATE(954), 1, + STATE(1087), 1, sym_constraint_foreign_key, - ACTIONS(1827), 2, + ACTIONS(2056), 2, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, - STATE(839), 2, + STATE(1004), 2, sym_column_constraint, aux_sym_table_column_item_repeat1, - ACTIONS(1839), 3, + ACTIONS(2050), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [56486] = 3, + [67662] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + aux_sym_insert_items_token1, + ACTIONS(2071), 1, + aux_sym_conflict_target_token1, + ACTIONS(2077), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2080), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2083), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2086), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1082), 1, + sym_column_constraint_ty, + STATE(1087), 1, + sym_constraint_foreign_key, + ACTIONS(2074), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(1004), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2066), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [67703] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1071), 1, + sym_select_group_by, + STATE(1141), 1, + sym_select_having, + STATE(1187), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67750] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1074), 1, + sym_select_having, + STATE(1153), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [67791] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1072), 1, + sym_select_group_by, + STATE(1145), 1, + sym_select_having, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + aux_sym_insert_conflict_token1, + STATE(1008), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2089), 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, + [67863] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + ACTIONS(2094), 1, + aux_sym_join_item_token1, + ACTIONS(2097), 1, + aux_sym_join_item_token2, + STATE(1241), 1, + sym_join_type, + STATE(1009), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1853), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [67898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1839), 1, + aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1837), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1841), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [67927] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -63461,83 +74655,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [56509] = 4, + [67950] = 5, ACTIONS(3), 1, sym_comment, - STATE(1053), 1, - sym_join_type, - STATE(836), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1619), 12, + ACTIONS(2100), 1, + anon_sym_LBRACK, + STATE(1068), 1, + aux_sym__type_repeat1, + ACTIONS(2102), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(129), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [56534] = 9, + 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, + [67977] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1841), 1, - aux_sym_join_item_token1, - ACTIONS(1843), 1, - aux_sym_join_item_token2, - STATE(1053), 1, - sym_join_type, - STATE(848), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1597), 5, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1054), 1, + sym_select_having, + STATE(1149), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1332), 1, + sym__select_limit_offset, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68018] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + aux_sym_insert_items_token1, + ACTIONS(2054), 1, + aux_sym_conflict_target_token1, + ACTIONS(2058), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2060), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2062), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2064), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1082), 1, + sym_column_constraint_ty, + STATE(1087), 1, + sym_constraint_foreign_key, + ACTIONS(2056), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(1003), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2104), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [56569] = 9, + [68059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - ACTIONS(1845), 1, - aux_sym_join_item_token1, - ACTIONS(1848), 1, - aux_sym_join_item_token2, - STATE(1053), 1, - sym_join_type, - STATE(848), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1635), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1621), 5, + ACTIONS(1984), 1, + aux_sym_insert_conflict_token1, + STATE(1008), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2106), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [56604] = 2, + 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, + [68084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 15, + ACTIONS(1984), 1, + aux_sym_insert_conflict_token1, + STATE(1025), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2106), 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, + [68109] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1076), 1, + sym_select_having, + STATE(1140), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1328), 1, + sym__select_limit_offset, + STATE(1339), 1, + sym_into, + ACTIONS(1986), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 15, anon_sym_SEMI, aux_sym_update_statement_token2, anon_sym_LPAREN, @@ -63553,73 +74825,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, aux_sym_select_statement_token1, - [56625] = 9, + [68171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1841), 1, + ACTIONS(347), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(349), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, aux_sym_join_item_token1, - ACTIONS(1843), 1, aux_sym_join_item_token2, - STATE(1053), 1, + aux_sym_join_item_token3, + aux_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, + [68194] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1063), 1, + sym_select_having, + STATE(1130), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, + sym_into, + STATE(1321), 1, + sym__select_limit_offset, + ACTIONS(2110), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68235] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1065), 1, + sym_select_group_by, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68282] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(2046), 1, + aux_sym_join_item_token1, + ACTIONS(2048), 1, + aux_sym_join_item_token2, + STATE(1241), 1, sym_join_type, - STATE(847), 2, + STATE(1009), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1607), 3, + ACTIONS(1851), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1619), 5, + ACTIONS(1833), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_returning_token1, aux_sym_where_filter_token1, - [56660] = 15, + [68317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(909), 1, - sym_select_group_by, - STATE(992), 1, - sym_select_having, - STATE(1044), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1284), 1, - sym__select_limit_offset, - ACTIONS(1638), 2, + ACTIONS(371), 3, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - [56707] = 4, + ACTIONS(373), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [68340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(351), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(353), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [68363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1984), 1, aux_sym_insert_conflict_token1, - STATE(863), 2, + STATE(1008), 2, sym_fk_action, aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1853), 12, + ACTIONS(2112), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -63632,109 +74993,15 @@ 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, - [56732] = 15, + [68388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(923), 1, - sym_select_group_by, - STATE(975), 1, - sym_select_having, - STATE(1031), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1317), 1, - sym__select_limit_offset, - ACTIONS(1672), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [56779] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(921), 1, - sym_select_group_by, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [56826] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(895), 1, - sym_select_having, - STATE(959), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [56867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 3, + ACTIONS(347), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(327), 12, + ACTIONS(349), 11, aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -63745,169 +75012,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [56890] = 6, + [68410] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1615), 1, - aux_sym_update_statement_token2, - STATE(720), 1, - sym_identifier, - ACTIONS(1613), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1617), 9, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [56919] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(887), 1, - sym_select_having, - STATE(969), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [56960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(331), 12, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [56983] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(911), 1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + STATE(1090), 1, sym_select_group_by, - STATE(997), 1, + STATE(1160), 1, sym_select_having, - STATE(1026), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1164), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1313), 1, sym_into, - STATE(1346), 1, + STATE(1611), 1, sym__select_limit_offset, - ACTIONS(1749), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [57030] = 12, + [68456] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(918), 1, - sym_select_having, - STATE(971), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1150), 1, - sym__select_limit_offset, - STATE(1164), 1, - sym_into, - ACTIONS(1749), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [57071] = 4, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1099), 1, + sym_select_group_by, + STATE(1161), 1, + sym_select_having, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1747), 1, + sym__select_limit_offset, + [68502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(141), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, anon_sym_LBRACK, - STATE(862), 1, - aux_sym__type_repeat1, - ACTIONS(1855), 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, - [57096] = 4, + aux_sym__type_token1, + aux_sym__type_token2, + [68522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 1, - aux_sym_insert_conflict_token1, - STATE(863), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1860), 12, + ACTIONS(145), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -63916,284 +75104,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, - [57121] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(915), 1, - sym_select_having, - STATE(980), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1142), 1, - sym__select_limit_offset, - STATE(1173), 1, - sym_into, - ACTIONS(1865), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [57162] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - aux_sym_drop_function_statement_token2, - ACTIONS(1869), 1, - aux_sym_create_type_statement_token2, - ACTIONS(1871), 1, - aux_sym_conflict_target_token1, - ACTIONS(1873), 1, - aux_sym_create_table_statement_token1, - ACTIONS(1875), 1, - aux_sym_create_table_statement_token2, - ACTIONS(1877), 1, - aux_sym_create_schema_statement_token1, - ACTIONS(1879), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1881), 1, - aux_sym_create_index_statement_token2, - ACTIONS(1883), 1, - aux_sym_grant_targets_token5, - ACTIONS(1885), 1, - aux_sym_create_trigger_statement_token1, - ACTIONS(1887), 1, - aux_sym_trigger_event_token2, - ACTIONS(1889), 1, - aux_sym_temporary_token1, - ACTIONS(1891), 1, - aux_sym_temporary_token2, - STATE(1569), 1, - sym_temporary, - STATE(1932), 1, - sym_or_replace, - [57211] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(922), 1, - sym_select_having, - STATE(957), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [57252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1766), 1, anon_sym_LBRACK, - STATE(862), 1, - aux_sym__type_repeat1, - ACTIONS(1893), 13, + aux_sym__type_token1, + aux_sym__type_token2, + [68542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2116), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [68564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(137), 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, - [57277] = 5, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [68584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(2118), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2120), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, sym__identifier, - STATE(737), 1, - sym_identifier, - ACTIONS(1646), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1648), 10, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [57304] = 15, + [68606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(920), 1, - sym_select_group_by, - STATE(970), 1, - sym_select_having, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1147), 1, - sym_into, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [57351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, + ACTIONS(2122), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2124), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, sym__identifier, - STATE(876), 1, - sym_identifier, - ACTIONS(1895), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1897), 10, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [57378] = 4, + [68628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_COMMA, - STATE(871), 1, - aux_sym_returning_repeat1, - ACTIONS(1899), 12, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [57402] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1638), 1, - aux_sym_for_statement_token2, - STATE(937), 1, - sym_select_group_by, - STATE(1021), 1, - sym_select_having, - STATE(1060), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1415), 1, - sym__select_limit_offset, - [57448] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(947), 1, - sym_select_group_by, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [57494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 14, + ACTIONS(2126), 14, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -64208,41 +75203,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [57514] = 15, + [68648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(935), 1, - sym_select_group_by, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1429), 1, - sym__select_limit_offset, - [57560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1904), 14, + ACTIONS(2128), 14, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -64257,45 +75221,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [57580] = 15, + [68668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1672), 1, - aux_sym_for_statement_token2, - STATE(953), 1, - sym_select_group_by, - STATE(1020), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1100), 1, - sym_select_order_by, - STATE(1148), 1, - sym_into, - STATE(1399), 1, - sym__select_limit_offset, - [57626] = 3, + ACTIONS(2130), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2132), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [68690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 3, + ACTIONS(351), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(323), 11, + ACTIONS(353), 11, aux_sym_update_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, @@ -64307,28 +75259,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [57648] = 5, + [68712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - STATE(737), 1, - sym_identifier, - ACTIONS(1646), 3, + ACTIONS(2042), 14, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token4, anon_sym_RPAREN, - ACTIONS(1648), 9, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [57674] = 3, + [68732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2136), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [68754] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1986), 1, + aux_sym_for_statement_token2, + STATE(1103), 1, + sym_select_group_by, + STATE(1162), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1265), 1, + sym_select_order_by, + STATE(1339), 1, + sym_into, + STATE(1727), 1, + sym__select_limit_offset, + [68800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 3, @@ -64347,1538 +75346,963 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__type_token1, aux_sym__type_token2, anon_sym_SQUOTE, - [57696] = 2, + [68822] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 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, - [57716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + ACTIONS(1791), 1, aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [57736] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, + ACTIONS(1797), 1, aux_sym_grant_roles_token2, - ACTIONS(1567), 1, + ACTIONS(1799), 1, aux_sym_select_having_token1, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - STATE(936), 1, + STATE(1110), 1, sym_select_group_by, - STATE(1009), 1, - sym_select_having, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [57782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(331), 11, - aux_sym_update_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [57804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(327), 11, - aux_sym_update_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [57826] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1565), 1, - aux_sym_grant_roles_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1749), 1, - aux_sym_for_statement_token2, - STATE(952), 1, - sym_select_group_by, - STATE(1010), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1079), 1, - sym_select_order_by, STATE(1164), 1, - sym_into, - STATE(1392), 1, - sym__select_limit_offset, - [57872] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(957), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1181), 1, - sym__select_limit_offset, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [57907] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(971), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1150), 1, - sym__select_limit_offset, - STATE(1164), 1, - sym_into, - ACTIONS(1749), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [57942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1906), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1908), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [57963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1912), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [57984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1914), 1, - aux_sym_update_statement_token2, - ACTIONS(1916), 1, - anon_sym_LPAREN, - STATE(750), 1, - sym_identifier, - ACTIONS(1589), 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, - [58011] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(992), 1, sym_select_having, - STATE(1044), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1284), 1, - sym__select_limit_offset, - ACTIONS(1638), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 13, - ts_builtin_sym_end, - anon_sym_SEMI, - aux_sym_update_statement_token1, - aux_sym_drop_function_statement_token1, - aux_sym_create_type_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_delete_statement_token1, - aux_sym_alter_table_statement_token1, - aux_sym_grant_statement_token1, - anon_sym_BSLASH, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - [58071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1922), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58092] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(960), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1165), 1, - sym__select_limit_offset, - ACTIONS(1638), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - STATE(876), 1, - sym_identifier, - ACTIONS(1895), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1897), 8, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - aux_sym_constraint_when_token1, - STATE(956), 1, - sym_constraint_when, - ACTIONS(1924), 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, - [58175] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(964), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1160), 1, - sym__select_limit_offset, - ACTIONS(1672), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1930), 1, - anon_sym_COMMA, - STATE(899), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1928), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1935), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1939), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1941), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1943), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_COMMA, - STATE(899), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1945), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58319] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1953), 1, - aux_sym_alter_table_action_token2, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - ACTIONS(1963), 1, - sym__identifier, - STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, - sym_identifier, - STATE(1459), 1, - sym_if_not_exists, - STATE(1704), 2, - sym_table_constraint, - sym_table_column_item, - [58360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1965), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1967), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1969), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1971), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 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, - [58421] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(970), 1, - sym_select_having, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1147), 1, - sym_into, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58462] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(975), 1, - sym_select_having, - STATE(1031), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1317), 1, - sym__select_limit_offset, - ACTIONS(1672), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - [58522] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(993), 1, - sym_select_having, - STATE(1037), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1173), 1, - sym_into, - STATE(1355), 1, - sym__select_limit_offset, - ACTIONS(1865), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - aux_sym_constraint_when_token1, - STATE(994), 1, - sym_constraint_when, - ACTIONS(1975), 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, - [58586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - [58605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - [58624] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(984), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1162), 1, - sym__select_limit_offset, - STATE(1183), 1, - sym_into, - ACTIONS(1981), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1983), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58682] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(969), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58717] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(980), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1142), 1, - sym__select_limit_offset, - STATE(1173), 1, - sym_into, - ACTIONS(1865), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1985), 12, - ts_builtin_sym_end, - aux_sym_update_statement_token1, - aux_sym_drop_function_statement_token1, - aux_sym_create_type_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_delete_statement_token1, - aux_sym_alter_table_statement_token1, - aux_sym_grant_statement_token1, - anon_sym_BSLASH, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - [58773] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(989), 1, - sym_select_having, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58814] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(996), 1, - sym_select_having, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58855] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(959), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [58890] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(997), 1, - sym_select_having, - STATE(1026), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1164), 1, - sym_into, - STATE(1346), 1, - sym__select_limit_offset, - ACTIONS(1749), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [58931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1989), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1991), 8, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_time_expression_token4, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym__identifier, - [58952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1928), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1993), 1, - anon_sym_COMMA, - STATE(926), 1, - aux_sym_returning_repeat1, - ACTIONS(1899), 10, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [58993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(389), 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, - [59011] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(1006), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [59051] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1996), 1, - aux_sym_join_item_token1, - ACTIONS(1998), 1, - aux_sym_join_item_token2, - STATE(1053), 1, - sym_join_type, - ACTIONS(1619), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(943), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [59083] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2000), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, - sym_identifier, - STATE(1400), 1, - sym_create_table_item, - STATE(1762), 2, - sym_table_constraint, - sym_table_column_item, - [59121] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1053), 1, - sym_join_type, - STATE(946), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1619), 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, - [59143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 12, - ts_builtin_sym_end, - aux_sym_update_statement_token1, - aux_sym_drop_function_statement_token1, - aux_sym_create_type_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_delete_statement_token1, - aux_sym_alter_table_statement_token1, - aux_sym_grant_statement_token1, - anon_sym_BSLASH, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - [59161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(355), 1, - anon_sym_COMMA, - STATE(934), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(2002), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [59183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 1, - anon_sym_COMMA, - STATE(934), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(397), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [59205] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - STATE(1009), 1, - sym_select_having, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [59245] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1638), 1, - aux_sym_for_statement_token2, - STATE(1021), 1, - sym_select_having, - STATE(1060), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1415), 1, - sym__select_limit_offset, - [59285] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1672), 1, - aux_sym_for_statement_token2, - STATE(1020), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1100), 1, - sym_select_order_by, - STATE(1148), 1, - sym_into, - STATE(1399), 1, - sym__select_limit_offset, - [59325] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2007), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, - sym_identifier, - STATE(1557), 1, - sym_create_table_item, - STATE(1762), 2, - sym_table_constraint, - sym_table_column_item, - [59363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2009), 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, - [59381] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2011), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, - sym_identifier, - STATE(1456), 1, - sym_create_table_item, - STATE(1762), 2, - sym_table_constraint, - sym_table_column_item, - [59419] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2015), 1, - aux_sym_update_statement_token2, - ACTIONS(2017), 1, - aux_sym_insert_statement_token2, - ACTIONS(2019), 1, - aux_sym_returning_token1, - ACTIONS(2021), 1, - aux_sym_index_using_token1, - ACTIONS(2023), 1, - aux_sym_where_filter_token1, - STATE(1048), 1, - sym_identifier, - STATE(1131), 1, - sym_delete_using, - STATE(1258), 1, - sym_where_filter, - STATE(1647), 1, - sym_into, - ACTIONS(2013), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [59457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 1, - aux_sym_constraint_when_token2, - ACTIONS(2025), 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, - [59477] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - ACTIONS(1996), 1, - aux_sym_join_item_token1, - ACTIONS(1998), 1, - aux_sym_join_item_token2, - STATE(1053), 1, - sym_join_type, - ACTIONS(1597), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(944), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [59509] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - aux_sym_join_item_token3, - ACTIONS(1632), 1, - aux_sym_join_type_token1, - ACTIONS(2029), 1, - aux_sym_join_item_token1, - ACTIONS(2032), 1, - aux_sym_join_item_token2, - STATE(1053), 1, - sym_join_type, - ACTIONS(1621), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(944), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1635), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [59541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1895), 1, - anon_sym_COMMA, - STATE(876), 1, - sym_identifier, - ACTIONS(1897), 9, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [59565] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1053), 1, - sym_join_type, - STATE(944), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1597), 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, - [59587] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(1007), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1429), 1, - sym__select_limit_offset, - [59627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1615), 1, - aux_sym_update_statement_token2, - STATE(720), 1, - sym_identifier, - ACTIONS(1617), 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, - [59651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2035), 1, - anon_sym_RPAREN, - STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, - sym_identifier, - STATE(1407), 1, - sym_create_table_item, - STATE(1762), 2, - sym_table_constraint, - sym_table_column_item, - [59689] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2017), 1, - aux_sym_insert_statement_token2, - ACTIONS(2021), 1, - aux_sym_index_using_token1, - ACTIONS(2023), 1, - aux_sym_where_filter_token1, - ACTIONS(2039), 1, - aux_sym_update_statement_token2, - ACTIONS(2041), 1, - aux_sym_returning_token1, - STATE(1027), 1, - sym_identifier, - STATE(1117), 1, - sym_delete_using, STATE(1224), 1, - sym_where_filter, - STATE(1756), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, sym_into, - ACTIONS(2037), 2, + STATE(1637), 1, + sym__select_limit_offset, + [68868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2140), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [68890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2144), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [68912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + STATE(897), 1, + sym_identifier, + ACTIONS(1878), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1888), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [68938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(373), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [68960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_COMMA, + STATE(1048), 1, + aux_sym_returning_repeat1, + ACTIONS(2128), 12, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [68984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2151), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [69006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2155), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [69028] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1093), 1, + sym_select_group_by, + STATE(1180), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1262), 1, + sym_select_order_by, + STATE(1333), 1, + sym_into, + STATE(1737), 1, + sym__select_limit_offset, + [69074] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1797), 1, + aux_sym_grant_roles_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + STATE(1102), 1, + sym_select_group_by, + STATE(1170), 1, + sym_select_having, + STATE(1226), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1739), 1, + sym__select_limit_offset, + [69120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 13, + ts_builtin_sym_end, + anon_sym_SEMI, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [69139] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1140), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1328), 1, + sym__select_limit_offset, + STATE(1339), 1, + sym_into, + ACTIONS(1986), 5, anon_sym_SEMI, anon_sym_RPAREN, - [59727] = 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2159), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69193] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1136), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1350), 1, + sym__select_limit_offset, + ACTIONS(1791), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_COMMA, + STATE(1057), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2159), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2164), 1, + aux_sym_update_statement_token2, + ACTIONS(2166), 1, + anon_sym_LPAREN, + STATE(901), 1, + sym_identifier, + ACTIONS(1827), 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, + [69278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, + anon_sym_LBRACK, + STATE(1059), 1, + aux_sym__type_repeat1, + ACTIONS(159), 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, + [69301] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + STATE(1035), 1, + sym_identifier, + ACTIONS(2042), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2044), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69326] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2175), 1, + aux_sym_alter_table_action_token2, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + ACTIONS(2185), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1742), 1, + sym_if_not_exists, + STATE(1792), 2, + sym_table_constraint, + sym_table_column_item, + [69367] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1156), 1, + sym_select_having, + STATE(1206), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, + sym_into, + STATE(1526), 1, + sym__select_limit_offset, + ACTIONS(1894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69408] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1127), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1314), 1, + sym__select_limit_offset, + STATE(1343), 1, + sym_into, + ACTIONS(2187), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COMMA, + STATE(1057), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2189), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69466] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1145), 1, + sym_select_having, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69507] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1141), 1, + sym_select_having, + STATE(1187), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [69567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + anon_sym_LBRACK, + STATE(1059), 1, + aux_sym__type_repeat1, + ACTIONS(155), 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, + [69590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 1, + anon_sym_SEMI, + ACTIONS(2195), 12, + ts_builtin_sym_end, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [69611] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1153), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69646] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1152), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69687] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1117), 1, + sym_select_having, + STATE(1209), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1454), 1, + sym__select_limit_offset, + ACTIONS(1870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69728] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1120), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69763] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1149), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1332), 1, + sym__select_limit_offset, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [69817] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1130), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, + sym_into, + STATE(1321), 1, + sym__select_limit_offset, + ACTIONS(2110), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [69871] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1128), 1, + sym_select_having, + STATE(1207), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, + sym_into, + STATE(1463), 1, + sym__select_limit_offset, + ACTIONS(2110), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + aux_sym_constraint_when_token1, + STATE(1146), 1, + sym_constraint_when, + ACTIONS(2203), 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, + [69935] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1151), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69970] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1154), 1, + sym_select_having, + STATE(1204), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1339), 1, + sym_into, + STATE(1520), 1, + sym__select_limit_offset, + ACTIONS(1986), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + aux_sym_constraint_when_token1, + STATE(1126), 1, + sym_constraint_when, + ACTIONS(2207), 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, + [70034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COMMA, + STATE(1064), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2209), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [70057] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2213), 1, + aux_sym_update_statement_token2, + ACTIONS(2215), 1, + aux_sym_insert_statement_token2, + ACTIONS(2217), 1, + aux_sym_returning_token1, + ACTIONS(2219), 1, + aux_sym_index_using_token1, + ACTIONS(2221), 1, + aux_sym_where_filter_token1, + STATE(1189), 1, + sym_identifier, + STATE(1279), 1, + sym_delete_using, + STATE(1383), 1, + sym_where_filter, + STATE(1801), 1, + sym_into, + ACTIONS(2211), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70095] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -65895,64 +76319,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, sym__identifier, - [59747] = 13, + [70115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1865), 1, - aux_sym_for_statement_token2, - STATE(1005), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1075), 1, - sym_select_order_by, - STATE(1173), 1, - sym_into, - STATE(1387), 1, - sym__select_limit_offset, - [59787] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1567), 1, - aux_sym_select_having_token1, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1749), 1, - aux_sym_for_statement_token2, - STATE(1010), 1, - sym_select_having, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1079), 1, - sym_select_order_by, - STATE(1164), 1, - sym_into, - STATE(1392), 1, - sym__select_limit_offset, - [59827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2043), 12, + ACTIONS(2223), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -65965,34 +76335,107 @@ 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, - [59845] = 11, + [70133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1028), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1147), 1, - sym_into, - STATE(1372), 1, - sym__select_limit_offset, - ACTIONS(558), 2, + ACTIONS(2225), 12, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - [59880] = 2, + 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, + [70151] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 11, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2227), 1, + anon_sym_RPAREN, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1741), 1, + sym_create_table_item, + STATE(1838), 2, + sym_table_constraint, + sym_table_column_item, + [70189] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2229), 1, + anon_sym_RPAREN, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1582), 1, + sym_create_table_item, + STATE(1838), 2, + sym_table_constraint, + sym_table_column_item, + [70227] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1164), 1, + sym_select_having, + STATE(1224), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1637), 1, + sym__select_limit_offset, + [70267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + aux_sym_constraint_when_token2, + ACTIONS(2231), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -66004,35 +76447,303 @@ 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, - [59897] = 8, + [70287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1174), 1, - sym__select_limit_offset, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, + ACTIONS(2235), 1, + anon_sym_COMMA, + STATE(1092), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(579), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [59926] = 4, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [70309] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1986), 1, + aux_sym_for_statement_token2, + STATE(1162), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1265), 1, + sym_select_order_by, + STATE(1339), 1, + sym_into, + STATE(1727), 1, + sym__select_limit_offset, + [70349] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(2238), 1, + aux_sym_join_item_token1, + ACTIONS(2240), 1, + aux_sym_join_item_token2, + STATE(1241), 1, + sym_join_type, + ACTIONS(1835), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(1107), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [70381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 1, anon_sym_COMMA, - STATE(958), 1, + STATE(1095), 1, aux_sym_returning_repeat1, - ACTIONS(1899), 9, + ACTIONS(2128), 10, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [70403] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1651), 1, + sym_create_table_item, + STATE(1838), 2, + sym_table_constraint, + sym_table_column_item, + [70441] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1241), 1, + sym_join_type, + STATE(1104), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [70463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + [70481] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + STATE(1160), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1313), 1, + sym_into, + STATE(1611), 1, + sym__select_limit_offset, + [70521] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2247), 1, + anon_sym_RPAREN, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1701), 1, + sym_create_table_item, + STATE(1838), 2, + sym_table_constraint, + sym_table_column_item, + [70559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 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, + [70577] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1180), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1262), 1, + sym_select_order_by, + STATE(1333), 1, + sym_into, + STATE(1737), 1, + sym__select_limit_offset, + [70617] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_for_statement_token2, + STATE(1175), 1, + sym_select_having, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1254), 1, + sym_select_order_by, + STATE(1299), 1, + sym_into, + STATE(1722), 1, + sym__select_limit_offset, + [70657] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1241), 1, + sym_join_type, + STATE(1106), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1833), 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, + [70679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2042), 1, + anon_sym_COMMA, + STATE(1035), 1, + sym_identifier, + ACTIONS(2044), 9, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -66042,426 +76753,211 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [59947] = 8, + [70703] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1165), 1, - sym__select_limit_offset, - ACTIONS(1638), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, + ACTIONS(1861), 1, + aux_sym_join_item_token3, + ACTIONS(1864), 1, + aux_sym_join_type_token1, + ACTIONS(2249), 1, + aux_sym_join_item_token1, + ACTIONS(2252), 1, + aux_sym_join_item_token2, + STATE(1241), 1, + sym_join_type, + ACTIONS(1853), 2, aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [59976] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1160), 1, - sym__select_limit_offset, - ACTIONS(1672), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60005] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - aux_sym_update_statement_token3, - ACTIONS(2052), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2054), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2056), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2058), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1502), 1, - sym_alter_table_action, - STATE(1986), 1, - sym_alter_table_change, - STATE(1991), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [60036] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1312), 1, - sym_with_query, - STATE(1793), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [60065] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(2060), 1, - aux_sym_insert_items_token1, - ACTIONS(2062), 1, - aux_sym_insert_items_token2, - ACTIONS(2064), 1, - aux_sym_select_statement_token1, - STATE(1043), 1, - sym_as, - STATE(1069), 1, - sym_insert_items, - STATE(1124), 1, - sym__list_of_identifiers, - STATE(1239), 1, - sym_select_statement, - STATE(2007), 1, - sym_with_query, - [60102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1150), 1, - sym__select_limit_offset, - STATE(1164), 1, - sym_into, - ACTIONS(1749), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60131] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1766), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(867), 1, - aux_sym__type_repeat1, - STATE(1477), 1, - sym__type, - ACTIONS(1764), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1768), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [60162] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2017), 1, - aux_sym_insert_statement_token2, - ACTIONS(2021), 1, aux_sym_index_using_token1, - ACTIONS(2023), 1, + STATE(1106), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1867), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [70735] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + ACTIONS(2238), 1, + aux_sym_join_item_token1, + ACTIONS(2240), 1, + aux_sym_join_item_token2, + STATE(1241), 1, + sym_join_type, + ACTIONS(1833), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(1106), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [70767] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2215), 1, + aux_sym_insert_statement_token2, + ACTIONS(2219), 1, + aux_sym_index_using_token1, + ACTIONS(2221), 1, aux_sym_where_filter_token1, - ACTIONS(2070), 1, + ACTIONS(2257), 1, + aux_sym_update_statement_token2, + ACTIONS(2259), 1, aux_sym_returning_token1, - STATE(1041), 1, + STATE(1194), 1, sym_identifier, - STATE(1105), 1, + STATE(1270), 1, sym_delete_using, - STATE(1212), 1, + STATE(1419), 1, sym_where_filter, - STATE(1741), 1, + STATE(1899), 1, sym_into, - ACTIONS(2068), 2, + ACTIONS(2255), 2, anon_sym_SEMI, anon_sym_RPAREN, - [60197] = 8, + [70805] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1312), 1, - sym_with_query, - STATE(1852), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [60226] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1766), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(867), 1, - aux_sym__type_repeat1, - STATE(1245), 1, - sym__type, - ACTIONS(1764), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1768), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [60257] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1161), 1, + sym_select_having, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, sym_select_offset, - STATE(1171), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, sym_into, - STATE(1181), 1, + STATE(1747), 1, sym__select_limit_offset, - ACTIONS(1559), 5, + [70845] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_select_having_token1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + STATE(1170), 1, + sym_select_having, + STATE(1226), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1739), 1, + sym__select_limit_offset, + [70885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 12, + ts_builtin_sym_end, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [70903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(563), 1, + anon_sym_COMMA, + STATE(1092), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(2261), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [60286] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1034), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60321] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1142), 1, - sym__select_limit_offset, - STATE(1173), 1, - sym_into, - ACTIONS(1865), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 11, - aux_sym_update_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - sym__identifier, - [60367] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - STATE(737), 1, - sym_identifier, - ACTIONS(1648), 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, - [60388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 11, - aux_sym_update_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - sym__identifier, - [60405] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1026), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1164), 1, - sym_into, - STATE(1346), 1, - sym__select_limit_offset, - ACTIONS(1749), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60440] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1312), 1, - sym_with_query, - STATE(1999), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [60469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2072), 1, - anon_sym_COMMA, - STATE(985), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1945), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - [60490] = 8, + [70925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1312), 1, - sym_with_query, - STATE(2017), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [60519] = 2, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(1839), 1, + aux_sym_update_statement_token2, + STATE(880), 1, + sym_identifier, + ACTIONS(1841), 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, + [70949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 11, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(599), 1, + anon_sym_LBRACK, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(266), 1, + aux_sym__type_repeat1, + STATE(1572), 1, + sym__type, + ACTIONS(129), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(601), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(219), 2, + sym_predefined_types, + sym_identifier, + [70980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2265), 11, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -66473,124 +76969,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [60536] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1162), 1, - sym__select_limit_offset, - STATE(1183), 1, - sym_into, - ACTIONS(1981), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60565] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1766), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(867), 1, - aux_sym__type_repeat1, - STATE(1599), 1, - sym__type, - ACTIONS(1764), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1768), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [60596] = 12, + [70997] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(1682), 1, - aux_sym_update_statement_token2, - ACTIONS(2060), 1, - aux_sym_insert_items_token1, - ACTIONS(2062), 1, - aux_sym_insert_items_token2, - ACTIONS(2064), 1, + ACTIONS(27), 1, aux_sym_select_statement_token1, - STATE(1030), 1, - sym_as, - STATE(1076), 1, - sym_insert_items, - STATE(1102), 1, - sym__list_of_identifiers, - STATE(1239), 1, - sym_select_statement, - STATE(2007), 1, + STATE(1545), 1, sym_with_query, - [60633] = 8, + STATE(2132), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [71026] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1206), 1, + sym_select_order_by, + STATE(1238), 1, sym_select_offset, - STATE(1133), 1, - sym__select_limit_offset, - STATE(1147), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, sym_into, - ACTIONS(558), 5, + STATE(1526), 1, + sym__select_limit_offset, + ACTIONS(1894), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60662] = 8, + [71061] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1151), 1, - sym_into, - STATE(1159), 1, - sym__select_limit_offset, - ACTIONS(2076), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(599), 1, + anon_sym_LBRACK, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(266), 1, + aux_sym__type_repeat1, + STATE(1822), 1, + sym__type, + ACTIONS(129), 2, anon_sym_COMMA, - STATE(985), 1, + anon_sym_RPAREN, + ACTIONS(601), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(219), 2, + sym_predefined_types, + sym_identifier, + [71092] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1545), 1, + sym_with_query, + STATE(2314), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [71121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1350), 1, + sym__select_limit_offset, + ACTIONS(1791), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [71150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_COMMA, + STATE(1131), 1, aux_sym_update_statement_repeat2, - ACTIONS(1928), 9, + ACTIONS(2189), 9, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -66600,27 +77095,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [60712] = 4, + [71171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, - anon_sym_COMMA, - STATE(977), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1983), 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, - [60733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2081), 11, + ACTIONS(2269), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -66632,143 +77110,483 @@ 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, - [60750] = 11, + [71188] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, - aux_sym_conflict_target_token1, - ACTIONS(1951), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1955), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1957), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1959), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1963), 1, - sym__identifier, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(2271), 1, + anon_sym_LPAREN, + ACTIONS(2273), 1, + aux_sym_insert_items_token1, + ACTIONS(2275), 1, + aux_sym_insert_items_token2, + ACTIONS(2277), 1, + aux_sym_select_statement_token1, STATE(1203), 1, - sym_table_constraint_ty, - STATE(1205), 1, + sym_as, + STATE(1213), 1, + sym__list_of_identifiers, + STATE(1215), 1, + sym_insert_items, + STATE(1407), 1, + sym_select_statement, + STATE(2302), 1, + sym_with_query, + [71225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [71242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [71259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2279), 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, + [71276] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1310), 1, + sym_into, + STATE(1312), 1, + sym__select_limit_offset, + ACTIONS(2281), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [71305] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1197), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1343), 1, + sym_into, + STATE(1444), 1, + sym__select_limit_offset, + ACTIONS(2187), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(373), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [71357] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1314), 1, + sym__select_limit_offset, + STATE(1343), 1, + sym_into, + ACTIONS(2187), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [71386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_COMMA, + STATE(1131), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2159), 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, + [71407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_COMMA, + STATE(1121), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2209), 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, + [71428] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2215), 1, + aux_sym_insert_statement_token2, + ACTIONS(2217), 1, + aux_sym_returning_token1, + ACTIONS(2219), 1, + aux_sym_index_using_token1, + ACTIONS(2221), 1, + aux_sym_where_filter_token1, + STATE(1189), 1, sym_identifier, - STATE(1638), 1, + STATE(1279), 1, + sym_delete_using, + STATE(1383), 1, + sym_where_filter, + STATE(1801), 1, + sym_into, + ACTIONS(2211), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71463] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(1920), 1, + aux_sym_update_statement_token2, + ACTIONS(2271), 1, + anon_sym_LPAREN, + ACTIONS(2273), 1, + aux_sym_insert_items_token1, + ACTIONS(2275), 1, + aux_sym_insert_items_token2, + ACTIONS(2277), 1, + aux_sym_select_statement_token1, + STATE(1198), 1, + sym_as, + STATE(1234), 1, + sym__list_of_identifiers, + STATE(1235), 1, + sym_insert_items, + STATE(1407), 1, + sym_select_statement, + STATE(2302), 1, + sym_with_query, + [71500] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2288), 1, + aux_sym_update_statement_token3, + ACTIONS(2290), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2292), 1, + aux_sym_alter_table_action_token1, + ACTIONS(2294), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1652), 1, + sym_alter_table_action, + STATE(2000), 1, + sym_alter_table_change, + STATE(2082), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [71531] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1295), 1, + sym__select_limit_offset, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [71560] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1545), 1, + sym_with_query, + STATE(1982), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [71589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 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, + [71606] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_conflict_target_token1, + ACTIONS(2173), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + STATE(1411), 1, + sym_table_constraint_ty, + STATE(1898), 1, sym_create_table_item, - STATE(1762), 2, + STATE(1838), 2, sym_table_constraint, sym_table_column_item, - [60785] = 11, + [71641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1040), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1187), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, sym_into, - STATE(1374), 1, + STATE(1321), 1, sym__select_limit_offset, - ACTIONS(1577), 2, + ACTIONS(2110), 5, anon_sym_SEMI, anon_sym_RPAREN, - [60820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 11, - aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - sym__identifier, - [60837] = 9, + aux_sym_returning_token1, + [71670] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1208), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1452), 1, + sym__select_limit_offset, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71705] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1545), 1, + sym_with_query, + STATE(2069), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [71734] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2288), 1, aux_sym_update_statement_token3, - ACTIONS(2052), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2054), 1, + ACTIONS(2290), 1, aux_sym_alter_table_statement_token1, - ACTIONS(2056), 1, + ACTIONS(2292), 1, aux_sym_alter_table_action_token1, - ACTIONS(2058), 1, + ACTIONS(2294), 1, aux_sym_alter_table_rename_column_token1, - STATE(1502), 1, + STATE(1652), 1, sym_alter_table_action, - STATE(2025), 1, + STATE(2224), 1, sym_alter_table_change, - STATE(1991), 4, + STATE(2082), 4, sym_alter_table_rename_column, sym_alter_table_rename_constraint, sym_alter_table_rename_table, sym_alter_table_change_schema, - [60868] = 11, + [71765] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2215), 1, aux_sym_insert_statement_token2, - STATE(1031), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, + ACTIONS(2219), 1, + aux_sym_index_using_token1, + ACTIONS(2221), 1, + aux_sym_where_filter_token1, + ACTIONS(2298), 1, + aux_sym_returning_token1, + STATE(1184), 1, + sym_identifier, + STATE(1269), 1, + sym_delete_using, + STATE(1405), 1, + sym_where_filter, + STATE(1836), 1, sym_into, - STATE(1317), 1, - sym__select_limit_offset, - ACTIONS(1672), 2, + ACTIONS(2296), 2, anon_sym_SEMI, anon_sym_RPAREN, - [60903] = 11, + [71800] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(1039), 1, + STATE(1209), 1, sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1183), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, sym_into, - STATE(1328), 1, + STATE(1454), 1, sym__select_limit_offset, - ACTIONS(1981), 2, + ACTIONS(1870), 2, anon_sym_SEMI, anon_sym_RPAREN, - [60938] = 2, + [71835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 11, + ACTIONS(2300), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -66780,114 +77598,250 @@ 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, - [60955] = 11, + [71852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2017), 1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - ACTIONS(2021), 1, - aux_sym_index_using_token1, - ACTIONS(2023), 1, - aux_sym_where_filter_token1, - ACTIONS(2041), 1, + STATE(1187), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1340), 1, + sym__select_limit_offset, + ACTIONS(695), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - STATE(1027), 1, - sym_identifier, - STATE(1117), 1, - sym_delete_using, - STATE(1224), 1, - sym_where_filter, - STATE(1756), 1, - sym_into, - ACTIONS(2037), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60990] = 11, + [71916] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1044), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1284), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1328), 1, sym__select_limit_offset, - ACTIONS(1638), 2, + STATE(1339), 1, + sym_into, + ACTIONS(1986), 5, anon_sym_SEMI, anon_sym_RPAREN, - [61025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1666), 1, aux_sym_insert_statement_token2, - STATE(1037), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1173), 1, - sym_into, - STATE(1355), 1, - sym__select_limit_offset, - ACTIONS(1865), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61060] = 2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [71945] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2087), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(599), 1, + anon_sym_LBRACK, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(266), 1, + aux_sym__type_repeat1, + STATE(1384), 1, + sym__type, + ACTIONS(129), 2, anon_sym_COMMA, - STATE(1000), 1, + anon_sym_RPAREN, + ACTIONS(601), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(219), 2, + sym_predefined_types, + sym_identifier, + [71976] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, + sym_into, + STATE(1353), 1, + sym__select_limit_offset, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [72005] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1191), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1332), 1, + sym__select_limit_offset, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [72069] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1207), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, + sym_into, + STATE(1463), 1, + sym__select_limit_offset, + ACTIONS(2110), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 1, + anon_sym_COMMA, + STATE(1155), 1, + aux_sym_returning_repeat1, + ACTIONS(2128), 9, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [72125] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1204), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1339), 1, + sym_into, + STATE(1520), 1, + sym__select_limit_offset, + ACTIONS(1986), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + STATE(897), 1, + sym_identifier, + ACTIONS(1888), 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, + [72181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2307), 1, + anon_sym_COMMA, + STATE(1179), 1, aux_sym_select_order_by_repeat1, - ACTIONS(2089), 8, + ACTIONS(2305), 8, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -66896,10 +77850,141 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [61112] = 2, + [72201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 10, + ACTIONS(2309), 1, + anon_sym_COMMA, + STATE(1167), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2209), 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, + [72221] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1224), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1637), 1, + sym__select_limit_offset, + [72255] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1257), 1, + sym_select_order_by, + STATE(1313), 1, + sym_into, + STATE(1611), 1, + sym__select_limit_offset, + [72289] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1254), 1, + sym_select_order_by, + STATE(1299), 1, + sym_into, + STATE(1722), 1, + sym__select_limit_offset, + [72323] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + STATE(1219), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1747), 1, + sym__select_limit_offset, + [72357] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + STATE(1226), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1739), 1, + sym__select_limit_offset, + [72391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -66910,33 +77995,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [61128] = 7, + [72407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(2313), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + anon_sym_COMMA, + STATE(1178), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2189), 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, + [72443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2100), 1, + ACTIONS(2319), 1, aux_sym_grant_privileges_token1, - STATE(1495), 1, + STATE(1657), 1, sym_identifier, - STATE(1993), 1, + STATE(2081), 1, sym_grant_targets, - ACTIONS(2096), 3, - aux_sym_drop_function_statement_token2, + ACTIONS(2315), 3, + aux_sym_drop_function_statement_token1, aux_sym_grant_targets_token6, aux_sym_grant_targets_token7, - ACTIONS(2098), 3, + ACTIONS(2317), 3, aux_sym_create_table_statement_token2, aux_sym_create_schema_statement_token1, aux_sym_grant_targets_token5, - [61154] = 4, + [72469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2321), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72485] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1262), 1, + sym_select_order_by, + STATE(1333), 1, + sym_into, + STATE(1737), 1, + sym__select_limit_offset, + [72519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2323), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2325), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72583] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1805), 1, + aux_sym_select_order_by_token1, + ACTIONS(2187), 1, + aux_sym_for_statement_token2, + STATE(1236), 1, + sym_select_order_by, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1343), 1, + sym_into, + STATE(1717), 1, + sym__select_limit_offset, + [72617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2331), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, anon_sym_COMMA, - STATE(1000), 1, + STATE(1177), 1, aux_sym_select_order_by_repeat1, - ACTIONS(2102), 8, + ACTIONS(2333), 8, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -66945,208 +78190,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [61174] = 2, + [72653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61190] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1981), 1, - aux_sym_for_statement_token2, - STATE(1066), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1183), 1, - sym_into, - STATE(1382), 1, - sym__select_limit_offset, - [61224] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1073), 1, - sym_select_order_by, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1429), 1, - sym__select_limit_offset, - [61258] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - STATE(1067), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [61292] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1096), 1, - sym_select_order_by, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [61326] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1638), 1, - aux_sym_for_statement_token2, - STATE(1060), 1, - sym_select_order_by, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1415), 1, - sym__select_limit_offset, - [61360] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1865), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1075), 1, - sym_select_order_by, - STATE(1173), 1, - sym_into, - STATE(1387), 1, - sym__select_limit_offset, - [61394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2110), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2114), 1, + ACTIONS(2338), 1, anon_sym_COMMA, - STATE(1017), 1, + STATE(1178), 1, aux_sym_update_statement_repeat2, - ACTIONS(1945), 8, + ACTIONS(2159), 8, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -67155,58 +78206,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [61462] = 2, + [72673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [61494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 1, + ACTIONS(2307), 1, anon_sym_COMMA, - STATE(1017), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1928), 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, - [61514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COMMA, - STATE(1003), 1, + STATE(1177), 1, aux_sym_select_order_by_repeat1, - ACTIONS(2123), 8, + ACTIONS(2341), 8, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -67215,72 +78222,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [61534] = 4, + [72693] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 1, - anon_sym_COMMA, - STATE(1014), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1983), 8, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, + ACTIONS(1805), 1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [61554] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1749), 1, + ACTIONS(1986), 1, aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1079), 1, - sym_select_order_by, - STATE(1164), 1, - sym_into, - STATE(1392), 1, - sym__select_limit_offset, - [61588] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1573), 1, - aux_sym_select_order_by_token1, - ACTIONS(1672), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, + STATE(1239), 1, sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1100), 1, + STATE(1265), 1, sym_select_order_by, - STATE(1148), 1, + STATE(1339), 1, sym_into, - STATE(1399), 1, + STATE(1727), 1, sym__select_limit_offset, - [61622] = 2, + [72727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 10, + ACTIONS(2343), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -67291,891 +78259,664 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [61638] = 2, + [72743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 9, + ACTIONS(2345), 10, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [61653] = 9, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [72759] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(2349), 1, anon_sym_COMMA, - ACTIONS(2131), 1, + ACTIONS(2351), 1, aux_sym_update_statement_token4, - ACTIONS(2133), 1, + ACTIONS(2353), 1, aux_sym_returning_token1, - ACTIONS(2135), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - STATE(1113), 1, + STATE(1282), 1, aux_sym_update_statement_repeat1, - STATE(1368), 1, + STATE(1516), 1, sym_where_filter, - STATE(1670), 1, + STATE(1897), 1, sym_returning, - ACTIONS(2127), 2, + ACTIONS(2347), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61682] = 9, + [72788] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2139), 1, - aux_sym_update_statement_token4, - STATE(1045), 1, - aux_sym_update_statement_repeat1, - STATE(1277), 1, - sym_where_filter, - STATE(1662), 1, - sym_returning, - ACTIONS(2137), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61711] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1173), 1, - sym_into, - STATE(1355), 1, - sym__select_limit_offset, - ACTIONS(1865), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61740] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2141), 1, + ACTIONS(2359), 1, aux_sym_returning_token1, - ACTIONS(2143), 1, + ACTIONS(2361), 1, aux_sym_index_using_token1, - ACTIONS(2145), 1, + ACTIONS(2363), 1, aux_sym_where_filter_token1, - STATE(1105), 1, + STATE(1281), 1, sym_delete_using, - STATE(1212), 1, + STATE(1362), 1, sym_where_filter, - STATE(1741), 1, + STATE(1763), 1, sym_into, - ACTIONS(2068), 2, + ACTIONS(2357), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61769] = 9, + [72817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(1559), 2, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2367), 1, + aux_sym_update_statement_token4, + STATE(1183), 1, + aux_sym_update_statement_repeat1, + STATE(1513), 1, + sym_where_filter, + STATE(1970), 1, + sym_returning, + ACTIONS(2365), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61798] = 9, + [72846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, + ACTIONS(2333), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [72861] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, sym_select_offset, - STATE(1147), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1313), 1, sym_into, - STATE(1372), 1, + STATE(1452), 1, sym__select_limit_offset, - ACTIONS(558), 2, + ACTIONS(1809), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61827] = 10, + [72890] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2371), 1, + aux_sym_update_statement_token4, + STATE(1282), 1, + aux_sym_update_statement_repeat1, + STATE(1558), 1, + sym_where_filter, + STATE(1767), 1, + sym_returning, + ACTIONS(2369), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72919] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2361), 1, + aux_sym_index_using_token1, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2373), 1, + aux_sym_returning_token1, + STATE(1269), 1, + sym_delete_using, + STATE(1405), 1, + sym_where_filter, + STATE(1836), 1, + sym_into, + ACTIONS(2296), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [72963] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1454), 1, + sym__select_limit_offset, + ACTIONS(1870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72992] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2379), 1, + aux_sym_update_statement_token4, + STATE(1195), 1, + aux_sym_update_statement_repeat1, + STATE(1457), 1, + sym_where_filter, + STATE(1883), 1, + sym_returning, + ACTIONS(2377), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [73036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2361), 1, + aux_sym_index_using_token1, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2383), 1, + aux_sym_returning_token1, + STATE(1279), 1, + sym_delete_using, + STATE(1383), 1, + sym_where_filter, + STATE(1801), 1, + sym_into, + ACTIONS(2211), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73065] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2367), 1, + aux_sym_update_statement_token4, + STATE(1282), 1, + aux_sym_update_statement_repeat1, + STATE(1513), 1, + sym_where_filter, + STATE(1970), 1, + sym_returning, + ACTIONS(2365), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73094] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 1, + anon_sym_COMMA, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2379), 1, + aux_sym_update_statement_token4, + STATE(1282), 1, + aux_sym_update_statement_repeat1, + STATE(1457), 1, + sym_where_filter, + STATE(1883), 1, + sym_returning, + ACTIONS(2377), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73123] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1310), 1, + sym_into, + STATE(1480), 1, + sym__select_limit_offset, + ACTIONS(2281), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73152] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(1581), 1, + ACTIONS(2271), 1, anon_sym_LPAREN, - ACTIONS(2060), 1, + ACTIONS(2273), 1, aux_sym_insert_items_token1, - ACTIONS(2062), 1, + ACTIONS(2275), 1, aux_sym_insert_items_token2, - ACTIONS(2064), 1, + ACTIONS(2277), 1, aux_sym_select_statement_token1, - STATE(1050), 1, - sym_insert_items, - STATE(1128), 1, + STATE(1232), 1, sym__list_of_identifiers, - STATE(1239), 1, + STATE(1263), 1, + sym_insert_items, + STATE(1407), 1, sym_select_statement, - STATE(2007), 1, + STATE(2302), 1, sym_with_query, - [61858] = 9, + [73183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1164), 1, - sym_into, - STATE(1346), 1, - sym__select_limit_offset, - ACTIONS(1749), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61887] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 1, + ACTIONS(2349), 1, anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(2353), 1, aux_sym_returning_token1, - ACTIONS(2135), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2149), 1, + ACTIONS(2371), 1, aux_sym_update_statement_token4, - STATE(1024), 1, + STATE(1196), 1, aux_sym_update_statement_repeat1, - STATE(1313), 1, + STATE(1558), 1, sym_where_filter, - STATE(1758), 1, + STATE(1767), 1, sym_returning, - ACTIONS(2147), 2, + ACTIONS(2369), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61916] = 9, + [73212] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2153), 1, - aux_sym_update_statement_token4, - STATE(1042), 1, - aux_sym_update_statement_repeat1, - STATE(1305), 1, - sym_where_filter, - STATE(1740), 1, - sym_returning, - ACTIONS(2151), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61945] = 9, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2385), 1, + aux_sym_create_table_statement_token2, + ACTIONS(2387), 1, + aux_sym_return_setof_token1, + ACTIONS(2389), 1, + aux_sym_predefined_types_token1, + STATE(29), 2, + sym_predefined_types, + sym_identifier, + STATE(2150), 3, + sym_return_setof, + sym_return_table, + sym__type, + [73237] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1374), 1, - sym__select_limit_offset, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61974] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2139), 1, - aux_sym_update_statement_token4, - STATE(1113), 1, - aux_sym_update_statement_repeat1, - STATE(1277), 1, - sym_where_filter, - STATE(1662), 1, - sym_returning, - ACTIONS(2137), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62003] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1823), 1, + ACTIONS(2052), 1, aux_sym_insert_items_token1, - ACTIONS(1829), 1, + ACTIONS(2058), 1, aux_sym_alter_column_action_token1, - ACTIONS(1831), 1, + ACTIONS(2060), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(1833), 1, + ACTIONS(2062), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(1835), 1, + ACTIONS(2064), 1, aux_sym_constraint_foreign_key_token1, - STATE(912), 1, + STATE(1079), 1, sym_column_constraint_ty, - STATE(954), 1, + STATE(1087), 1, sym_constraint_foreign_key, - ACTIONS(1827), 2, + ACTIONS(2056), 2, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, - [62032] = 9, + [73266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1183), 1, - sym_into, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1981), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2155), 9, - anon_sym_SEMI, + ACTIONS(2349), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(2353), 1, aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [62076] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1151), 1, - sym_into, - STATE(1292), 1, - sym__select_limit_offset, - ACTIONS(2076), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62105] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1284), 1, - sym__select_limit_offset, - ACTIONS(1638), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62134] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2143), 1, - aux_sym_index_using_token1, - ACTIONS(2145), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2159), 1, - aux_sym_returning_token1, - STATE(1129), 1, - sym_delete_using, - STATE(1217), 1, - sym_where_filter, - STATE(1776), 1, - sym_into, - ACTIONS(2157), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62163] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2163), 1, + ACTIONS(2393), 1, aux_sym_update_statement_token4, - STATE(1113), 1, + STATE(1188), 1, aux_sym_update_statement_repeat1, - STATE(1327), 1, + STATE(1472), 1, sym_where_filter, - STATE(1689), 1, + STATE(1859), 1, sym_returning, - ACTIONS(2161), 2, + ACTIONS(2391), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62192] = 10, + [73295] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(1581), 1, + ACTIONS(2271), 1, anon_sym_LPAREN, - ACTIONS(2060), 1, + ACTIONS(2273), 1, aux_sym_insert_items_token1, - ACTIONS(2062), 1, + ACTIONS(2275), 1, aux_sym_insert_items_token2, - ACTIONS(2064), 1, + ACTIONS(2277), 1, aux_sym_select_statement_token1, - STATE(1076), 1, - sym_insert_items, - STATE(1102), 1, + STATE(1234), 1, sym__list_of_identifiers, - STATE(1239), 1, + STATE(1235), 1, + sym_insert_items, + STATE(1407), 1, sym_select_statement, - STATE(2007), 1, + STATE(2302), 1, sym_with_query, - [62223] = 9, + [73326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1148), 1, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, sym_into, - STATE(1317), 1, + STATE(1463), 1, sym__select_limit_offset, - ACTIONS(1672), 2, + ACTIONS(2110), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62252] = 9, + [73355] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2149), 1, - aux_sym_update_statement_token4, - STATE(1113), 1, - aux_sym_update_statement_repeat1, - STATE(1313), 1, - sym_where_filter, - STATE(1758), 1, - sym_returning, - ACTIONS(2147), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, + ACTIONS(1801), 1, aux_sym_select_limit_token1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - [62296] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2163), 1, - aux_sym_update_statement_token4, - STATE(1035), 1, - aux_sym_update_statement_repeat1, - STATE(1327), 1, - sym_where_filter, - STATE(1689), 1, - sym_returning, - ACTIONS(2161), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62325] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - ACTIONS(2143), 1, - aux_sym_index_using_token1, - ACTIONS(2145), 1, - aux_sym_where_filter_token1, - ACTIONS(2167), 1, - aux_sym_returning_token1, - STATE(1117), 1, - sym_delete_using, - STATE(1224), 1, - sym_where_filter, - STATE(1756), 1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, sym_into, - ACTIONS(2037), 2, + STATE(1554), 1, + sym__select_limit_offset, + ACTIONS(695), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62354] = 7, + [73384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(1092), 1, - sym_from_item, - STATE(850), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62378] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - ACTIONS(2175), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1176), 1, - sym_insert_conflict, - STATE(1379), 1, - sym_returning, - STATE(1747), 1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1339), 1, sym_into, - ACTIONS(2173), 2, + STATE(1520), 1, + sym__select_limit_offset, + ACTIONS(1986), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62404] = 7, + [73413] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - sym__identifier, - STATE(763), 1, - sym_identifier, - STATE(781), 1, - sym_function_call, - STATE(925), 1, - sym_from_item, - STATE(789), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62428] = 7, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1343), 1, + sym_into, + STATE(1444), 1, + sym__select_limit_offset, + ACTIONS(2187), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73442] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(1098), 1, - sym_from_item, - STATE(850), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62452] = 7, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1464), 1, + sym__select_limit_offset, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73471] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - sym__identifier, - STATE(891), 1, - sym_identifier, - STATE(948), 1, - sym_function_call, - STATE(1436), 1, - sym_from_item, - STATE(929), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62476] = 7, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, + sym_into, + STATE(1526), 1, + sym__select_limit_offset, + ACTIONS(1894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73500] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - sym__identifier, - STATE(753), 1, - sym_from_item, - STATE(891), 1, - sym_identifier, - STATE(948), 1, - sym_function_call, - STATE(931), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62500] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2189), 1, - aux_sym_trigger_cond_token1, - STATE(1280), 1, - sym_trigger_scope, - STATE(1635), 1, - sym_trigger_cond, - STATE(1830), 1, - sym_trigger_exec, - ACTIONS(2183), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [62526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(925), 1, - sym_from_item, - STATE(850), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62550] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2191), 1, - sym__identifier, - STATE(745), 1, - sym_identifier, - STATE(767), 1, - sym_function_call, - STATE(986), 1, - sym_from_item, - STATE(754), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62574] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(753), 1, - sym_from_item, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(846), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62598] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, + ACTIONS(2353), 1, aux_sym_returning_token1, - ACTIONS(2135), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2195), 1, + ACTIONS(2395), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1240), 1, aux_sym_update_statement_repeat2, - STATE(1325), 1, + STATE(1457), 1, sym_where_filter, - STATE(1593), 1, + STATE(1883), 1, sym_returning, - ACTIONS(2193), 2, + ACTIONS(2377), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62624] = 9, + [73526] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1672), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1148), 1, - sym_into, - STATE(1399), 1, - sym__select_limit_offset, - [62652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, + ACTIONS(2397), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2399), 1, sym__identifier, - STATE(719), 1, + STATE(906), 1, sym_identifier, - STATE(727), 1, - sym_function_call, STATE(925), 1, - sym_from_item, - STATE(729), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62676] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - sym__identifier, - STATE(763), 1, - sym_identifier, - STATE(781), 1, sym_function_call, - STATE(1019), 1, + STATE(1132), 1, sym_from_item, - STATE(789), 3, + STATE(930), 3, sym_from_select, sym_from_table, sym_from_function, - [62700] = 7, + [73550] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2397), 1, anon_sym_LPAREN, - ACTIONS(2199), 1, + ACTIONS(2401), 1, sym__identifier, - STATE(753), 1, - sym_from_item, - STATE(814), 1, + STATE(917), 1, sym_identifier, - STATE(820), 1, + STATE(942), 1, sym_function_call, - STATE(825), 3, + STATE(1055), 1, + sym_from_item, + STATE(950), 3, sym_from_select, sym_from_table, sym_from_function, - [62724] = 7, + [73574] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2273), 1, + aux_sym_insert_items_token1, + ACTIONS(2275), 1, + aux_sym_insert_items_token2, + ACTIONS(2277), 1, + aux_sym_select_statement_token1, + ACTIONS(2403), 1, anon_sym_LPAREN, - ACTIONS(2199), 1, - sym__identifier, - STATE(814), 1, - sym_identifier, - STATE(820), 1, - sym_function_call, - STATE(925), 1, - sym_from_item, - STATE(826), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62748] = 7, + STATE(1235), 1, + sym_insert_items, + STATE(1407), 1, + sym_select_statement, + STATE(2302), 1, + sym_with_query, + [73602] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2397), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2405), 1, sym__identifier, - STATE(719), 1, + STATE(881), 1, sym_identifier, - STATE(727), 1, + STATE(889), 1, sym_function_call, - STATE(753), 1, + STATE(900), 1, sym_from_item, - STATE(728), 3, + STATE(888), 3, sym_from_select, sym_from_table, sym_from_function, - [62772] = 9, + [73626] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(2076), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1151), 1, - sym_into, - STATE(1391), 1, - sym__select_limit_offset, - [62800] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1638), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1139), 1, - sym_into, - STATE(1415), 1, - sym__select_limit_offset, - [62828] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - sym__identifier, - STATE(719), 1, - sym_identifier, - STATE(727), 1, - sym_function_call, - STATE(916), 1, - sym_from_item, - STATE(729), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [62852] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2175), 1, + ACTIONS(2409), 1, aux_sym_insert_conflict_token1, - ACTIONS(2177), 1, + ACTIONS(2411), 1, aux_sym_returning_token1, - STATE(1154), 1, + STATE(1347), 1, sym_insert_conflict, - STATE(1294), 1, + STATE(1504), 1, sym_returning, - STATE(1734), 1, + STATE(1815), 1, sym_into, - ACTIONS(2201), 2, + ACTIONS(2407), 2, anon_sym_SEMI, anon_sym_RPAREN, - [62878] = 6, + [73652] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2205), 1, + ACTIONS(2395), 1, anon_sym_COMMA, - STATE(1085), 1, - aux_sym_update_statement_repeat1, - STATE(1285), 1, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + STATE(1501), 1, sym_where_filter, - ACTIONS(2203), 4, + STATE(1813), 1, + sym_returning, + ACTIONS(2413), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [62900] = 3, + [73678] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 2, @@ -68188,554 +78929,1046 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_index_using_token1, aux_sym_where_filter_token1, sym__identifier, - [62916] = 4, + [73694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1177), 1, - sym_select_offset, - ACTIONS(2207), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [62934] = 9, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + sym__identifier, + STATE(900), 1, + sym_from_item, + STATE(917), 1, + sym_identifier, + STATE(942), 1, + sym_function_call, + STATE(948), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73718] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, + ACTIONS(904), 1, aux_sym_insert_statement_token2, - ACTIONS(1569), 1, + ACTIONS(1801), 1, aux_sym_select_limit_token1, - ACTIONS(1571), 1, + ACTIONS(1803), 1, aux_sym_select_offset_token1, - ACTIONS(1577), 1, + ACTIONS(1809), 1, aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, + STATE(1238), 1, sym_select_offset, - STATE(1187), 1, - sym_into, - STATE(1417), 1, - sym__select_limit_offset, - [62962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - STATE(1177), 1, + STATE(1239), 1, sym_select_limit, - ACTIONS(2207), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [62980] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1981), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1183), 1, - sym_into, - STATE(1382), 1, - sym__select_limit_offset, - [63008] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2175), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1156), 1, - sym_insert_conflict, - STATE(1357), 1, - sym_returning, - STATE(1760), 1, - sym_into, - ACTIONS(2209), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63034] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2179), 1, - sym__identifier, - STATE(753), 1, - sym_from_item, - STATE(763), 1, - sym_identifier, - STATE(781), 1, - sym_function_call, - STATE(792), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63058] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, - STATE(1281), 1, - sym_where_filter, - STATE(1578), 1, - sym_returning, - ACTIONS(2211), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63084] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1865), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1173), 1, - sym_into, - STATE(1387), 1, - sym__select_limit_offset, - [63112] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - sym__identifier, - STATE(891), 1, - sym_identifier, - STATE(948), 1, - sym_function_call, - STATE(1494), 1, - sym_from_item, - STATE(929), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63136] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2175), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1163), 1, - sym_insert_conflict, - STATE(1263), 1, - sym_returning, - STATE(1696), 1, - sym_into, - ACTIONS(2213), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63162] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1088), 1, - aux_sym_update_statement_repeat2, - STATE(1368), 1, - sym_where_filter, - STATE(1670), 1, - sym_returning, - ACTIONS(2127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63188] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2191), 1, - sym__identifier, - STATE(745), 1, - sym_identifier, - STATE(767), 1, - sym_function_call, - STATE(925), 1, - sym_from_item, - STATE(754), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63212] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, - STATE(1325), 1, - sym_where_filter, - STATE(1593), 1, - sym_returning, - ACTIONS(2193), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63238] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - aux_sym_where_filter_token1, - ACTIONS(2205), 1, - anon_sym_COMMA, - STATE(1118), 1, - aux_sym_update_statement_repeat1, - STATE(1279), 1, - sym_where_filter, - ACTIONS(2215), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [63260] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2199), 1, - sym__identifier, - STATE(814), 1, - sym_identifier, - STATE(820), 1, - sym_function_call, - STATE(1111), 1, - sym_from_item, - STATE(826), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63284] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1084), 1, - aux_sym_update_statement_repeat2, - STATE(1351), 1, - sym_where_filter, - STATE(1623), 1, - sym_returning, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, - STATE(1351), 1, - sym_where_filter, - STATE(1623), 1, - sym_returning, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(1087), 1, - sym_from_item, - STATE(850), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63360] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - sym__identifier, - STATE(891), 1, - sym_identifier, - STATE(948), 1, - sym_function_call, - STATE(1471), 1, - sym_from_item, - STATE(929), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63384] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, - STATE(1368), 1, - sym_where_filter, - STATE(1670), 1, - sym_returning, - ACTIONS(2127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63410] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1095), 1, - aux_sym_update_statement_repeat2, - STATE(1277), 1, - sym_where_filter, - STATE(1662), 1, - sym_returning, - ACTIONS(2137), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63436] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2191), 1, - sym__identifier, - STATE(745), 1, - sym_identifier, - STATE(753), 1, - sym_from_item, - STATE(767), 1, - sym_function_call, - STATE(759), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63460] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, - ACTIONS(2171), 1, - sym__identifier, - STATE(819), 1, - sym_identifier, - STATE(857), 1, - sym_function_call, - STATE(1082), 1, - sym_from_item, - STATE(850), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [63484] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2195), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, STATE(1313), 1, + sym_into, + STATE(1611), 1, + sym__select_limit_offset, + [73746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2417), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_update_statement_repeat1, + STATE(1496), 1, sym_where_filter, - STATE(1758), 1, - sym_returning, - ACTIONS(2147), 2, + ACTIONS(2415), 4, anon_sym_SEMI, anon_sym_RPAREN, - [63510] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1171), 1, - sym_into, - STATE(1429), 1, - sym__select_limit_offset, - [63538] = 8, + aux_sym_returning_token1, + [73768] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2405), 1, + sym__identifier, + STATE(881), 1, + sym_identifier, + STATE(889), 1, + sym_function_call, + STATE(1083), 1, + sym_from_item, + STATE(894), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73792] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + sym__identifier, + STATE(900), 1, + sym_from_item, + STATE(906), 1, + sym_identifier, + STATE(925), 1, + sym_function_call, + STATE(931), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73816] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1250), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73840] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1342), 1, + sym_into, + STATE(1739), 1, + sym__select_limit_offset, + [73868] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2421), 1, + sym__identifier, + STATE(977), 1, + sym_identifier, + STATE(984), 1, + sym_function_call, + STATE(1055), 1, + sym_from_item, + STATE(990), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73892] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1333), 1, + sym_into, + STATE(1737), 1, + sym__select_limit_offset, + [73920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 1, aux_sym_trigger_scope_token1, - ACTIONS(2187), 1, + ACTIONS(2427), 1, aux_sym_trigger_exec_token1, - ACTIONS(2189), 1, + ACTIONS(2429), 1, aux_sym_trigger_cond_token1, - STATE(1373), 1, + STATE(1503), 1, sym_trigger_scope, - STATE(1650), 1, + STATE(1884), 1, sym_trigger_cond, - STATE(1869), 1, + STATE(2096), 1, sym_trigger_exec, - ACTIONS(2183), 2, + ACTIONS(2423), 2, aux_sym_update_set_token1, aux_sym_trigger_scope_token3, - [63564] = 8, + [73946] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2353), 1, aux_sym_returning_token1, - ACTIONS(2135), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2195), 1, + ACTIONS(2395), 1, anon_sym_COMMA, - STATE(1091), 1, + STATE(1252), 1, aux_sym_update_statement_repeat2, - STATE(1313), 1, + STATE(1516), 1, sym_where_filter, - STATE(1758), 1, + STATE(1897), 1, sym_returning, - ACTIONS(2147), 2, + ACTIONS(2347), 2, anon_sym_SEMI, anon_sym_RPAREN, - [63590] = 9, + [73972] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1147), 1, - sym_into, - STATE(1443), 1, - sym__select_limit_offset, - [63618] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1569), 1, - aux_sym_select_limit_token1, - ACTIONS(1571), 1, - aux_sym_select_offset_token1, - ACTIONS(1749), 1, - aux_sym_for_statement_token2, - STATE(1072), 1, - sym_select_limit, - STATE(1074), 1, - sym_select_offset, - STATE(1164), 1, - sym_into, - STATE(1392), 1, - sym__select_limit_offset, - [63646] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, + ACTIONS(2397), 1, anon_sym_LPAREN, - ACTIONS(2171), 1, + ACTIONS(2399), 1, sym__identifier, - STATE(819), 1, + STATE(906), 1, sym_identifier, - STATE(857), 1, + STATE(925), 1, sym_function_call, - STATE(1059), 1, + STATE(1055), 1, sym_from_item, - STATE(850), 3, + STATE(930), 3, sym_from_select, sym_from_table, sym_from_function, - [63670] = 8, + [73996] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym__identifier, + STATE(1058), 1, + sym_identifier, + STATE(1113), 1, + sym_function_call, + STATE(1756), 1, + sym_from_item, + STATE(1094), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74020] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1747), 1, + sym__select_limit_offset, + [74048] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(2060), 1, + ACTIONS(2273), 1, aux_sym_insert_items_token1, - ACTIONS(2062), 1, + ACTIONS(2275), 1, aux_sym_insert_items_token2, - ACTIONS(2064), 1, + ACTIONS(2277), 1, aux_sym_select_statement_token1, - STATE(1050), 1, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1246), 1, sym_insert_items, - STATE(1239), 1, + STATE(1407), 1, sym_select_statement, - STATE(2007), 1, + STATE(2302), 1, sym_with_query, - [63695] = 2, + [74076] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 7, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1228), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74100] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2273), 1, + aux_sym_insert_items_token1, + ACTIONS(2275), 1, + aux_sym_insert_items_token2, + ACTIONS(2277), 1, + aux_sym_select_statement_token1, + ACTIONS(2403), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_insert_items, + STATE(1407), 1, + sym_select_statement, + STATE(2302), 1, + sym_with_query, + [74128] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2409), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1317), 1, + sym_insert_conflict, + STATE(1512), 1, + sym_returning, + STATE(1816), 1, + sym_into, + ACTIONS(2433), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74154] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(2281), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1310), 1, + sym_into, + STATE(1714), 1, + sym__select_limit_offset, + [74182] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 1, + aux_sym_trigger_scope_token1, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2429), 1, + aux_sym_trigger_cond_token1, + STATE(1556), 1, + sym_trigger_scope, + STATE(1944), 1, + sym_trigger_cond, + STATE(2025), 1, + sym_trigger_exec, + ACTIONS(2423), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [74208] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + STATE(1319), 1, + sym_select_limit, + ACTIONS(2435), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1319), 1, + sym_select_offset, + ACTIONS(2435), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74244] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + STATE(1513), 1, + sym_where_filter, + STATE(1970), 1, + sym_returning, + ACTIONS(2365), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74270] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym__identifier, + STATE(1058), 1, + sym_identifier, + STATE(1113), 1, + sym_function_call, + STATE(1724), 1, + sym_from_item, + STATE(1094), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74294] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + STATE(1516), 1, + sym_where_filter, + STATE(1897), 1, + sym_returning, + ACTIONS(2347), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74320] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1255), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74344] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2421), 1, + sym__identifier, + STATE(900), 1, + sym_from_item, + STATE(977), 1, + sym_identifier, + STATE(984), 1, + sym_function_call, + STATE(979), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74368] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1248), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74392] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2409), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1338), 1, + sym_insert_conflict, + STATE(1542), 1, + sym_returning, + STATE(1934), 1, + sym_into, + ACTIONS(2437), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74418] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2421), 1, + sym__identifier, + STATE(977), 1, + sym_identifier, + STATE(984), 1, + sym_function_call, + STATE(1276), 1, + sym_from_item, + STATE(990), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74442] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_update_statement_repeat2, + STATE(1513), 1, + sym_where_filter, + STATE(1970), 1, + sym_returning, + ACTIONS(2365), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74468] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym__identifier, + STATE(1058), 1, + sym_identifier, + STATE(1113), 1, + sym_function_call, + STATE(1705), 1, + sym_from_item, + STATE(1094), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74492] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_update_statement_repeat2, + STATE(1501), 1, + sym_where_filter, + STATE(1813), 1, + sym_returning, + ACTIONS(2413), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74518] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + sym__identifier, + STATE(917), 1, + sym_identifier, + STATE(942), 1, + sym_function_call, + STATE(1159), 1, + sym_from_item, + STATE(950), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74542] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + STATE(1460), 1, + sym_where_filter, + STATE(1849), 1, + sym_returning, + ACTIONS(2439), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74568] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + STATE(1490), 1, + sym_where_filter, + STATE(1791), 1, + sym_returning, + ACTIONS(2441), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74594] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(2187), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1343), 1, + sym_into, + STATE(1717), 1, + sym__select_limit_offset, + [74622] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2395), 1, + anon_sym_COMMA, + STATE(1216), 1, + aux_sym_update_statement_repeat2, + STATE(1460), 1, + sym_where_filter, + STATE(1849), 1, + sym_returning, + ACTIONS(2439), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1055), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74672] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1329), 1, + sym_into, + STATE(1637), 1, + sym__select_limit_offset, + [74700] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1210), 1, + sym_from_item, + STATE(1001), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2417), 1, + anon_sym_COMMA, + STATE(1220), 1, + aux_sym_update_statement_repeat1, + STATE(1484), 1, + sym_where_filter, + ACTIONS(2443), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [74746] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2431), 1, + sym__identifier, + STATE(900), 1, + sym_from_item, + STATE(1058), 1, + sym_identifier, + STATE(1113), 1, + sym_function_call, + STATE(1097), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(900), 1, + sym_from_item, + STATE(983), 1, + sym_identifier, + STATE(1010), 1, + sym_function_call, + STATE(1000), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74794] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(1986), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1339), 1, + sym_into, + STATE(1727), 1, + sym__select_limit_offset, + [74822] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2409), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1308), 1, + sym_insert_conflict, + STATE(1508), 1, + sym_returning, + STATE(1942), 1, + sym_into, + ACTIONS(2445), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74848] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + anon_sym_LPAREN, + ACTIONS(2405), 1, + sym__identifier, + STATE(881), 1, + sym_identifier, + STATE(889), 1, + sym_function_call, + STATE(1055), 1, + sym_from_item, + STATE(894), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [74872] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_select_limit_token1, + ACTIONS(1803), 1, + aux_sym_select_offset_token1, + ACTIONS(2110), 1, + aux_sym_for_statement_token2, + STATE(1238), 1, + sym_select_offset, + STATE(1239), 1, + sym_select_limit, + STATE(1299), 1, + sym_into, + STATE(1722), 1, + sym__select_limit_offset, + [74900] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(219), 1, + sym_predefined_types, + STATE(1150), 1, + sym_identifier, + STATE(1683), 2, + sym_var_declaration, + sym__type, + [74923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2451), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2449), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [74940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 1, + anon_sym_SEMI, + ACTIONS(2455), 1, + aux_sym_function_run_as_token1, + STATE(1620), 1, + sym_function_volatility, + STATE(2090), 1, + sym_function_run_as, + ACTIONS(2457), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [74961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + STATE(1362), 1, + sym_where_filter, + STATE(1763), 1, + sym_into, + ACTIONS(2357), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74984] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2383), 1, + aux_sym_returning_token1, + STATE(1383), 1, + sym_where_filter, + STATE(1801), 1, + sym_into, + ACTIONS(2211), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_update_statement_repeat1, + ACTIONS(2459), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75037] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + ACTIONS(2466), 1, + anon_sym_RPAREN, + STATE(219), 1, + sym_predefined_types, + STATE(1150), 1, + sym_identifier, + STATE(1750), 2, + sym_var_declaration, + sym__type, + [75060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2472), 1, + aux_sym_index_col_nulls_token1, + STATE(1495), 1, + sym_index_col_dir, + STATE(1929), 1, + sym_index_col_nulls, + ACTIONS(2468), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2470), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + [75081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2451), 1, + anon_sym_COMMA, + STATE(1267), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2476), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2459), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(827), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + [75137] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2363), 1, + aux_sym_where_filter_token1, + ACTIONS(2373), 1, + aux_sym_returning_token1, + STATE(1405), 1, + sym_where_filter, + STATE(1836), 1, + sym_into, + ACTIONS(2296), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -68743,88 +79976,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_returning_token1, aux_sym_for_statement_token2, aux_sym_select_limit_token1, - [63708] = 6, + [75173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - aux_sym_index_col_nulls_token1, - STATE(1283), 1, - sym_index_col_dir, - STATE(1642), 1, - sym_index_col_nulls, - ACTIONS(2221), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2223), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - [63729] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - ACTIONS(2145), 1, + ACTIONS(2363), 1, aux_sym_where_filter_token1, - ACTIONS(2159), 1, + ACTIONS(2482), 1, aux_sym_returning_token1, - STATE(1217), 1, + STATE(1388), 1, sym_where_filter, - STATE(1776), 1, + STATE(1925), 1, sym_into, - ACTIONS(2157), 2, + ACTIONS(2480), 2, anon_sym_SEMI, anon_sym_RPAREN, - [63752] = 7, + [75196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - ACTIONS(2227), 1, - anon_sym_RPAREN, - STATE(818), 1, - sym_predefined_types, - STATE(968), 1, - sym_identifier, - STATE(1506), 2, - sym_var_declaration, - sym__type, - [63775] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 1, - aux_sym_index_col_nulls_token1, - STATE(1366), 1, - sym_index_col_dir, - STATE(1711), 1, - sym_index_col_nulls, - ACTIONS(2223), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(2229), 2, + ACTIONS(2484), 1, anon_sym_COMMA, + STATE(1282), 1, + aux_sym_update_statement_repeat1, + ACTIONS(2459), 5, + anon_sym_SEMI, + aux_sym_update_statement_token4, anon_sym_RPAREN, - [63796] = 7, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - ACTIONS(2231), 1, - anon_sym_RPAREN, - STATE(818), 1, - sym_predefined_types, - STATE(968), 1, - sym_identifier, - STATE(1402), 2, - sym_var_declaration, - sym__type, - [63819] = 2, + ACTIONS(2455), 1, + aux_sym_function_run_as_token1, + ACTIONS(2487), 1, + anon_sym_SEMI, + STATE(1679), 1, + sym_function_volatility, + STATE(2154), 1, + sym_function_run_as, + ACTIONS(2457), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [75234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 7, + ACTIONS(896), 7, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -68832,10 +80031,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [63832] = 2, + [75247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 7, + ACTIONS(2489), 7, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -68843,20 +80042,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [63845] = 4, + [75260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 1, + ACTIONS(2491), 1, anon_sym_COMMA, - STATE(1130), 1, + STATE(1286), 1, aux_sym_update_statement_repeat2, - ACTIONS(2237), 5, + ACTIONS(2159), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [63862] = 3, + [75277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + STATE(1904), 1, + sym_var_declaration, + ACTIONS(2496), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1289), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [75311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + STATE(1904), 1, + sym_var_declaration, + ACTIONS(2498), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1289), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [75332] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 2, @@ -68868,9928 +80108,10593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, - [63877] = 4, + [75347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 1, + ACTIONS(2472), 1, + aux_sym_index_col_nulls_token1, + STATE(1491), 1, + sym_index_col_dir, + STATE(1878), 1, + sym_index_col_nulls, + ACTIONS(2470), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(2503), 2, anon_sym_COMMA, - STATE(1113), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2233), 5, - anon_sym_SEMI, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [63894] = 4, + [75368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_COMMA, - STATE(1114), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1928), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [63911] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, + ACTIONS(335), 1, sym__identifier, - STATE(1249), 1, - sym_identifier, - STATE(1576), 1, - sym_var_declaration, - ACTIONS(2247), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1115), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [63932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_SEMI, - ACTIONS(2254), 1, - aux_sym_function_run_as_token1, - STATE(1560), 1, - sym_function_volatility, - STATE(1896), 1, - sym_function_run_as, - ACTIONS(2256), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [63953] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2141), 1, - aux_sym_returning_token1, - ACTIONS(2145), 1, - aux_sym_where_filter_token1, - STATE(1212), 1, - sym_where_filter, - STATE(1741), 1, - sym_into, - ACTIONS(2068), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2258), 1, - anon_sym_COMMA, - STATE(1118), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2233), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [63993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64006] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(2263), 1, + ACTIONS(2507), 1, aux_sym_grant_roles_token2, - STATE(1482), 1, + STATE(1685), 1, sym_identifier, - STATE(2000), 1, + STATE(2138), 1, sym_grant_roles, - ACTIONS(2261), 3, + ACTIONS(2505), 3, aux_sym_schema_role_token2, aux_sym_schema_role_token3, aux_sym_grant_roles_token1, - [64027] = 6, + [75389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 1, - aux_sym_function_run_as_token1, - ACTIONS(2265), 1, - anon_sym_SEMI, - STATE(1513), 1, - sym_function_volatility, - STATE(1864), 1, - sym_function_run_as, - ACTIONS(2256), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [64048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64061] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, + ACTIONS(2185), 1, sym__identifier, - STATE(1249), 1, + STATE(1414), 1, sym_identifier, - STATE(1576), 1, + STATE(1904), 1, sym_var_declaration, - ACTIONS(2269), 2, + ACTIONS(2509), 2, aux_sym_body_token1, aux_sym_declarations_token1, - STATE(1127), 2, + STATE(1288), 2, sym_var_definition, aux_sym_declarations_repeat1, - [64082] = 8, + [75410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(309), 1, aux_sym_sequence_start_token2, - ACTIONS(2060), 1, - aux_sym_insert_items_token1, - ACTIONS(2062), 1, - aux_sym_insert_items_token2, - ACTIONS(2064), 1, + ACTIONS(333), 1, aux_sym_select_statement_token1, - STATE(1076), 1, - sym_insert_items, - STATE(1239), 1, - sym_select_statement, - STATE(2007), 1, - sym_with_query, - [64107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, + ACTIONS(335), 1, sym__identifier, - STATE(1249), 1, + ACTIONS(2511), 1, + anon_sym_RPAREN, + STATE(1663), 1, sym_identifier, - STATE(1576), 1, - sym_var_declaration, - ACTIONS(2275), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1115), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [64154] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2060), 1, - aux_sym_insert_items_token1, - ACTIONS(2062), 1, - aux_sym_insert_items_token2, - ACTIONS(2064), 1, - aux_sym_select_statement_token1, - STATE(1081), 1, - sym_insert_items, - STATE(1239), 1, - sym_select_statement, - STATE(2007), 1, + STATE(2034), 1, sym_with_query, - [64179] = 7, + STATE(2202), 1, + sym_select_statement, + [75435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2145), 1, - aux_sym_where_filter_token1, - ACTIONS(2279), 1, - aux_sym_returning_token1, - STATE(1202), 1, - sym_where_filter, - STATE(1691), 1, + STATE(1333), 1, sym_into, - ACTIONS(2277), 2, + ACTIONS(1894), 5, anon_sym_SEMI, anon_sym_RPAREN, - [64202] = 4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(1114), 1, - aux_sym_update_statement_repeat2, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1825), 1, + sym_into, + ACTIONS(2513), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1348), 1, + aux_sym_returning_repeat1, + STATE(1825), 1, + sym_into, + ACTIONS(2513), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_with_query_repeat1, + ACTIONS(2520), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [75505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1925), 1, + sym_into, + ACTIONS(2480), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1261), 1, + sym_join_type, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75555] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1346), 1, + aux_sym_returning_repeat1, + STATE(1925), 1, + sym_into, + ACTIONS(2480), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1222), 1, + sym_join_type, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2044), 1, + aux_sym_insert_statement_token2, + STATE(1035), 1, + sym_identifier, + ACTIONS(2042), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [75611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1260), 1, + sym_join_type, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym_with_query_repeat1, + ACTIONS(2524), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [75645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1785), 1, + sym_into, + ACTIONS(2526), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1542), 1, + sym_returning, + STATE(1934), 1, + sym_into, + ACTIONS(2437), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2528), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_with_query_repeat1, + ACTIONS(2532), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [75725] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1309), 1, + sym_into, + ACTIONS(2530), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75751] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1310), 1, + sym_into, ACTIONS(2281), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64219] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2145), 1, - aux_sym_where_filter_token1, - ACTIONS(2167), 1, - aux_sym_returning_token1, - STATE(1224), 1, - sym_where_filter, - STATE(1756), 1, - sym_into, - ACTIONS(2037), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(676), 7, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_offset_token1, - [64255] = 3, + [75765] = 6, ACTIONS(3), 1, sym_comment, - STATE(1171), 1, - sym_into, - ACTIONS(1559), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64269] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 1, - aux_sym_update_statement_token3, - ACTIONS(2287), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2289), 1, - aux_sym_create_type_statement_token2, - STATE(1775), 1, - sym_alter_column_action, - ACTIONS(2283), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [64289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2291), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [64301] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, + ACTIONS(2185), 1, sym__identifier, - ACTIONS(2293), 1, - aux_sym_schema_role_token1, - ACTIONS(2295), 1, - aux_sym_if_statement_token1, - STATE(1275), 1, - sym_if_not_exists, - STATE(1445), 1, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(219), 1, + sym_predefined_types, + STATE(1150), 1, sym_identifier, - STATE(1824), 1, - sym_schema_role, - [64323] = 5, + STATE(1882), 2, + sym_var_declaration, + sym__type, + [75785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2536), 1, + aux_sym_if_statement_token1, + STATE(1377), 1, + sym_identifier, + STATE(1797), 1, + sym_if_exists, + ACTIONS(2534), 2, + aux_sym_conflict_target_token1, + aux_sym_alter_table_action_token2, + [75805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1508), 1, + sym_returning, + STATE(1942), 1, + sym_into, + ACTIONS(2445), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75825] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, aux_sym_join_item_token3, - ACTIONS(1605), 1, + ACTIONS(1849), 1, aux_sym_join_type_token1, - STATE(1065), 1, + STATE(1214), 1, sym_join_type, - ACTIONS(1607), 3, + ACTIONS(1851), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [64341] = 6, + [75843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1170), 1, - aux_sym_returning_repeat1, - STATE(1776), 1, - sym_into, - ACTIONS(2157), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1672), 6, + ACTIONS(2538), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [64373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 1, - aux_sym_update_statement_token3, - ACTIONS(2287), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2289), 1, - aux_sym_create_type_statement_token2, - STATE(1730), 1, - sym_alter_column_action, - ACTIONS(2299), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [64393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1093), 1, - sym_join_type, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [64411] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1183), 1, - sym_into, - ACTIONS(1981), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1058), 1, - sym_join_type, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [64443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1185), 1, - aux_sym_returning_repeat1, - STATE(1603), 1, - sym_into, - ACTIONS(2301), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - STATE(1603), 1, - sym_into, - ACTIONS(2301), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64483] = 6, + [75855] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(2303), 1, + ACTIONS(2540), 1, aux_sym_trigger_exec_token1, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(2046), 2, + STATE(2014), 2, sym_execute_statement, sym_select_statement, - [64503] = 2, + [75875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 6, + STATE(1343), 1, + sym_into, + ACTIONS(2187), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [64515] = 2, + [75901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [64527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(1201), 1, + STATE(1300), 1, aux_sym_returning_repeat1, - STATE(1649), 1, + STATE(1763), 1, sym_into, - ACTIONS(2305), 2, + ACTIONS(2357), 2, anon_sym_SEMI, anon_sym_RPAREN, - [64547] = 3, + [75921] = 7, ACTIONS(3), 1, sym_comment, - STATE(1173), 1, - sym_into, - ACTIONS(1865), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2307), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [64573] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - STATE(1776), 1, - sym_into, - ACTIONS(2157), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2311), 1, - aux_sym_grant_roles_token2, - STATE(1573), 1, + ACTIONS(2542), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2544), 1, + aux_sym_create_index_statement_token3, + ACTIONS(2546), 1, + aux_sym_if_statement_token1, + STATE(1643), 1, + sym_if_not_exists, + STATE(2126), 1, sym_identifier, - ACTIONS(2309), 3, + [75943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1218), 1, + sym_join_type, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2548), 1, + aux_sym_schema_role_token1, + ACTIONS(2550), 1, + aux_sym_if_statement_token1, + STATE(1465), 1, + sym_if_not_exists, + STATE(1648), 1, + sym_identifier, + STATE(2151), 1, + sym_schema_role, + [75983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2552), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2159), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75999] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1299), 1, + sym_into, + ACTIONS(2110), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [76025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(2557), 1, + aux_sym_grant_roles_token2, + STATE(1914), 1, + sym_identifier, + ACTIONS(2555), 3, aux_sym_schema_role_token2, aux_sym_schema_role_token3, aux_sym_grant_roles_token1, - [64611] = 6, + [76043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1357), 1, - sym_returning, - STATE(1760), 1, + STATE(1322), 1, sym_into, - ACTIONS(2209), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64631] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2313), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2315), 1, - aux_sym_create_index_statement_token3, - ACTIONS(2317), 1, - aux_sym_if_statement_token1, - STATE(1453), 1, - sym_if_not_exists, - STATE(1829), 1, - sym_identifier, - [64653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1379), 1, - sym_returning, - STATE(1747), 1, - sym_into, - ACTIONS(2173), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_COMMA, - STATE(1167), 1, - aux_sym_with_query_repeat1, - ACTIONS(2319), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [64689] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1147), 1, - sym_into, - ACTIONS(558), 5, + ACTIONS(695), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [64703] = 3, + [76057] = 3, ACTIONS(3), 1, sym_comment, - STATE(1135), 1, + STATE(1339), 1, sym_into, - ACTIONS(2307), 5, + ACTIONS(1986), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [64717] = 3, + [76071] = 2, ACTIONS(3), 1, sym_comment, - STATE(1164), 1, - sym_into, - ACTIONS(1749), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1063), 1, - sym_join_type, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [64749] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1151), 1, - sym_into, - ACTIONS(2076), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64763] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1354), 1, - sym_returning, - STATE(1634), 1, - sym_into, - ACTIONS(2323), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 6, + ACTIONS(1986), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [64795] = 3, + [76083] = 6, ACTIONS(3), 1, sym_comment, - STATE(1148), 1, - sym_into, - ACTIONS(1672), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64809] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(818), 1, - sym_predefined_types, - STATE(968), 1, - sym_identifier, - STATE(1575), 2, - sym_var_declaration, - sym__type, - [64829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 1, - anon_sym_COMMA, - STATE(1167), 1, - aux_sym_with_query_repeat1, - ACTIONS(2325), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [64845] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1184), 1, - aux_sym_returning_repeat1, - STATE(1691), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64865] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1152), 1, - aux_sym_returning_repeat1, - STATE(1741), 1, - sym_into, - ACTIONS(2068), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - STATE(1691), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [64917] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2317), 1, - aux_sym_if_statement_token1, - ACTIONS(2330), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2332), 1, - aux_sym_create_index_statement_token3, - STATE(1531), 1, - sym_if_not_exists, - STATE(1929), 1, - sym_identifier, - [64939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1981), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [64951] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1139), 1, - sym_into, - ACTIONS(1638), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64965] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1897), 1, - aux_sym_insert_statement_token2, - STATE(876), 1, - sym_identifier, - ACTIONS(1895), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [64983] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2177), 1, - aux_sym_returning_token1, - STATE(1263), 1, - sym_returning, - STATE(1696), 1, - sym_into, - ACTIONS(2213), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [65015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym_with_query_repeat1, - ACTIONS(2336), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [65031] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(1397), 1, - sym__type, - STATE(1773), 1, - sym_alter_column_type, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [65051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1149), 1, - aux_sym_returning_repeat1, - STATE(1579), 1, - sym_into, - ACTIONS(2338), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65071] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65085] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1077), 1, - sym_join_type, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [65103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [65115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - STATE(1631), 1, - sym_into, - ACTIONS(2340), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65135] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - STATE(1579), 1, - sym_into, - ACTIONS(2338), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 1, - anon_sym_COMMA, - STATE(1186), 1, - aux_sym_update_statement_repeat2, - ACTIONS(1928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1638), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [65183] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1145), 1, - aux_sym_returning_repeat1, - STATE(1631), 1, - sym_into, - ACTIONS(2340), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2345), 1, - aux_sym_create_table_statement_token2, - ACTIONS(2347), 1, - aux_sym_return_setof_token1, - STATE(2080), 3, - sym_return_setof, - sym_return_table, - sym_identifier, - [65221] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2351), 1, - aux_sym_if_statement_token1, - STATE(1206), 1, - sym_identifier, - STATE(1708), 1, - sym_if_exists, - ACTIONS(2349), 2, - aux_sym_conflict_target_token1, - aux_sym_alter_table_action_token2, - [65241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, - aux_sym_join_item_token3, - ACTIONS(1605), 1, - aux_sym_join_type_token1, - STATE(1054), 1, - sym_join_type, - ACTIONS(1607), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [65259] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(1397), 1, - sym__type, - STATE(1630), 1, - sym_alter_column_type, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [65279] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(1245), 1, - sym__type, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [65296] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - STATE(1875), 1, - sym_function_call, - STATE(1876), 1, - sym_identifier, - ACTIONS(2353), 2, - aux_sym_drop_function_statement_token2, - aux_sym_grant_targets_token6, - [65313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - STATE(1195), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2355), 3, - anon_sym_SEMI, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2360), 1, - anon_sym_SEMI, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - STATE(1570), 1, - sym_index_includes, - STATE(1902), 1, - sym_where_filter, - [65347] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - aux_sym_for_statement_token3, - ACTIONS(2369), 1, - aux_sym_if_statement_token5, - STATE(1197), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2366), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [65364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - anon_sym_DOLLAR, - STATE(1237), 1, - sym_dollar_quote, - STATE(1809), 2, - sym_block, - sym_string, - [65381] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1998), 1, - sym_trigger_event, - ACTIONS(2373), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [65394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2375), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - ACTIONS(1899), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [65420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2380), 1, - aux_sym_returning_token1, - STATE(1631), 1, - sym_into, - ACTIONS(2340), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - aux_sym_constraint_when_token1, - STATE(1389), 1, - sym_constraint_when, - ACTIONS(2382), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [65452] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - ACTIONS(1963), 1, - sym__identifier, - STATE(1205), 1, - sym_identifier, - STATE(1451), 1, - sym_if_not_exists, - STATE(1730), 1, - sym_table_column_item, - [65471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(844), 1, - sym__type, - STATE(818), 2, - sym_predefined_types, - sym_identifier, - [65488] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1730), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2299), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2384), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2386), 1, - anon_sym_SEMI, - STATE(1441), 1, - sym_index_includes, - STATE(1825), 1, - sym_where_filter, - [65522] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - anon_sym_DOLLAR, - STATE(1237), 1, - sym_dollar_quote, - STATE(1819), 2, - sym_block, - sym_string, - [65539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2388), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2390), 5, - aux_sym_update_statement_token1, - anon_sym_COMMA, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [65561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1047), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(1894), 1, - sym_identifier, - [65580] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2159), 1, - aux_sym_returning_token1, - STATE(1776), 1, - sym_into, - ACTIONS(2157), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 1, + ACTIONS(2561), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2563), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2565), 1, aux_sym_update_statement_token3, - ACTIONS(2398), 1, - aux_sym_fk_ref_action_token1, - STATE(914), 1, - sym_fk_ref_action, - ACTIONS(2396), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 5, - aux_sym_update_statement_token1, + STATE(1951), 1, + sym_alter_column_action, + ACTIONS(2559), 2, + anon_sym_SEMI, anon_sym_COMMA, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [65625] = 6, + [76103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2351), 1, - aux_sym_if_statement_token1, - STATE(1251), 1, - sym_identifier, - STATE(1335), 1, - sym_drop_function_item, - STATE(1742), 1, - sym_if_exists, - [65644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2402), 1, - anon_sym_SEMI, - STATE(1554), 1, - sym_index_includes, - STATE(1944), 1, - sym_where_filter, - [65663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2279), 1, - aux_sym_returning_token1, - STATE(1691), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65680] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1690), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2384), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - ACTIONS(2404), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [65695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SEMI, - ACTIONS(2408), 1, - anon_sym_COMMA, - STATE(1195), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2410), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 1, - anon_sym_LPAREN, - ACTIONS(2412), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65725] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2416), 1, - anon_sym_RPAREN, - ACTIONS(2418), 1, - aux_sym_insert_items_token1, - STATE(1193), 1, - sym_identifier, - STATE(1367), 1, - sym_var_declaration, - [65744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1070), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(2012), 1, - sym_identifier, - [65763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - aux_sym_constraint_when_token1, - STATE(1427), 1, - sym_constraint_when, - ACTIONS(2420), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [65778] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2141), 1, - aux_sym_returning_token1, - STATE(1741), 1, - sym_into, - ACTIONS(2068), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65795] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1775), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2283), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2384), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [65810] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2066), 1, + ACTIONS(2389), 1, aux_sym_predefined_types_token1, - STATE(818), 1, - sym_predefined_types, - STATE(981), 1, - sym_identifier, - STATE(1629), 1, + STATE(1607), 1, sym__type, - [65829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2317), 1, - aux_sym_if_statement_token1, - ACTIONS(2422), 1, - aux_sym_insert_conflict_token1, - STATE(1401), 1, - sym_if_not_exists, - STATE(2083), 1, + STATE(1959), 1, + sym_alter_column_type, + STATE(29), 2, + sym_predefined_types, sym_identifier, - [65848] = 5, + [76123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(1847), 1, + aux_sym_join_item_token3, + ACTIONS(1849), 1, + aux_sym_join_type_token1, + STATE(1244), 1, + sym_join_type, + ACTIONS(1851), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [76141] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_returning_repeat1, + STATE(1793), 1, + sym_into, + ACTIONS(2567), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1462), 1, + sym_returning, + STATE(1864), 1, + sym_into, + ACTIONS(2569), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2110), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [76193] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1313), 1, + sym_into, + ACTIONS(1809), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2389), 1, + aux_sym_predefined_types_token1, + STATE(1607), 1, + sym__type, + STATE(1856), 1, + sym_alter_column_type, + STATE(29), 2, + sym_predefined_types, + sym_identifier, + [76227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1894), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [76239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2281), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [76251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1763), 1, + sym_into, + ACTIONS(2357), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_returning_repeat1, + STATE(1861), 1, + sym_into, + ACTIONS(2571), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1861), 1, + sym_into, + ACTIONS(2571), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2411), 1, + aux_sym_returning_token1, + STATE(1512), 1, + sym_returning, + STATE(1816), 1, + sym_into, + ACTIONS(2433), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76331] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + STATE(1793), 1, + sym_into, + ACTIONS(2567), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + ACTIONS(2540), 1, + aux_sym_trigger_exec_token1, + STATE(2034), 1, + sym_with_query, + STATE(2229), 2, + sym_execute_statement, + sym_select_statement, + [76371] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76385] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2546), 1, + aux_sym_if_statement_token1, + ACTIONS(2573), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2575), 1, + aux_sym_create_index_statement_token3, + STATE(1619), 1, + sym_if_not_exists, + STATE(2037), 1, + sym_identifier, + [76407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_COMMA, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + anon_sym_RBRACK, + [76423] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1329), 1, + sym_into, + ACTIONS(1791), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2563), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2565), 1, + aux_sym_update_statement_token3, + STATE(1848), 1, + sym_alter_column_action, + ACTIONS(2580), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [76457] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1344), 1, + aux_sym_returning_repeat1, + STATE(1836), 1, + sym_into, + ACTIONS(2296), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2389), 1, + aux_sym_predefined_types_token1, + STATE(1384), 1, + sym__type, + STATE(29), 2, + sym_predefined_types, + sym_identifier, + [76494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2584), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2582), 3, + anon_sym_SEMI, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76509] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + ACTIONS(2587), 1, + sym__identifier, + STATE(392), 1, + sym__type, + STATE(219), 2, + sym_predefined_types, + sym_identifier, + [76526] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2589), 1, + aux_sym_predefined_types_token1, + ACTIONS(2591), 1, + sym__identifier, + STATE(468), 1, + sym__type, + STATE(284), 2, + sym_predefined_types, + sym_identifier, + [76543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + STATE(2119), 1, + sym_function_call, + STATE(2127), 1, + sym_identifier, + ACTIONS(2593), 2, + aux_sym_drop_function_statement_token1, + aux_sym_grant_targets_token6, + [76560] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1922), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2595), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2597), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2482), 1, + aux_sym_returning_token1, + STATE(1925), 1, + sym_into, + ACTIONS(2480), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1035), 1, + sym_identifier, + ACTIONS(2042), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [76607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2605), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2607), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2609), 1, + aux_sym_table_constraint_ty_token4, + STATE(1424), 1, + sym_table_constraint_ty, + [76637] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2611), 1, + aux_sym_predefined_types_token1, + ACTIONS(2613), 1, + sym__identifier, + STATE(291), 1, + sym__type, + STATE(180), 2, + sym_predefined_types, + sym_identifier, + [76654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(2615), 1, + anon_sym_SEMI, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2617), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + ACTIONS(2185), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + STATE(1697), 1, + sym_if_not_exists, + STATE(1848), 1, + sym_table_column_item, + [76690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1199), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2176), 1, + sym_identifier, + [76709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + ACTIONS(2128), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [76724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, aux_sym_for_statement_token3, - ACTIONS(2428), 1, + ACTIONS(2626), 1, aux_sym_if_statement_token5, - STATE(1197), 1, + STATE(1423), 1, aux_sym_if_statement_repeat1, - ACTIONS(2426), 2, + ACTIONS(2624), 2, aux_sym_if_statement_token3, aux_sym_if_statement_token4, - [65865] = 4, + [76741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_returning_repeat1, - ACTIONS(2430), 3, + ACTIONS(2630), 1, + anon_sym_LPAREN, + ACTIONS(2628), 4, anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [65880] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2051), 1, - sym_trigger_event, - ACTIONS(2373), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [65893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 5, - aux_sym_update_statement_token1, anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2632), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [65904] = 4, + [76765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1229), 1, - aux_sym_returning_repeat1, - ACTIONS(2434), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [65919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(198), 1, sym__identifier, - STATE(1109), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(2012), 1, - sym_identifier, - [65938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2436), 1, - anon_sym_SEMI, - STATE(1529), 1, - sym_index_includes, - STATE(1961), 1, - sym_where_filter, - [65957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - aux_sym_body_token1, - ACTIONS(2440), 1, - aux_sym_declarations_token1, - STATE(1675), 1, - sym_body, - STATE(1287), 2, - sym_declarations, - aux_sym_block_repeat1, - [65974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, - sym__identifier, - ACTIONS(2066), 1, - aux_sym_predefined_types_token1, - STATE(818), 1, - sym_predefined_types, - STATE(965), 1, - sym_identifier, - STATE(1403), 1, - sym__type, - [65993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - aux_sym_body_token1, - ACTIONS(2440), 1, - aux_sym_declarations_token1, - STATE(1701), 1, - sym_body, - STATE(1235), 2, - sym_declarations, - aux_sym_block_repeat1, - [66010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2442), 5, - aux_sym_update_statement_token1, - anon_sym_COMMA, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [66021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1033), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(1894), 1, - sym_identifier, - [66062] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2351), 1, + ACTIONS(2536), 1, aux_sym_if_statement_token1, - STATE(1248), 1, + STATE(1418), 1, sym_drop_function_item, - STATE(1251), 1, + STATE(1422), 1, sym_identifier, - STATE(1742), 1, + STATE(1809), 1, sym_if_exists, - [66081] = 2, + [76784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 5, - aux_sym_update_statement_token1, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(219), 1, + sym_predefined_types, + STATE(1118), 1, + sym_identifier, + STATE(1854), 1, + sym__type, + [76803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2634), 1, + anon_sym_SEMI, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + STATE(1628), 1, + sym_index_includes, + STATE(2105), 1, + sym_where_filter, + [76822] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1848), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2580), 2, + anon_sym_SEMI, anon_sym_COMMA, + ACTIONS(2597), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 1, + anon_sym_SEMI, + ACTIONS(2640), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2642), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 1, + aux_sym_predefined_types_token1, + ACTIONS(2646), 1, + sym__identifier, + STATE(651), 1, + sym__type, + STATE(572), 2, + sym_predefined_types, + sym_identifier, + [76871] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(2615), 1, + anon_sym_SEMI, + STATE(1436), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2617), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76888] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2536), 1, + aux_sym_if_statement_token1, + STATE(1422), 1, + sym_identifier, + STATE(1448), 1, + sym_drop_function_item, + STATE(1809), 1, + sym_if_exists, + [76907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [66092] = 2, + [76918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 5, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2373), 1, + aux_sym_returning_token1, + STATE(1836), 1, + sym_into, + ACTIONS(2296), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66103] = 2, + [76935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 5, + ACTIONS(2650), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_items_token1, anon_sym_COLON_EQ, - [66114] = 6, + [76946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(744), 1, - anon_sym_SQUOTE, - ACTIONS(2392), 1, - sym__identifier, - ACTIONS(2452), 1, - anon_sym_SEMI, - STATE(1724), 1, - sym_identifier, - STATE(1728), 1, - sym_string, - [66133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1109), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(1894), 1, - sym_identifier, - [66152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2408), 1, - anon_sym_COMMA, - ACTIONS(2454), 1, - anon_sym_SEMI, - STATE(1219), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2456), 2, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [66169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(2066), 1, + ACTIONS(2652), 1, aux_sym_predefined_types_token1, - STATE(1245), 1, + ACTIONS(2654), 1, + sym__identifier, + STATE(350), 1, sym__type, - STATE(818), 2, + STATE(189), 2, sym_predefined_types, sym_identifier, - [66186] = 6, + [76963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1025), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(1894), 1, - sym_identifier, - [66205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, - anon_sym_LPAREN, - ACTIONS(2458), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [66218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2462), 1, - anon_sym_SEMI, - STATE(1521), 1, - sym_index_includes, - STATE(1872), 1, - sym_where_filter, - [66237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2464), 1, - anon_sym_SEMI, - STATE(1518), 1, - sym_index_includes, - STATE(1969), 1, - sym_where_filter, - [66256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(876), 1, - sym_identifier, - ACTIONS(1895), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2466), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2468), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2470), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2472), 1, - aux_sym_table_constraint_ty_token4, - STATE(1223), 1, - sym_table_constraint_ty, - [66290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - sym__identifier, - STATE(1032), 1, - sym_update_set, - STATE(1892), 1, - sym__list_of_identifiers, - STATE(1894), 1, - sym_identifier, - [66309] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_COMMA, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(397), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_for_statement_token2, - [66324] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - ACTIONS(2167), 1, - aux_sym_returning_token1, - STATE(1756), 1, - sym_into, - ACTIONS(2037), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2362), 1, - aux_sym_index_includes_token1, - ACTIONS(2477), 1, - anon_sym_SEMI, - STATE(1512), 1, - sym_index_includes, - STATE(1964), 1, - sym_where_filter, - [66360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2317), 1, - aux_sym_if_statement_token1, - ACTIONS(2330), 1, - aux_sym_insert_conflict_token1, - STATE(1531), 1, - sym_if_not_exists, - STATE(1929), 1, - sym_identifier, - [66379] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2479), 1, - aux_sym_conflict_target_token1, - ACTIONS(2481), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2483), 1, - aux_sym_alter_table_rename_column_token2, - STATE(2020), 1, - sym_identifier, - [66398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [66408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1634), 1, - sym_into, - ACTIONS(2323), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66422] = 4, - ACTIONS(2487), 1, + ACTIONS(1124), 1, anon_sym_SQUOTE, - ACTIONS(2491), 1, - sym_comment, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66436] = 3, + ACTIONS(2656), 1, + anon_sym_DOLLAR, + STATE(1387), 1, + sym_dollar_quote, + STATE(2046), 2, + sym_block, + sym_string, + [76980] = 5, ACTIONS(3), 1, sym_comment, - STATE(1230), 1, - sym_trigger_when, - ACTIONS(2493), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [66448] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2495), 1, - anon_sym_SQUOTE, - STATE(1267), 1, - aux_sym_string_repeat1, - ACTIONS(2497), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66462] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2499), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66476] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_SQUOTE, - STATE(1270), 1, - aux_sym_string_repeat1, - ACTIONS(2503), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - STATE(775), 1, - sym_identifier, - STATE(1712), 1, - sym_if_not_exists, - [66506] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2505), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2507), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [66530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - STATE(1926), 1, - sym_identifier, - ACTIONS(2509), 2, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - [66544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - sym__identifier, - STATE(1107), 1, - sym_identifier, - STATE(1525), 1, - sym_index_col, - [66560] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2515), 1, - anon_sym_SQUOTE, - STATE(1278), 1, - aux_sym_string_repeat1, - ACTIONS(2517), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66574] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2293), 1, - aux_sym_schema_role_token1, - STATE(1534), 1, - sym_identifier, - STATE(1927), 1, - sym_schema_role, - [66590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - anon_sym_COMMA, - STATE(1376), 1, - aux_sym_returning_repeat1, - ACTIONS(2430), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1758), 1, - sym_returning, - ACTIONS(2147), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66618] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2521), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2523), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [66642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2189), 1, - aux_sym_trigger_cond_token1, - STATE(1650), 1, - sym_trigger_cond, - STATE(1869), 1, - sym_trigger_exec, - [66658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1657), 1, - sym_returning, - ACTIONS(2525), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - STATE(1732), 1, - sym_if_not_exists, - STATE(1821), 1, - sym_identifier, - [66688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 1, - aux_sym_index_col_nulls_token1, - STATE(1615), 1, - sym_index_col_nulls, - ACTIONS(2527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1148), 1, - sym_into, - ACTIONS(1672), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2215), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [66726] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_SQUOTE, - STATE(1289), 1, - aux_sym_string_repeat1, - ACTIONS(2531), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2533), 1, + ACTIONS(2658), 1, aux_sym_body_token1, - ACTIONS(2535), 1, + ACTIONS(2660), 1, aux_sym_declarations_token1, - STATE(1287), 2, + STATE(1891), 1, + sym_body, + STATE(1390), 2, sym_declarations, aux_sym_block_repeat1, - [66754] = 5, + [76997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2662), 1, + aux_sym_returning_token1, + STATE(1861), 1, + sym_into, + ACTIONS(2571), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [77025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, + aux_sym_body_token1, + ACTIONS(2660), 1, + aux_sym_declarations_token1, + STATE(1901), 1, + sym_body, + STATE(1475), 2, + sym_declarations, + aux_sym_block_repeat1, + [77042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2666), 1, + aux_sym_predefined_types_token1, + ACTIONS(2668), 1, sym__identifier, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - STATE(774), 1, + STATE(630), 1, + sym__type, + STATE(532), 2, + sym_predefined_types, sym_identifier, - STATE(1589), 1, - sym_if_not_exists, - [66770] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2538), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66784] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_SQUOTE, - STATE(1371), 1, - aux_sym_string_repeat1, - ACTIONS(2542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66798] = 5, + [77059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_COMMA, + ACTIONS(198), 1, + sym__identifier, ACTIONS(2546), 1, - anon_sym_RPAREN, - ACTIONS(2548), 1, - aux_sym_insert_items_token1, - STATE(1310), 1, - aux_sym_create_type_statement_repeat2, - [66814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1135), 1, - sym_into, - ACTIONS(2307), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1187), 1, - sym_into, - ACTIONS(1577), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1760), 1, - sym_into, - ACTIONS(2209), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, - sym__identifier, - STATE(1116), 2, - sym_string, - sym_identifier, - [66870] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2552), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [66894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, - sym__identifier, - STATE(1121), 2, - sym_string, - sym_identifier, - [66908] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2556), 1, - anon_sym_SQUOTE, - STATE(1300), 1, - aux_sym_string_repeat1, - ACTIONS(2558), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66922] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66936] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2562), 1, - anon_sym_SQUOTE, - STATE(1302), 1, - aux_sym_string_repeat1, - ACTIONS(2564), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66950] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2566), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2568), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [66974] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2570), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2572), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [66988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1689), 1, - sym_returning, - ACTIONS(2161), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2575), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [67012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2577), 1, - aux_sym_update_statement_token2, - ACTIONS(2579), 1, - aux_sym_update_statement_token3, - STATE(1803), 1, - sym_identifier, - [67028] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2581), 1, - anon_sym_SQUOTE, - STATE(1311), 1, - aux_sym_string_repeat1, - ACTIONS(2583), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1790), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67056] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2587), 1, - anon_sym_COMMA, - STATE(1310), 1, - aux_sym_create_type_statement_repeat2, - ACTIONS(2590), 2, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - [67070] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2592), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - aux_sym_update_statement_token1, - ACTIONS(2596), 1, - aux_sym_insert_statement_token1, - ACTIONS(2598), 1, - aux_sym_delete_statement_token1, - ACTIONS(2600), 1, - aux_sym_select_statement_token1, - [67100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1670), 1, - sym_returning, - ACTIONS(2127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67114] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2054), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2056), 1, - aux_sym_alter_table_action_token1, - STATE(1693), 1, - sym_alter_table_action, - [67130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - STATE(1309), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1780), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67144] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1961), 1, aux_sym_if_statement_token1, - STATE(1748), 1, + ACTIONS(2670), 1, + aux_sym_insert_conflict_token1, + STATE(1707), 1, sym_if_not_exists, - STATE(2044), 1, + STATE(2185), 1, sym_identifier, - [67160] = 4, + [77078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1164), 1, - sym_into, - ACTIONS(1749), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67174] = 2, + ACTIONS(2389), 1, + aux_sym_predefined_types_token1, + ACTIONS(2672), 1, + sym__identifier, + STATE(119), 1, + sym__type, + STATE(29), 2, + sym_predefined_types, + sym_identifier, + [77095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 4, + ACTIONS(2674), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [67184] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2604), 1, - anon_sym_SQUOTE, - STATE(1296), 1, - aux_sym_string_repeat1, - ACTIONS(2606), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67198] = 5, + [77106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2351), 1, - aux_sym_if_statement_token1, - STATE(961), 1, - sym_identifier, - STATE(1697), 1, - sym_if_exists, - [67214] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_SQUOTE, - STATE(1264), 1, - aux_sym_string_repeat1, - ACTIONS(2610), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67228] = 5, + ACTIONS(2676), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [77117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2550), 1, - sym__identifier, - STATE(718), 1, - sym_identifier, - STATE(740), 1, - sym__list_of_identifiers, - [67244] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2612), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, + ACTIONS(2004), 1, anon_sym_COMMA, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(2614), 2, + ACTIONS(2678), 1, anon_sym_SEMI, - aux_sym_for_statement_token2, - [67272] = 4, + STATE(1367), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2680), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1578), 1, - sym_returning, - ACTIONS(2211), 2, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2682), 1, + anon_sym_SEMI, + STATE(1674), 1, + sym_index_includes, + STATE(2165), 1, + sym_where_filter, + [77153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_returning_repeat1, + ACTIONS(2684), 3, anon_sym_SEMI, anon_sym_RPAREN, - [67286] = 2, + aux_sym_insert_statement_token2, + [77168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 4, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2686), 1, + anon_sym_SEMI, + STATE(1588), 1, + sym_index_includes, + STATE(2009), 1, + sym_where_filter, + [77187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2688), 1, + anon_sym_SEMI, + STATE(1718), 1, + sym_index_includes, + STATE(2256), 1, + sym_where_filter, + [77206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2690), 1, + aux_sym_predefined_types_token1, + STATE(1014), 1, + sym__type, + STATE(1012), 2, + sym_predefined_types, + sym_identifier, + [77223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + ACTIONS(2692), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [77238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2694), 1, + aux_sym_predefined_types_token1, + ACTIONS(2696), 1, + sym__identifier, + STATE(115), 1, + sym__type, + STATE(36), 2, + sym_predefined_types, + sym_identifier, + [77255] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2199), 1, + sym_trigger_event, + ACTIONS(2698), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_trigger_event_token1, - [67296] = 4, + [77268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2359), 1, aux_sym_returning_token1, - STATE(1662), 1, - sym_returning, - ACTIONS(2137), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1151), 1, + STATE(1763), 1, sym_into, - ACTIONS(2076), 2, + ACTIONS(2357), 2, anon_sym_SEMI, anon_sym_RPAREN, - [67324] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2618), 1, - anon_sym_SQUOTE, - STATE(1323), 1, - aux_sym_string_repeat1, - ACTIONS(2620), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67338] = 4, + [77285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1147), 1, - sym_into, - ACTIONS(558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67352] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67366] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2624), 1, - anon_sym_SQUOTE, - STATE(1336), 1, - aux_sym_string_repeat1, - ACTIONS(2626), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67380] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1199), 1, - sym_trigger_when, - ACTIONS(2493), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [67392] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2628), 1, - aux_sym_psql_statement_token1, - ACTIONS(2630), 1, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, sym__identifier, - STATE(1334), 2, + STATE(1277), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2234), 1, sym_identifier, - aux_sym_psql_statement_repeat1, - [67406] = 2, + [77304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 4, + ACTIONS(2700), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [77315] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2702), 1, + anon_sym_RPAREN, + ACTIONS(2704), 1, + aux_sym_insert_items_token1, + STATE(1356), 1, + sym_identifier, + STATE(1482), 1, + sym_var_declaration, + [77334] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1951), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2559), 2, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [67416] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2633), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67430] = 2, + ACTIONS(2597), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 4, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2706), 1, + anon_sym_SEMI, + STATE(1709), 1, + sym_index_includes, + STATE(2245), 1, + sym_where_filter, + [77368] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + aux_sym_constraint_when_token1, + STATE(1735), 1, + sym_constraint_when, + ACTIONS(2708), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [77383] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2328), 1, + sym_trigger_event, + ACTIONS(2698), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [77396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2599), 1, + sym__identifier, + ACTIONS(2710), 1, + anon_sym_SEMI, + STATE(1807), 1, + sym_identifier, + STATE(1808), 1, + sym_string, + [77415] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(1384), 1, + sym__type, + STATE(219), 2, + sym_predefined_types, + sym_identifier, + [77432] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + aux_sym_predefined_types_token1, + ACTIONS(2714), 1, + sym__identifier, + STATE(463), 1, + sym__type, + STATE(275), 2, + sym_predefined_types, + sym_identifier, + [77449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2546), 1, + aux_sym_if_statement_token1, + ACTIONS(2573), 1, + aux_sym_insert_conflict_token1, + STATE(1619), 1, + sym_if_not_exists, + STATE(2037), 1, + sym_identifier, + [77468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(2656), 1, + anon_sym_DOLLAR, + STATE(1387), 1, + sym_dollar_quote, + STATE(2072), 2, + sym_block, + sym_string, + [77485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2640), 1, + anon_sym_COMMA, + ACTIONS(2716), 1, + anon_sym_SEMI, + STATE(1378), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2718), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2383), 1, + aux_sym_returning_token1, + STATE(1801), 1, + sym_into, + ACTIONS(2211), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2720), 1, + aux_sym_conflict_target_token1, + ACTIONS(2722), 1, + aux_sym_alter_table_action_token2, + ACTIONS(2724), 1, + aux_sym_alter_table_rename_column_token2, + STATE(2235), 1, + sym_identifier, + [77538] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2389), 1, + aux_sym_predefined_types_token1, + STATE(2341), 1, + sym__type, + STATE(29), 2, + sym_predefined_types, + sym_identifier, + [77555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LPAREN, + ACTIONS(2726), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2730), 1, + aux_sym_for_statement_token3, + ACTIONS(2735), 1, + aux_sym_if_statement_token5, + STATE(1423), 1, + aux_sym_if_statement_repeat1, + ACTIONS(2732), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [77585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + aux_sym_constraint_when_token1, + STATE(1592), 1, + sym_constraint_when, + ACTIONS(2737), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [77600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2739), 1, + anon_sym_SEMI, + STATE(1703), 1, + sym_index_includes, + STATE(2232), 1, + sym_where_filter, + [77619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + sym__identifier, + ACTIONS(2263), 1, + aux_sym_predefined_types_token1, + STATE(219), 1, + sym_predefined_types, + STATE(1114), 1, + sym_identifier, + STATE(1604), 1, + sym__type, + [77638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [77649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [77660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1277), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2176), 1, + sym_identifier, + [77679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1202), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2176), 1, + sym_identifier, + [77698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2636), 1, + aux_sym_index_includes_token1, + ACTIONS(2743), 1, + anon_sym_SEMI, + STATE(1692), 1, + sym_index_includes, + STATE(2209), 1, + sym_where_filter, + [77717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1259), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2234), 1, + sym_identifier, + [77736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 1, + aux_sym_predefined_types_token1, + ACTIONS(2747), 1, + sym__identifier, + STATE(373), 1, + sym__type, + STATE(208), 2, + sym_predefined_types, + sym_identifier, + [77753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + aux_sym_update_statement_token3, + ACTIONS(2753), 1, + aux_sym_fk_ref_action_token1, + STATE(1077), 1, + sym_fk_ref_action, + ACTIONS(2749), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1192), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2176), 1, + sym_identifier, + [77789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, + anon_sym_SEMI, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2757), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77806] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1185), 1, + sym_update_set, + STATE(1976), 1, + sym__list_of_identifiers, + STATE(2176), 1, + sym_identifier, + [77825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [77836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 1, + aux_sym_predefined_types_token1, + ACTIONS(2763), 1, + sym__identifier, + STATE(425), 1, + sym__type, + STATE(240), 2, + sym_predefined_types, + sym_identifier, + [77853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + STATE(2018), 1, + sym_identifier, + ACTIONS(2765), 2, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + [77867] = 4, + ACTIONS(2767), 1, + anon_sym_SQUOTE, + ACTIONS(2771), 1, + sym_comment, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77881] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2773), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77895] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2775), 1, + anon_sym_SQUOTE, + STATE(1442), 1, + aux_sym_string_repeat1, + ACTIONS(2777), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1310), 1, + sym_into, + ACTIONS(2281), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77923] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2779), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77937] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_SQUOTE, + STATE(1445), 1, + aux_sym_string_repeat1, + ACTIONS(2783), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + STATE(1950), 1, + sym_if_not_exists, + STATE(2015), 1, + sym_identifier, + [77987] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2787), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78001] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_SQUOTE, + STATE(1450), 1, + aux_sym_string_repeat1, + ACTIONS(2791), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1329), 1, + sym_into, + ACTIONS(1791), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78029] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2793), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2795), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1333), 1, + sym_into, + ACTIONS(1894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [78067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(2800), 1, + sym__identifier, + STATE(879), 1, + sym_identifier, + STATE(911), 1, + sym__list_of_identifiers, + [78083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1970), 1, + sym_returning, + ACTIONS(2365), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_returning_repeat1, + ACTIONS(2684), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2804), 1, + aux_sym_update_statement_token2, + ACTIONS(2806), 1, + aux_sym_update_statement_token3, + STATE(1978), 1, + sym_identifier, + [78127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1813), 1, + sym_returning, + ACTIONS(2413), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78141] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1817), 1, + sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1343), 1, + sym_into, + ACTIONS(2187), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1342), 1, + sym_into, + ACTIONS(1870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78197] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2548), 1, + aux_sym_schema_role_token1, + STATE(1615), 1, + sym_identifier, + STATE(2026), 1, + sym_schema_role, + [78213] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_SQUOTE, + STATE(1470), 1, + aux_sym_string_repeat1, + ACTIONS(2814), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(2800), 1, + sym__identifier, + STATE(1268), 2, + sym_string, + sym_identifier, + [78241] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_SQUOTE, + STATE(1461), 1, + aux_sym_string_repeat1, + ACTIONS(2818), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 1, + anon_sym_COMMA, + STATE(1469), 1, + aux_sym_create_type_statement_repeat2, + ACTIONS(2823), 2, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [78269] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_constraint_when_token1, - [67440] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2637), 1, - aux_sym_psql_statement_token1, - ACTIONS(2639), 1, - sym__identifier, - STATE(1334), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [67454] = 5, + [78293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1767), 1, + sym_returning, + ACTIONS(2369), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + aux_sym_body_token1, + aux_sym_declarations_token1, + [78317] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2831), 1, + anon_sym_SQUOTE, + STATE(1476), 1, + aux_sym_string_repeat1, + ACTIONS(2833), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 1, + aux_sym_body_token1, + ACTIONS(2837), 1, + aux_sym_declarations_token1, + STATE(1475), 2, + sym_declarations, + aux_sym_block_repeat1, + [78345] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78359] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_SQUOTE, + STATE(1479), 1, + aux_sym_string_repeat1, + ACTIONS(2844), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [78383] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2848), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1309), 1, + sym_into, + ACTIONS(2530), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78411] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 1, + anon_sym_COMMA, + ACTIONS(2854), 1, + anon_sym_RPAREN, + ACTIONS(2856), 1, + aux_sym_insert_items_token1, + STATE(1555), 1, + aux_sym_create_type_statement_repeat2, + [78441] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2858), 1, + anon_sym_SQUOTE, + STATE(1481), 1, + aux_sym_string_repeat1, + ACTIONS(2860), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2415), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [78465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(2864), 1, sym__identifier, - STATE(1107), 1, + STATE(1274), 1, sym_identifier, - STATE(1551), 1, + STATE(1590), 1, sym_index_col, - [67470] = 5, + [78481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + STATE(1820), 1, + sym_if_not_exists, + STATE(2161), 1, + sym_identifier, + [78497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1322), 1, + sym_into, + ACTIONS(695), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78511] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1404), 1, + sym_trigger_when, + ACTIONS(2866), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [78523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, + anon_sym_LPAREN, + ACTIONS(2864), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1957), 1, + sym_index_col, + [78539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1784), 1, + sym_returning, + ACTIONS(2868), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2472), 1, + aux_sym_index_col_nulls_token1, + STATE(1841), 1, + sym_index_col_nulls, + ACTIONS(2870), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78567] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_SQUOTE, + STATE(1551), 1, + aux_sym_string_repeat1, + ACTIONS(2874), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78581] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, + anon_sym_LPAREN, + ACTIONS(2864), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1677), 1, + sym_index_col, + [78597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2876), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [78607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2472), 1, + aux_sym_index_col_nulls_token1, + STATE(1948), 1, + sym_index_col_nulls, + ACTIONS(2878), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [78631] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78645] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2884), 1, + anon_sym_SQUOTE, + STATE(1441), 1, + aux_sym_string_repeat1, + ACTIONS(2886), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, + anon_sym_LPAREN, + ACTIONS(2864), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1729), 1, + sym_index_col, + [78675] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_SQUOTE, + STATE(1497), 1, + aux_sym_string_repeat1, + ACTIONS(2890), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1791), 1, + sym_returning, + ACTIONS(2441), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(906), 1, + aux_sym_index_using_token1, + STATE(1832), 1, + sym_execute_using, + ACTIONS(2892), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [78717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2429), 1, + aux_sym_trigger_cond_token1, + STATE(1846), 1, + sym_trigger_cond, + STATE(2159), 1, + sym_trigger_exec, + [78733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1816), 1, + sym_into, + ACTIONS(2433), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78747] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2894), 1, + aux_sym_psql_statement_token1, + ACTIONS(2896), 1, + sym__identifier, + STATE(1530), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [78761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + STATE(937), 1, + sym_identifier, + STATE(1916), 1, + sym_if_not_exists, + [78777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + aux_sym_body_token1, + aux_sym_declarations_token1, + [78787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1934), 1, + sym_into, + ACTIONS(2437), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78801] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - STATE(1856), 1, + STATE(2034), 1, sym_with_query, - STATE(2004), 1, + STATE(2202), 1, sym_select_statement, - [67486] = 4, - ACTIONS(2491), 1, + [78817] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 1, + STATE(1412), 1, + sym_trigger_when, + ACTIONS(2866), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [78829] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2900), 1, anon_sym_SQUOTE, - STATE(1331), 1, + STATE(1453), 1, aux_sym_string_repeat1, - ACTIONS(2643), 2, + ACTIONS(2769), 2, aux_sym_string_token1, aux_sym_string_token2, - [67500] = 4, + [78843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1759), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - STATE(1356), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1790), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(1961), 1, - aux_sym_if_statement_token1, - STATE(1609), 1, - sym_if_not_exists, - STATE(1919), 1, - sym_identifier, - [67544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_returning_repeat1, - ACTIONS(2434), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(1173), 1, + STATE(1942), 1, sym_into, - ACTIONS(1865), 2, + ACTIONS(2445), 2, anon_sym_SEMI, anon_sym_RPAREN, - [67572] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67586] = 5, + [78857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - sym__identifier, - STATE(1107), 1, - sym_identifier, - STATE(1395), 1, - sym_index_col, - [67602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2650), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [67612] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2652), 1, - aux_sym_grant_privileges_token1, - STATE(1563), 1, - sym_identifier, - STATE(1880), 1, - sym_grant_privileges, - [67628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, + ACTIONS(2353), 1, aux_sym_returning_token1, - STATE(1593), 1, + STATE(1897), 1, sym_returning, - ACTIONS(2193), 2, + ACTIONS(2347), 2, anon_sym_SEMI, anon_sym_RPAREN, - [67642] = 4, - ACTIONS(3), 1, + [78871] = 4, + ACTIONS(2771), 1, sym_comment, - ACTIONS(714), 1, - aux_sym_index_using_token1, - STATE(1761), 1, - sym_execute_using, - ACTIONS(2654), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [67656] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2656), 1, + ACTIONS(2902), 1, anon_sym_SQUOTE, - STATE(1347), 1, + STATE(1453), 1, aux_sym_string_repeat1, - ACTIONS(2658), 2, + ACTIONS(2769), 2, aux_sym_string_token1, aux_sym_string_token2, - [67670] = 4, + [78885] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_SQUOTE, + STATE(1511), 1, + aux_sym_string_repeat1, + ACTIONS(2906), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [78899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1594), 1, - sym_into, - ACTIONS(2660), 2, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1849), 1, + sym_returning, + ACTIONS(2439), 2, anon_sym_SEMI, anon_sym_RPAREN, - [67684] = 4, + [78913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1183), 1, - sym_into, - ACTIONS(1981), 2, + ACTIONS(2908), 4, anon_sym_SEMI, - anon_sym_RPAREN, - [67698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, anon_sym_COMMA, - STATE(1342), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67712] = 4, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [78923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1747), 1, - sym_into, - ACTIONS(2173), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2664), 1, + ACTIONS(2912), 1, aux_sym_insert_conflict_token1, - ACTIONS(2666), 1, + ACTIONS(2914), 1, aux_sym_insert_conflict_token3, - STATE(1804), 1, + STATE(2002), 1, sym_conflict_target, - [67742] = 5, + [78939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2351), 1, + ACTIONS(2536), 1, aux_sym_if_statement_token1, - STATE(1225), 1, + STATE(1135), 1, sym_identifier, - STATE(1735), 1, + STATE(1962), 1, sym_if_exists, - [67758] = 5, + [78955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - sym__identifier, - STATE(1107), 1, - sym_identifier, - STATE(1434), 1, - sym_index_col, - [67774] = 5, - ACTIONS(3), 1, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1299), 1, + sym_into, + ACTIONS(2110), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78969] = 4, + ACTIONS(2771), 1, sym_comment, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - sym__identifier, - STATE(1107), 1, - sym_identifier, - STATE(1727), 1, - sym_index_col, - [67790] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2668), 1, + ACTIONS(2916), 1, anon_sym_SQUOTE, - STATE(1304), 1, + STATE(1453), 1, aux_sym_string_repeat1, - ACTIONS(2489), 2, + ACTIONS(2769), 2, aux_sym_string_token1, aux_sym_string_token2, - [67804] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2670), 1, - anon_sym_SQUOTE, - STATE(1362), 1, - aux_sym_string_repeat1, - ACTIONS(2672), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67818] = 2, + [78983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 4, + ACTIONS(2918), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_trigger_event_token1, - [67828] = 5, + [78993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2676), 1, - aux_sym_update_statement_token2, - ACTIONS(2678), 1, - aux_sym_update_statement_token3, - STATE(1890), 1, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + STATE(943), 1, sym_identifier, - [67844] = 4, + STATE(1874), 1, + sym_if_not_exists, + [79009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, - aux_sym_index_col_nulls_token1, - STATE(1718), 1, - sym_index_col_nulls, - ACTIONS(2680), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67858] = 5, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2536), 1, + aux_sym_if_statement_token1, + STATE(1409), 1, + sym_identifier, + STATE(1940), 1, + sym_if_exists, + [79025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_COMMA, - ACTIONS(2682), 1, - anon_sym_RPAREN, - ACTIONS(2684), 1, - aux_sym_insert_items_token1, - STATE(1291), 1, - aux_sym_create_type_statement_repeat2, - [67874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - aux_sym_returning_token1, - STATE(1623), 1, - sym_returning, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67888] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2686), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67902] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2688), 1, - anon_sym_SQUOTE, - STATE(1369), 1, - aux_sym_string_repeat1, - ACTIONS(2690), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67916] = 4, - ACTIONS(2491), 1, - sym_comment, - ACTIONS(2692), 1, - anon_sym_SQUOTE, - STATE(1304), 1, - aux_sym_string_repeat1, - ACTIONS(2489), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [67930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1171), 1, - sym_into, - ACTIONS(1559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67944] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2189), 1, - aux_sym_trigger_cond_token1, - STATE(1617), 1, - sym_trigger_cond, - STATE(1898), 1, - sym_trigger_exec, - [67960] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1666), 1, - aux_sym_insert_statement_token2, - STATE(1139), 1, - sym_into, - ACTIONS(1638), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_function_statement_token3, - aux_sym_drop_function_statement_token4, - [67984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_COMMA, - STATE(1376), 1, - aux_sym_returning_repeat1, - ACTIONS(1899), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2699), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [68008] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, + ACTIONS(2862), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(2864), 1, sym__identifier, - STATE(1107), 1, + STATE(1274), 1, sym_identifier, - STATE(1496), 1, + STATE(1632), 1, sym_index_col, - [68024] = 4, + [79041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 1, + ACTIONS(1904), 1, aux_sym_insert_statement_token2, - STATE(1696), 1, + STATE(1339), 1, sym_into, - ACTIONS(2213), 2, + ACTIONS(1986), 2, anon_sym_SEMI, anon_sym_RPAREN, - [68038] = 5, + [79055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, + ACTIONS(2862), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(2864), 1, sym__identifier, - STATE(1107), 1, + STATE(1274), 1, sym_identifier, - STATE(1565), 1, + STATE(1695), 1, sym_index_col, - [68054] = 2, + [79071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 4, + ACTIONS(2862), 1, + anon_sym_LPAREN, + ACTIONS(2864), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1638), 1, + sym_index_col, + [79087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(2183), 1, + aux_sym_if_statement_token1, + STATE(1847), 1, + sym_if_not_exists, + STATE(2155), 1, + sym_identifier, + [79103] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2920), 1, + aux_sym_psql_statement_token1, + ACTIONS(2922), 1, + sym__identifier, + STATE(1530), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [79117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_COMMA, + STATE(1539), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2010), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79131] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2927), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_constraint_when_token1, - [68064] = 4, + [79155] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_SQUOTE, + STATE(1532), 1, + aux_sym_string_repeat1, + ACTIONS(2933), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(2076), 1, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2935), 1, + aux_sym_update_statement_token2, + ACTIONS(2937), 1, + aux_sym_update_statement_token3, + STATE(2196), 1, + sym_identifier, + [79185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 1, + anon_sym_COMMA, + STATE(1536), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1977), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_COMMA, + STATE(1544), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79213] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2942), 1, + anon_sym_SQUOTE, + STATE(1521), 1, + aux_sym_string_repeat1, + ACTIONS(2944), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_COMMA, + STATE(1536), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(2946), 2, + anon_sym_SEMI, aux_sym_for_statement_token2, - STATE(1151), 1, - sym_into, - [68077] = 2, + [79255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 3, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2536), 1, + aux_sym_if_statement_token1, + STATE(1396), 1, + sym_identifier, + STATE(1799), 1, + sym_if_exists, + [79271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1864), 1, + sym_into, + ACTIONS(2569), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79285] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(2034), 1, + sym_with_query, + STATE(2104), 1, + sym_select_statement, + [79301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_COMMA, + STATE(1536), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2012), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 1, + aux_sym_update_statement_token1, + ACTIONS(2950), 1, + aux_sym_insert_statement_token1, + ACTIONS(2952), 1, + aux_sym_delete_statement_token1, + ACTIONS(2954), 1, + aux_sym_select_statement_token1, + [79331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [79341] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79355] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_SQUOTE, + STATE(1547), 1, + aux_sym_string_repeat1, + ACTIONS(2962), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79369] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2964), 1, + anon_sym_SQUOTE, + STATE(1514), 1, + aux_sym_string_repeat1, + ACTIONS(2966), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [79393] = 4, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_SQUOTE, + STATE(1453), 1, + aux_sym_string_repeat1, + ACTIONS(2769), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [79407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_returning_repeat1, + ACTIONS(2128), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + ACTIONS(2800), 1, + sym__identifier, + STATE(1283), 2, + sym_string, + sym_identifier, + [79435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, + aux_sym_insert_statement_token2, + STATE(1313), 1, + sym_into, + ACTIONS(1809), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 1, + anon_sym_COMMA, + ACTIONS(2975), 1, + anon_sym_RPAREN, + ACTIONS(2977), 1, + aux_sym_insert_items_token1, + STATE(1469), 1, + aux_sym_create_type_statement_repeat2, + [79465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2429), 1, + aux_sym_trigger_cond_token1, + STATE(1884), 1, + sym_trigger_cond, + STATE(2096), 1, + sym_trigger_exec, + [79481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2979), 1, + aux_sym_grant_privileges_token1, + STATE(1719), 1, + sym_identifier, + STATE(2258), 1, + sym_grant_privileges, + [79497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 1, + aux_sym_returning_token1, + STATE(1883), 1, + sym_returning, + ACTIONS(2377), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2290), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2292), 1, + aux_sym_alter_table_action_token1, + STATE(1860), 1, + sym_alter_table_action, + [79527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_returning_repeat1, + ACTIONS(2692), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [79541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [79551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + aux_sym_trigger_scope_token2, + ACTIONS(2983), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [79562] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(2989), 1, + anon_sym_RPAREN, + STATE(1564), 1, + aux_sym_update_set_repeat1, + [79575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2991), 1, + anon_sym_COMMA, + ACTIONS(2994), 1, + anon_sym_RPAREN, + STATE(1564), 1, + aux_sym_update_set_repeat1, + [79588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(2996), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [68086] = 4, + [79610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RPAREN, - STATE(1538), 1, - aux_sym_drop_function_item_repeat1, - [68099] = 4, + ACTIONS(3000), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_RPAREN, - ACTIONS(2709), 1, + ACTIONS(3002), 1, + anon_sym_SEMI, + ACTIONS(3004), 1, anon_sym_COMMA, - STATE(1522), 1, + STATE(1569), 1, + aux_sym_grant_roles_repeat1, + [79636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 1, + anon_sym_SEMI, + ACTIONS(3008), 1, + anon_sym_COMMA, + STATE(1569), 1, + aux_sym_grant_roles_repeat1, + [79649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3011), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3013), 1, + aux_sym_insert_conflict_token1, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + [79675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_RPAREN, + STATE(1665), 1, + aux_sym_grant_function_repeat1, + [79688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_RPAREN, + STATE(1659), 1, + aux_sym_grant_function_repeat1, + [79701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1427), 1, + sym_with_query_item, + STATE(1716), 1, + sym_identifier, + [79714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3019), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3023), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_LPAREN, + ACTIONS(3027), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3029), 1, + aux_sym_with_query_item_token1, + [79762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 1, + anon_sym_RPAREN, + ACTIONS(2599), 1, + sym__identifier, + STATE(1663), 1, + sym_identifier, + [79775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3031), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3033), 1, + anon_sym_COMMA, + ACTIONS(3036), 1, + anon_sym_RPAREN, + STATE(1581), 1, + aux_sym_insert_items_repeat1, + [79801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RPAREN, + STATE(1641), 1, aux_sym_create_table_statement_repeat1, - [68112] = 2, + [79814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 3, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3046), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_COMMA, + ACTIONS(3051), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [79862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3053), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2634), 1, + anon_sym_SEMI, + STATE(2105), 1, + sym_where_filter, + [79888] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, + anon_sym_LPAREN, + ACTIONS(3057), 1, + aux_sym_index_using_token1, + STATE(2106), 1, + sym_index_using, + [79901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3061), 1, + anon_sym_RPAREN, + STATE(1629), 1, + aux_sym_create_index_statement_repeat1, + [79914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3061), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [79927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3063), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [79936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RPAREN, + STATE(1645), 1, + aux_sym_create_table_statement_repeat1, + [79949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, + anon_sym_RPAREN, + STATE(1606), 1, + aux_sym_create_type_statement_repeat2, + [79962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 1, + anon_sym_COMMA, + ACTIONS(3071), 1, + anon_sym_RPAREN, + STATE(1617), 1, + aux_sym_create_type_statement_repeat1, + [79975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3073), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [79988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3075), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(3077), 1, + anon_sym_RPAREN, + STATE(1563), 1, + aux_sym_update_set_repeat1, + [80010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(3077), 1, + anon_sym_RPAREN, + STATE(1564), 1, + aux_sym_update_set_repeat1, + [80023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3079), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_SEMI, + STATE(1568), 1, + aux_sym_grant_roles_repeat1, + [80049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_SEMI, + STATE(1569), 1, + aux_sym_grant_roles_repeat1, + [80062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3083), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80075] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3085), 1, + anon_sym_RPAREN, + STATE(1573), 1, + aux_sym_grant_function_repeat1, + [80088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3087), 1, + anon_sym_COMMA, + ACTIONS(3090), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1605), 1, + aux_sym_grant_targets_repeat1, + [80101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_RPAREN, + ACTIONS(3092), 1, + anon_sym_COMMA, + STATE(1606), 1, + aux_sym_create_type_statement_repeat2, + [80114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 1, + aux_sym_index_using_token1, + ACTIONS(3095), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [80125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + STATE(1656), 1, + sym_var_declaration, + [80138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3101), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_for_statement_token2, + STATE(1329), 1, + sym_into, + [80173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 3, aux_sym_body_token1, aux_sym_declarations_token1, sym__identifier, - [68121] = 4, + [80182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1981), 1, - aux_sym_for_statement_token2, - STATE(1183), 1, - sym_into, - [68134] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN, - ACTIONS(2715), 1, - aux_sym_index_using_token1, - STATE(2086), 1, - sym_index_using, - [68147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2717), 3, - anon_sym_SEMI, + ACTIONS(928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [68156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1249), 1, - sym_identifier, - STATE(1556), 1, - sym_var_declaration, - [68169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(2307), 1, - aux_sym_for_statement_token2, - STATE(1135), 1, - sym_into, - [68182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1865), 1, - aux_sym_for_statement_token2, - STATE(1173), 1, - sym_into, - [68195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - aux_sym_index_using_token1, - ACTIONS(2721), 1, - anon_sym_LPAREN, - STATE(1850), 1, - sym_index_using, - [68208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(1257), 1, + ACTIONS(3107), 1, + anon_sym_RBRACK, + STATE(1352), 1, aux_sym_conflict_target_repeat1, - [68221] = 4, + [80195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(2727), 1, + ACTIONS(3109), 1, anon_sym_RPAREN, - STATE(1428), 1, - aux_sym_create_index_statement_repeat1, - [68234] = 4, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2731), 1, - aux_sym_trigger_event_token2, - STATE(1450), 1, - aux_sym_trigger_event_repeat1, - [68247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, - aux_sym_index_using_token1, - ACTIONS(2733), 2, + ACTIONS(3111), 1, anon_sym_SEMI, + ACTIONS(3113), 1, + aux_sym_schema_role_token1, + STATE(2178), 1, + sym_schema_role, + [80221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, anon_sym_COMMA, - [68258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 1, - anon_sym_COMMA, - ACTIONS(2740), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1398), 1, - aux_sym_grant_targets_repeat1, - [68271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1749), 1, - aux_sym_for_statement_token2, - STATE(1164), 1, - sym_into, - [68284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2007), 1, + ACTIONS(3115), 1, anon_sym_RPAREN, - ACTIONS(2709), 1, - anon_sym_COMMA, - STATE(1535), 1, - aux_sym_create_table_statement_repeat1, - [68297] = 4, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(3117), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(1617), 1, + aux_sym_create_type_statement_repeat1, + [80247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3122), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, sym__identifier, - ACTIONS(2742), 1, + ACTIONS(2670), 1, aux_sym_insert_conflict_token1, - STATE(2082), 1, + STATE(2185), 1, sym_identifier, - [68310] = 4, + [80273] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2455), 1, + aux_sym_function_run_as_token1, + ACTIONS(2487), 1, + anon_sym_SEMI, + STATE(2154), 1, + sym_function_run_as, + [80286] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_index_using_token1, + ACTIONS(3124), 1, + anon_sym_LPAREN, + STATE(2189), 1, + sym_index_using, + [80299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(1581), 1, + aux_sym_insert_items_repeat1, + [80312] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3130), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3134), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3136), 1, + aux_sym_trigger_event_token2, + STATE(1625), 1, + aux_sym_trigger_event_repeat1, + [80347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 1, + aux_sym_sequence_min_token1, + ACTIONS(3141), 1, + aux_sym_sequence_max_token1, + ACTIONS(3143), 1, + aux_sym_sequence_cycle_token1, + [80360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2127), 1, + sym_identifier, + STATE(2174), 1, + sym_function_call, + [80373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2682), 1, + anon_sym_SEMI, + STATE(2165), 1, + sym_where_filter, + [80386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [80399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_index_col_nulls_token1, + [80408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [80421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + anon_sym_RPAREN, + STATE(1675), 1, + aux_sym_create_index_statement_repeat1, + [80434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1834), 1, + sym_identifier, + STATE(1918), 1, + sym_function_signature, + [80447] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_index_using_token1, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(2003), 1, + sym_index_using, + [80473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1870), 1, + aux_sym_for_statement_token2, + STATE(1342), 1, + sym_into, + [80499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(1591), 1, + aux_sym_create_index_statement_repeat1, + [80512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3159), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3161), 1, + anon_sym_RPAREN, + STATE(1645), 1, + aux_sym_create_table_statement_repeat1, + [80547] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(2573), 1, + aux_sym_insert_conflict_token1, + STATE(2037), 1, + sym_identifier, + [80573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3165), 1, + anon_sym_SEMI, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 1, + anon_sym_COMMA, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(1645), 1, + aux_sym_create_table_statement_repeat1, + [80599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(3172), 1, + aux_sym_alter_table_action_token2, + STATE(1354), 1, + sym_identifier, + [80612] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3174), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3113), 1, + aux_sym_schema_role_token1, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(2026), 1, + sym_schema_role, + [80638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3178), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + anon_sym_RPAREN, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1645), 1, + aux_sym_create_table_statement_repeat1, + [80664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + anon_sym_RPAREN, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1593), 1, + aux_sym_create_table_statement_repeat1, + [80677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_SEMI, + ACTIONS(3182), 1, + anon_sym_COMMA, + STATE(1762), 1, + aux_sym_alter_table_change_repeat1, + [80690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1761), 1, + sym_grant_function, + STATE(2266), 1, + sym_identifier, + [80703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3186), 3, + aux_sym_grant_targets_token1, + aux_sym_grant_targets_token2, + aux_sym_grant_targets_token3, + [80721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [80730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3188), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1759), 1, + aux_sym_drop_type_statement_repeat1, + [80743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3190), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_COMMA, + ACTIONS(3195), 1, + anon_sym_RPAREN, + STATE(1659), 1, + aux_sym_grant_function_repeat1, + [80769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3197), 1, + anon_sym_RPAREN, + STATE(1594), 1, + aux_sym_create_type_statement_repeat2, + [80782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, + anon_sym_RPAREN, + STATE(1595), 1, + aux_sym_create_type_statement_repeat1, + [80795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, + anon_sym_RPAREN, + STATE(1606), 1, + aux_sym_create_type_statement_repeat2, + [80808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 1, + anon_sym_COMMA, + ACTIONS(3201), 1, + anon_sym_RPAREN, + STATE(1758), 1, + aux_sym_drop_type_statement_repeat1, + [80821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(3203), 1, + anon_sym_RPAREN, + STATE(1599), 1, + aux_sym_update_set_repeat1, + [80834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_RPAREN, + STATE(1659), 1, + aux_sym_grant_function_repeat1, + [80847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3207), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_LPAREN, + ACTIONS(3211), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3213), 1, + aux_sym_with_query_item_token1, + [80873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3215), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, + anon_sym_RPAREN, + STATE(1668), 1, + aux_sym_drop_function_item_repeat1, + [80886] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3220), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, + anon_sym_RPAREN, + STATE(1668), 1, + aux_sym_drop_function_item_repeat1, + [80912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(980), 1, + anon_sym_SEMI, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3226), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2743), 1, + anon_sym_SEMI, + STATE(2209), 1, + sym_where_filter, + [80960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [80973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [80986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_RPAREN, + STATE(1693), 1, + aux_sym_create_index_statement_repeat1, + [80999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2455), 1, + aux_sym_function_run_as_token1, + ACTIONS(3236), 1, + anon_sym_SEMI, + STATE(2115), 1, + sym_function_run_as, + [81025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3242), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [81060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2466), 1, + anon_sym_RPAREN, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(1749), 1, + aux_sym_drop_function_item_repeat1, + [81073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3244), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_SEMI, + STATE(1602), 1, + aux_sym_grant_roles_repeat1, + [81099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3248), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3250), 1, + aux_sym_alter_table_rename_column_token2, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + [81125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3250), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(3254), 1, + anon_sym_COMMA, + STATE(1605), 1, + aux_sym_grant_targets_repeat1, + [81151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1968), 1, + sym_grant_function, + STATE(2266), 1, + sym_identifier, + [81164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 1, + anon_sym_SEMI, + ACTIONS(3258), 1, + anon_sym_COMMA, + STATE(1691), 1, + aux_sym_alter_table_change_repeat1, + [81177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2739), 1, + anon_sym_SEMI, + STATE(2232), 1, + sym_where_filter, + [81190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3261), 1, + anon_sym_RPAREN, + STATE(1586), 1, + aux_sym_create_index_statement_repeat1, + [81203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + STATE(1746), 1, + sym_var_declaration, + [81216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3261), 1, + anon_sym_RPAREN, + STATE(1704), 1, + aux_sym_create_index_statement_repeat1, + [81229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3263), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + STATE(1951), 1, + sym_table_column_item, + [81255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 1, + aux_sym_insert_items_token1, + ACTIONS(3267), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3269), 1, + aux_sym_alter_column_action_token3, + [81268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3271), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3273), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81294] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2227), 1, anon_sym_RPAREN, - ACTIONS(2705), 1, + ACTIONS(3038), 1, anon_sym_COMMA, - STATE(1384), 1, - aux_sym_drop_function_item_repeat1, - [68323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(2746), 1, - anon_sym_RPAREN, - STATE(1473), 1, - aux_sym_grant_function_repeat1, - [68336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - anon_sym_SEMI, - ACTIONS(2750), 1, - anon_sym_COMMA, - STATE(1491), 1, - aux_sym_grant_roles_repeat1, - [68349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - anon_sym_SEMI, - ACTIONS(2750), 1, - anon_sym_COMMA, - STATE(1492), 1, - aux_sym_grant_roles_repeat1, - [68362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [68371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 1, - anon_sym_RPAREN, - ACTIONS(2709), 1, - anon_sym_COMMA, - STATE(1385), 1, + STATE(1736), 1, aux_sym_create_table_statement_repeat1, - [68384] = 4, + [81307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_DOLLAR, - STATE(1237), 1, - sym_dollar_quote, - STATE(1912), 1, - sym_block, - [68397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(2756), 1, + ACTIONS(3275), 1, anon_sym_RPAREN, - STATE(1425), 1, - aux_sym_insert_items_repeat1, - [68410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_COMMA, - ACTIONS(2760), 1, - anon_sym_RPAREN, - STATE(1499), 1, - aux_sym_update_set_repeat1, - [68423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, - anon_sym_COMMA, - ACTIONS(2764), 1, - aux_sym_grant_targets_token4, - STATE(1437), 1, - aux_sym_grant_privileges_repeat1, - [68436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_COMMA, - ACTIONS(2760), 1, - anon_sym_RPAREN, - STATE(1503), 1, - aux_sym_update_set_repeat1, - [68449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2766), 1, - anon_sym_RPAREN, - STATE(1257), 1, + STATE(1352), 1, aux_sym_conflict_target_repeat1, - [68462] = 4, + [81320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1249), 1, - sym_identifier, - STATE(1532), 1, - sym_var_declaration, - [68475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1672), 1, - aux_sym_for_statement_token2, - STATE(1148), 1, - sym_into, - [68488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1577), 1, - sym_identifier, - STATE(1790), 1, - sym_assign_statement, - [68501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1638), 1, - aux_sym_for_statement_token2, - STATE(1139), 1, - sym_into, - [68514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1249), 1, - sym_identifier, - STATE(1549), 1, - sym_var_declaration, - [68527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2770), 1, - anon_sym_RPAREN, - STATE(1422), 1, - aux_sym_create_type_statement_repeat2, - [68540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2772), 1, - aux_sym_sequence_owned_token2, - STATE(1011), 1, - sym_identifier, - [68553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - aux_sym_trigger_event_token2, - ACTIONS(2774), 1, - aux_sym_insert_conflict_token1, - STATE(1396), 1, - aux_sym_trigger_event_repeat1, - [68566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_RPAREN, - ACTIONS(2776), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_create_type_statement_repeat2, - [68579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - anon_sym_COMMA, - ACTIONS(2779), 1, - anon_sym_SEMI, - STATE(1376), 1, - aux_sym_returning_repeat1, - [68592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, - anon_sym_COMMA, - ACTIONS(2783), 1, - anon_sym_RPAREN, - STATE(1516), 1, - aux_sym_create_type_statement_repeat1, - [68605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - anon_sym_COMMA, - ACTIONS(2785), 1, - anon_sym_RPAREN, - STATE(1457), 1, - aux_sym_insert_items_repeat1, - [68618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_COMMA, - ACTIONS(2787), 1, - anon_sym_RPAREN, - STATE(1522), 1, - aux_sym_create_table_statement_repeat1, - [68631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [68640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2791), 1, - anon_sym_RPAREN, - STATE(1446), 1, - aux_sym_create_index_statement_repeat1, - [68653] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1577), 1, - aux_sym_for_statement_token2, - STATE(1187), 1, - sym_into, - [68666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2793), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [68679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, - anon_sym_COMMA, - ACTIONS(2795), 1, - aux_sym_grant_targets_token4, - STATE(1411), 1, - aux_sym_grant_privileges_repeat1, - [68692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, - sym__identifier, - STATE(1338), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [68703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1193), 1, - sym_identifier, - STATE(1532), 1, - sym_var_declaration, - [68716] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2799), 1, - anon_sym_RPAREN, - STATE(1524), 1, - aux_sym_create_index_statement_repeat1, - [68729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [68738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2805), 1, - aux_sym_index_using_token1, - STATE(753), 1, - sym_join_condition, - [68751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - aux_sym_grant_targets_token4, - ACTIONS(2807), 1, - anon_sym_COMMA, - STATE(1437), 1, - aux_sym_grant_privileges_repeat1, - [68764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - aux_sym_index_using_token1, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(1836), 1, - sym_index_using, - [68777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1577), 1, - sym_identifier, - STATE(2049), 1, - sym_assign_statement, - [68790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - aux_sym_insert_items_token1, - ACTIONS(2814), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2816), 1, - aux_sym_alter_column_action_token3, - [68803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, + ACTIONS(2355), 1, aux_sym_where_filter_token1, - ACTIONS(2462), 1, + ACTIONS(2706), 1, anon_sym_SEMI, - STATE(1872), 1, + STATE(2245), 1, sym_where_filter, - [68816] = 4, + [81333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(794), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - ACTIONS(2818), 1, + ACTIONS(3277), 1, anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [68829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - ACTIONS(1559), 1, - aux_sym_for_statement_token2, - STATE(1171), 1, - sym_into, - [68842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, - anon_sym_COMMA, - ACTIONS(2820), 1, - anon_sym_SEMI, - STATE(1423), 1, - aux_sym_returning_repeat1, - [68855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_SEMI, - ACTIONS(2824), 1, - aux_sym_schema_role_token1, - STATE(1927), 1, - sym_schema_role, - [68868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_COMMA, - ACTIONS(2829), 1, - anon_sym_RPAREN, - STATE(1446), 1, + STATE(1586), 1, aux_sym_create_index_statement_repeat1, - [68881] = 2, + [81346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 3, + ACTIONS(3279), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3281), 1, + aux_sym_index_using_token1, + STATE(900), 1, + sym_join_condition, + [81359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_index_using_token1, + ACTIONS(3283), 1, + anon_sym_LPAREN, + STATE(2221), 1, + sym_index_using, + [81372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(3285), 1, + aux_sym_insert_conflict_token1, + STATE(2093), 1, + sym_identifier, + [81385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_COMMA, + ACTIONS(3287), 1, + anon_sym_SEMI, + STATE(1552), 1, + aux_sym_returning_repeat1, + [81398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(2688), 1, + anon_sym_SEMI, + STATE(2256), 1, + sym_where_filter, + [81411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(3289), 1, + aux_sym_sequence_owned_token2, + STATE(1181), 1, + sym_identifier, + [81424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3291), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3293), 1, + aux_sym_trigger_event_token2, + STATE(1726), 1, + aux_sym_trigger_event_repeat1, + [81437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1905), 1, + sym_identifier, + STATE(2008), 1, + sym_assign_statement, + [81450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(198), 1, + sym__identifier, + ACTIONS(3295), 1, + aux_sym_into_token1, + STATE(985), 1, + sym_identifier, + [81463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2530), 1, + aux_sym_for_statement_token2, + STATE(1309), 1, + sym_into, + [81476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_COMMA, + ACTIONS(3299), 1, + aux_sym_grant_targets_token4, + STATE(1751), 1, + aux_sym_drop_type_statement_repeat1, + [81489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + ACTIONS(3301), 1, + aux_sym_update_statement_token2, + STATE(2039), 1, + sym__list_of_identifiers, + [81502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2281), 1, + aux_sym_for_statement_token2, + STATE(1310), 1, + sym_into, + [81515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + aux_sym_where_filter_token1, + ACTIONS(3303), 1, + anon_sym_SEMI, + STATE(2268), 1, + sym_where_filter, + [81528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + aux_sym_insert_conflict_token1, + STATE(1571), 1, + aux_sym_drop_type_statement_repeat1, + [81541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + anon_sym_COMMA, + ACTIONS(3307), 1, + anon_sym_RPAREN, + STATE(1622), 1, + aux_sym_insert_items_repeat1, + [81554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_COMMA, + ACTIONS(3309), 1, + aux_sym_grant_targets_token4, + STATE(1715), 1, + aux_sym_drop_type_statement_repeat1, + [81567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2187), 1, + aux_sym_for_statement_token2, + STATE(1343), 1, + sym_into, + [81580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1905), 1, + sym_identifier, + STATE(2198), 1, + sym_assign_statement, + [81593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 1, + aux_sym_index_using_token1, + ACTIONS(3311), 1, + aux_sym_insert_conflict_token1, + STATE(900), 1, + sym_join_condition, + [81606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_COMMA, + ACTIONS(3313), 1, + anon_sym_SEMI, + STATE(1708), 1, + aux_sym_returning_repeat1, + [81619] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym_trigger_event_token2, + ACTIONS(3315), 1, + aux_sym_insert_conflict_token1, + STATE(1625), 1, + aux_sym_trigger_event_repeat1, + [81632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(2110), 1, + aux_sym_for_statement_token2, + STATE(1299), 1, + sym_into, + [81645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 3, aux_sym_body_token1, aux_sym_declarations_token1, sym__identifier, - [68890] = 4, + [81654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(558), 1, - aux_sym_for_statement_token2, - ACTIONS(712), 1, - aux_sym_insert_statement_token2, - STATE(1147), 1, - sym_into, - [68903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2835), 1, - aux_sym_trigger_scope_token2, - ACTIONS(2833), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [68914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2839), 1, - aux_sym_trigger_event_token2, - STATE(1450), 1, - aux_sym_trigger_event_repeat1, - [68927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1205), 1, - sym_identifier, - STATE(1775), 1, - sym_table_column_item, - [68940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1178), 1, - sym_with_query_item, - STATE(1508), 1, - sym_identifier, - [68953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2330), 1, - aux_sym_insert_conflict_token1, - STATE(1929), 1, - sym_identifier, - [68966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(3319), 1, anon_sym_RPAREN, - STATE(1446), 1, + STATE(1631), 1, aux_sym_create_index_statement_repeat1, - [68979] = 4, + [81667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 1, + ACTIONS(2599), 1, sym__identifier, - STATE(1590), 1, - sym_function_signature, - STATE(1738), 1, - sym_identifier, - [68992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_COMMA, - ACTIONS(2787), 1, - anon_sym_RPAREN, - STATE(1545), 1, - aux_sym_create_table_statement_repeat1, - [69005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_COMMA, - ACTIONS(2845), 1, - anon_sym_RPAREN, - STATE(1457), 1, - aux_sym_insert_items_repeat1, - [69018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_index_col_nulls_token1, - [69027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - sym__identifier, - STATE(1205), 1, - sym_identifier, - STATE(1730), 1, - sym_table_column_item, - [69040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2851), 1, - anon_sym_RPAREN, - STATE(1422), 1, - aux_sym_create_type_statement_repeat2, - [69066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2853), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(858), 1, - anon_sym_SEMI, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - aux_sym_index_using_token1, - ACTIONS(2855), 1, - anon_sym_LPAREN, - STATE(1822), 1, - sym_index_using, - [69105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_SEMI, - ACTIONS(2859), 1, - anon_sym_COMMA, - STATE(1467), 1, - aux_sym_alter_table_change_repeat1, - [69118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 1, - anon_sym_COMMA, - ACTIONS(2863), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1475), 1, - aux_sym_grant_targets_repeat1, - [69131] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2865), 1, - anon_sym_SEMI, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1467), 1, - aux_sym_alter_table_change_repeat1, - [69144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [69153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(2872), 1, - aux_sym_insert_conflict_token1, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - [69166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(2863), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1478), 1, - aux_sym_grant_privileges_repeat1, - [69179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - aux_sym_index_using_token1, - ACTIONS(2874), 1, - aux_sym_insert_conflict_token1, - STATE(753), 1, - sym_join_condition, - [69192] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(2863), 1, - aux_sym_alter_table_rename_column_token2, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - [69205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(1536), 1, - aux_sym_grant_function_repeat1, - [69218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1767), 1, - sym_grant_function, - STATE(2019), 1, - sym_identifier, - [69231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 1, - anon_sym_COMMA, - ACTIONS(2878), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1398), 1, - aux_sym_grant_targets_repeat1, - [69244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(1342), 1, - aux_sym_grant_privileges_repeat1, - [69257] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(1527), 1, - aux_sym_grant_function_repeat1, - [69270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(2878), 1, - aux_sym_alter_table_rename_column_token2, - STATE(817), 1, - aux_sym_grant_privileges_repeat1, - [69283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1243), 1, - sym_with_query_item, - STATE(1508), 1, - sym_identifier, - [69296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69309] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2884), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69322] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2886), 1, - anon_sym_SEMI, - STATE(1404), 1, - aux_sym_grant_roles_repeat1, - [69335] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2892), 1, - aux_sym_with_query_item_token1, - [69348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_LPAREN, - ACTIONS(2898), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2900), 1, - aux_sym_with_query_item_token1, - [69374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - ACTIONS(2902), 1, - anon_sym_RPAREN, - STATE(1476), 1, - aux_sym_grant_privileges_repeat1, - [69387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - ACTIONS(2904), 1, - anon_sym_RPAREN, - STATE(1486), 1, - sym_identifier, - [69400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2906), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2908), 1, - aux_sym_into_token1, - STATE(822), 1, - sym_identifier, - [69426] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2910), 1, - aux_sym_update_statement_token2, - STATE(748), 1, - sym_identifier, - [69439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2912), 1, - anon_sym_SEMI, - ACTIONS(2914), 1, - anon_sym_COMMA, - STATE(1491), 1, - aux_sym_grant_roles_repeat1, - [69452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_COMMA, - ACTIONS(2917), 1, - anon_sym_SEMI, - STATE(1491), 1, - aux_sym_grant_roles_repeat1, - [69465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - sym__identifier, - ACTIONS(2919), 1, - aux_sym_into_token1, - STATE(1315), 1, - sym_identifier, - [69478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - aux_sym_index_using_token1, - ACTIONS(2921), 1, - aux_sym_insert_conflict_token1, - STATE(753), 1, - sym_join_condition, - [69491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(2923), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1472), 1, - aux_sym_grant_privileges_repeat1, - [69504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2791), 1, - anon_sym_RPAREN, - STATE(1454), 1, - aux_sym_create_index_statement_repeat1, - [69517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2925), 3, - aux_sym_grant_targets_token1, - aux_sym_grant_targets_token2, - aux_sym_grant_targets_token3, - [69526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2927), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_COMMA, - ACTIONS(2932), 1, - anon_sym_RPAREN, - STATE(1499), 1, - aux_sym_update_set_repeat1, - [69552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1466), 1, - sym_grant_function, - STATE(2019), 1, - sym_identifier, - [69565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1738), 1, - sym_identifier, - STATE(1739), 1, - sym_function_signature, - [69578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(2934), 1, - anon_sym_SEMI, - STATE(1465), 1, - aux_sym_alter_table_change_repeat1, - [69591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_COMMA, - ACTIONS(2936), 1, - anon_sym_RPAREN, - STATE(1499), 1, - aux_sym_update_set_repeat1, - [69604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2938), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69617] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2940), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RPAREN, - STATE(1523), 1, - aux_sym_drop_function_item_repeat1, - [69643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2942), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - ACTIONS(2944), 1, - aux_sym_update_statement_token2, - STATE(1851), 1, - sym__list_of_identifiers, - [69669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2948), 1, - aux_sym_alter_table_action_token2, - STATE(1140), 1, - sym_identifier, - [69695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_COMMA, - ACTIONS(2950), 1, - anon_sym_RPAREN, - STATE(1410), 1, - aux_sym_update_set_repeat1, - [69708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2952), 1, - anon_sym_SEMI, - STATE(1979), 1, - sym_where_filter, - [69721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_SEMI, - ACTIONS(2254), 1, - aux_sym_function_run_as_token1, - STATE(1896), 1, - sym_function_run_as, - [69734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [69743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2956), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2958), 1, - anon_sym_COMMA, - ACTIONS(2961), 1, - anon_sym_RPAREN, - STATE(1516), 1, - aux_sym_create_type_statement_repeat1, - [69769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [69778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2477), 1, - anon_sym_SEMI, - STATE(1964), 1, - sym_where_filter, - [69791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2965), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2967), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2360), 1, - anon_sym_SEMI, - STATE(1902), 1, - sym_where_filter, - [69830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_COMMA, - ACTIONS(2972), 1, - anon_sym_RPAREN, - STATE(1522), 1, - aux_sym_create_table_statement_repeat1, - [69843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 1, - anon_sym_COMMA, - ACTIONS(2974), 1, - anon_sym_RPAREN, - STATE(1538), 1, - aux_sym_drop_function_item_repeat1, - [69856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_RPAREN, - STATE(1446), 1, - aux_sym_create_index_statement_repeat1, - [69869] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_RPAREN, - STATE(1567), 1, - aux_sym_create_index_statement_repeat1, - [69882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_RPAREN, - STATE(1446), 1, - aux_sym_create_index_statement_repeat1, - [69895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_COMMA, - ACTIONS(2980), 1, - anon_sym_RPAREN, - STATE(1536), 1, - aux_sym_grant_function_repeat1, - [69908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - aux_sym_index_using_token1, - ACTIONS(2982), 1, - anon_sym_LPAREN, - STATE(2076), 1, - sym_index_using, - [69921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2464), 1, - anon_sym_SEMI, - STATE(1969), 1, - sym_where_filter, - [69934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2984), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 1, - sym__identifier, - ACTIONS(2422), 1, - aux_sym_insert_conflict_token1, - STATE(2083), 1, - sym_identifier, - [69960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - [69969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2986), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [69982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 1, - aux_sym_schema_role_token1, - ACTIONS(2988), 1, - anon_sym_SEMI, - STATE(2085), 1, - sym_schema_role, - [69995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - anon_sym_RPAREN, - ACTIONS(2709), 1, - anon_sym_COMMA, - STATE(1522), 1, - aux_sym_create_table_statement_repeat1, - [70008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2990), 1, - anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(1536), 1, - aux_sym_grant_function_repeat1, - [70021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(2995), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_COMMA, - ACTIONS(3000), 1, - anon_sym_RPAREN, - STATE(1538), 1, - aux_sym_drop_function_item_repeat1, - [70047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3002), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3004), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3006), 1, - anon_sym_SEMI, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(1522), 1, - aux_sym_create_table_statement_repeat1, - [70126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3016), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - ACTIONS(3018), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR, + STATE(2084), 1, + sym_identifier, + [81680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 1, + aux_sym_create_table_statement_token1, + ACTIONS(3325), 1, + aux_sym_create_table_statement_token2, + ACTIONS(3327), 1, + aux_sym_grant_targets_token5, + [81693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_index_using_token1, + ACTIONS(3329), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_index_using, + [81706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3331), 3, + aux_sym_create_table_statement_token1, + aux_sym_create_table_statement_token2, + aux_sym_grant_targets_token5, + [81715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + sym__identifier, + ACTIONS(3333), 1, + aux_sym_into_token1, + STATE(1531), 1, + sym_identifier, + [81728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3335), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [81737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2245), 1, + anon_sym_RPAREN, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1645), 1, + aux_sym_create_table_statement_repeat1, + [81750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1986), 1, + aux_sym_for_statement_token2, + STATE(1339), 1, + sym_into, + [81763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1831), 1, + sym_function_signature, STATE(1834), 1, sym_identifier, - [70152] = 4, + [81776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3020), 1, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1894), 1, + aux_sym_for_statement_token2, + STATE(1333), 1, + sym_into, + [81789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1306), 1, + sym_with_query_item, + STATE(1716), 1, + sym_identifier, + [81802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2245), 1, anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(1419), 1, - aux_sym_create_type_statement_repeat2, - [70178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_RPAREN, - STATE(1526), 1, - aux_sym_create_index_statement_repeat1, - [70204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_RPAREN, - STATE(1446), 1, - aux_sym_create_index_statement_repeat1, - [70230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2436), 1, - anon_sym_SEMI, - STATE(1961), 1, - sym_where_filter, - [70243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 3, - aux_sym_create_table_statement_token1, - aux_sym_create_table_statement_token2, - aux_sym_grant_targets_token5, - [70252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(3032), 1, - anon_sym_RPAREN, - STATE(1461), 1, - aux_sym_create_type_statement_repeat2, - [70265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - anon_sym_RPAREN, - ACTIONS(2709), 1, - anon_sym_COMMA, - STATE(1426), 1, - aux_sym_create_table_statement_repeat1, - [70278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, - anon_sym_COMMA, - ACTIONS(2851), 1, - anon_sym_RPAREN, - STATE(1424), 1, - aux_sym_create_type_statement_repeat1, - [70304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2254), 1, - aux_sym_function_run_as_token1, - ACTIONS(3036), 1, - anon_sym_SEMI, - STATE(1946), 1, - sym_function_run_as, - [70317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, ACTIONS(3038), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1876), 1, - sym_identifier, - STATE(1906), 1, - sym_function_call, - [70343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + STATE(1650), 1, + aux_sym_create_table_statement_repeat1, + [81815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + STATE(1848), 1, + sym_table_column_item, + [81828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3337), 1, + sym__identifier, + STATE(1505), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [81839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1356), 1, + sym_identifier, + STATE(1656), 1, + sym_var_declaration, + [81852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + STATE(1660), 1, + sym_var_declaration, + [81865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_RPAREN, + STATE(1662), 1, + aux_sym_create_type_statement_repeat2, + [81878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + ACTIONS(1809), 1, + aux_sym_for_statement_token2, + STATE(1313), 1, + sym_into, + [81891] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 1, + aux_sym_for_statement_token2, + ACTIONS(904), 1, + aux_sym_insert_statement_token2, + STATE(1322), 1, + sym_into, + [81904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_RPAREN, + STATE(1668), 1, + aux_sym_drop_function_item_repeat1, + [81917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_RPAREN, + STATE(1670), 1, + aux_sym_drop_function_item_repeat1, + [81930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 1, + aux_sym_grant_targets_token4, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(1751), 1, + aux_sym_drop_type_statement_repeat1, + [81943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3346), 1, + anon_sym_RPAREN, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_DOLLAR, + STATE(1387), 1, + sym_dollar_quote, + STATE(2269), 1, + sym_block, + [81969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [81978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(3350), 1, + anon_sym_RBRACK, + STATE(1352), 1, + aux_sym_conflict_target_repeat1, + [81991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3281), 1, + aux_sym_index_using_token1, + ACTIONS(3352), 1, aux_sym_insert_conflict_token1, - STATE(1469), 1, - aux_sym_grant_privileges_repeat1, - [70356] = 2, + STATE(900), 1, + sym_join_condition, + [82004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_create_index_statement_repeat1, - [70378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RPAREN, - STATE(1446), 1, - aux_sym_create_index_statement_repeat1, - [70400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_conflict_target_repeat1, - [70413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - aux_sym_create_table_statement_token1, - ACTIONS(3052), 1, - aux_sym_create_table_statement_token2, - ACTIONS(3054), 1, - aux_sym_grant_targets_token5, - [70426] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 1, - aux_sym_where_filter_token1, - ACTIONS(2402), 1, - anon_sym_SEMI, - STATE(1944), 1, - sym_where_filter, - [70439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - aux_sym_sequence_min_token1, - ACTIONS(3058), 1, - aux_sym_sequence_max_token1, - ACTIONS(3060), 1, - aux_sym_sequence_cycle_token1, - [70452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, + ACTIONS(198), 1, sym__identifier, - STATE(1343), 1, + ACTIONS(3354), 1, + aux_sym_update_statement_token2, + STATE(908), 1, sym_identifier, - [70462] = 2, + [82017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 2, + ACTIONS(2925), 1, + anon_sym_COMMA, + ACTIONS(3356), 1, + anon_sym_RPAREN, + STATE(1536), 1, + aux_sym_drop_type_statement_repeat1, + [82030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + aux_sym_alter_table_rename_column_token2, + STATE(954), 1, + aux_sym_drop_type_statement_repeat1, + [82043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1687), 1, + aux_sym_drop_type_statement_repeat1, + [82056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1689), 1, + aux_sym_grant_targets_repeat1, + [82069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, + anon_sym_COMMA, + ACTIONS(3360), 1, + anon_sym_SEMI, + STATE(1691), 1, + aux_sym_alter_table_change_repeat1, + [82082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2480), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3362), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, + anon_sym_RPAREN, + [82100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1535), 1, + sym_identifier, + [82110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2377), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_STAR, + STATE(503), 1, + sym_star, + [82136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(955), 1, + sym_identifier, + [82146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1732), 1, + sym_identifier, + [82156] = 3, + ACTIONS(29), 1, + aux_sym_psql_statement_token1, + ACTIONS(31), 1, + sym__identifier, + ACTIONS(2771), 1, + sym_comment, + [82166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3366), 2, + aux_sym_schema_role_token1, + sym__identifier, + [82174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1525), 1, + anon_sym_STAR, + STATE(413), 1, + sym_star, + [82184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3368), 2, + anon_sym_LPAREN, + sym__identifier, + [82192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_SQUOTE, + STATE(1661), 1, + sym_string, + [82202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 2, + anon_sym_COMMA, + aux_sym_grant_targets_token4, + [82210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 1, + anon_sym_STAR, + STATE(133), 1, + sym_star, + [82220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1537), 1, + sym_identifier, + [82230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1824), 1, + sym_identifier, + [82240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1488), 1, + sym_identifier, + [82250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1123), 1, + sym_identifier, + [82260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + sym__identifier, + STATE(1108), 1, + sym_identifier, + [82270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3372), 1, + aux_sym_grant_privileges_token2, + [82280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3378), 1, + anon_sym_SQUOTE, + STATE(164), 1, + sym_string, + [82306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1459), 1, + sym_identifier, + [82316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2142), 1, + sym_identifier, + [82326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(2143), 1, + sym_identifier, + [82336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(2149), 1, + sym_identifier, + [82346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2868), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2580), 2, anon_sym_SEMI, anon_sym_COMMA, - [70470] = 2, + [82362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 2, + ACTIONS(2526), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1334), 1, + sym_identifier, + [82380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2157), 1, + sym_identifier, + [82390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(1471), 1, + sym__list_of_identifiers, + [82400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1409), 1, + sym_identifier, + [82410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(1896), 1, + sym__list_of_identifiers, + [82420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1380), 1, + sym_identifier, + [82430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3380), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(3382), 1, + aux_sym_drop_function_statement_token1, + [82440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2296), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3384), 2, anon_sym_SEMI, aux_sym_create_function_statement_token1, - [70478] = 2, + [82456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70486] = 3, + ACTIONS(2800), 1, + sym__identifier, + STATE(1635), 1, + sym_identifier, + [82466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3366), 2, + aux_sym_insert_conflict_token1, + sym__identifier, + [82474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3386), 1, anon_sym_SEMI, - ACTIONS(3066), 1, - anon_sym_COLON_EQ, - [70496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3068), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [70504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2525), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - anon_sym_SQUOTE, - STATE(76), 1, - sym_string, - [70530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 1, - anon_sym_SEMI, - ACTIONS(3072), 1, + ACTIONS(3388), 1, anon_sym_DOLLAR, - [70540] = 3, + [82484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_get_diagnostics_statement_token2, - ACTIONS(3076), 1, - aux_sym_get_diagnostics_statement_token3, - [70550] = 3, + ACTIONS(1325), 1, + anon_sym_STAR, + STATE(341), 1, + sym_star, + [82494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, - sym__identifier, - STATE(1431), 1, - sym_identifier, - [70560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1265), 1, - sym_identifier, - [70586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1307), 1, - sym_identifier, - [70596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3080), 1, - sym__identifier, - STATE(318), 1, - sym_identifier, - [70606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(777), 1, - sym_identifier, - [70616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3082), 1, - aux_sym_function_return_token1, - STATE(2048), 1, - sym_function_return, - [70626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - STATE(89), 1, + STATE(1829), 1, sym_string, - [70636] = 2, + [82504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 2, + ACTIONS(3390), 1, + anon_sym_SEMI, + ACTIONS(3392), 1, + anon_sym_COMMA, + [82514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1372), 1, + sym_identifier, + [82524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1237), 1, + sym_identifier, + [82534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 2, aux_sym_insert_items_token1, aux_sym_alter_column_action_token2, - [70644] = 2, + [82542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1978), 1, + sym_identifier, + [82552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2441), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3396), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(849), 1, + anon_sym_STAR, + STATE(457), 1, + sym_star, + [82602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3398), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [82610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2205), 1, + sym_identifier, + [82620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3400), 1, + anon_sym_COMMA, + ACTIONS(3402), 1, + anon_sym_RPAREN, + [82630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3404), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [82646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_SEMI, + ACTIONS(3408), 1, + aux_sym_update_statement_token2, + [82656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, + anon_sym_RPAREN, + [82674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3242), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2214), 1, + sym_identifier, + [82692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 1, + anon_sym_SEMI, + ACTIONS(3414), 1, + anon_sym_COMMA, + [82702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(383), 1, + sym_star, + [82712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3416), 1, + aux_sym_function_return_token1, + STATE(1994), 1, + sym_function_return, + [82722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3418), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [82730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3420), 1, + anon_sym_LPAREN, + ACTIONS(3422), 1, + aux_sym_update_set_token1, + [82740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_LPAREN, + STATE(2005), 1, + sym_function_parameters, + [82750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1510), 1, + sym_identifier, + [82760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3426), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [82776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3428), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3430), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 1, + anon_sym_SQUOTE, + STATE(80), 1, + sym_string, + [82802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3434), 1, + anon_sym_COMMA, + ACTIONS(3436), 1, + anon_sym_RPAREN, + [82820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym__list_of_identifiers, + [82830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 1, + sym__identifier, + STATE(1365), 1, + sym_identifier, + [82840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3226), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + STATE(2206), 1, + sym_trigger_exec, + [82858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2015), 1, + sym_identifier, + [82868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3267), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3440), 1, + aux_sym_insert_items_token1, + [82902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [82910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 1, + anon_sym_SQUOTE, + STATE(112), 1, + sym_string, + [82920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3195), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3444), 1, + anon_sym_COMMA, + ACTIONS(3446), 1, + anon_sym_RPAREN, + [82938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1975), 1, + sym_identifier, + [82964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1601), 1, + sym_identifier, + [82998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1621), 1, + sym_identifier, + [83008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3450), 1, + anon_sym_SQUOTE, + STATE(184), 1, + sym_string, + [83026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(660), 1, + anon_sym_STAR, + STATE(325), 1, + sym_star, + [83036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(912), 1, + sym_identifier, + [83046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_RPAREN, + [83056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(2274), 1, + sym_identifier, + [83066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [83074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [83082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 2, + anon_sym_LPAREN, + sym__identifier, + [83090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(910), 1, + sym__list_of_identifiers, + [83100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(937), 1, + sym_identifier, + [83110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 2, + anon_sym_SEMI, + aux_sym_where_filter_token1, + [83118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(3464), 1, + anon_sym_RPAREN, + [83128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3466), 1, + aux_sym_join_item_token3, + ACTIONS(3468), 1, + aux_sym_join_type_token3, + [83138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2870), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3470), 2, + anon_sym_LPAREN, + sym__identifier, + [83154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 2, + aux_sym_update_statement_token1, + aux_sym_delete_statement_token1, + [83162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + STATE(22), 1, + sym_string, + [83172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2365), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + STATE(2159), 1, + sym_trigger_exec, + [83198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_RPAREN, + [83208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [83216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1459), 1, + anon_sym_STAR, + STATE(142), 1, + sym_star, + [83226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 2, + anon_sym_SEMI, + aux_sym_function_run_as_token1, + [83234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3480), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [83242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1760), 1, + sym_identifier, + [83252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_DOLLAR, + STATE(1902), 1, + sym_dollar_quote, + [83262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1227), 1, + sym_identifier, + [83280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + anon_sym_SQUOTE, + STATE(416), 1, + sym_string, + [83298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2064), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1533), 1, + sym_constraint_foreign_key, + [83308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2439), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3170), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2211), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70652] = 2, + [83332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 2, + ACTIONS(3484), 2, + aux_sym_constraint_when_token3, + aux_sym_constraint_when_token4, + [83340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_DOLLAR, + STATE(1802), 1, + sym_dollar_quote, + [83350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3486), 2, anon_sym_SEMI, - anon_sym_RPAREN, - [70660] = 2, + aux_sym_create_function_statement_token1, + [83358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [70668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, + ACTIONS(2800), 1, sym__identifier, - STATE(823), 1, + STATE(1201), 1, sym_identifier, - [70678] = 2, + [83368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 2, + ACTIONS(3488), 1, + anon_sym_SEMI, + ACTIONS(3490), 1, + anon_sym_COLON_EQ, + [83378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, + [83386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3494), 1, + anon_sym_COMMA, + ACTIONS(3496), 1, + anon_sym_RPAREN, + [83396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [70686] = 3, + [83404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 1, + ACTIONS(3498), 1, + anon_sym_SEMI, + ACTIONS(3500), 1, + anon_sym_DOLLAR, + [83414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3502), 1, + aux_sym_get_diagnostics_statement_token2, + ACTIONS(3504), 1, + aux_sym_get_diagnostics_statement_token3, + [83424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(2207), 1, + sym_identifier, + [83434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3506), 1, + sym__identifier, + STATE(1721), 1, + sym_identifier, + [83444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(1850), 1, + sym_identifier, + [83454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(955), 1, + sym_identifier, + [83464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [83472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3508), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [83480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(952), 1, + sym_identifier, + [83490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(971), 1, + sym_identifier, + [83500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3416), 1, + aux_sym_function_return_token1, + STATE(2201), 1, + sym_function_return, + [83510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1036), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [83518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1589), 1, + sym_identifier, + [83528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_SQUOTE, + STATE(486), 1, + sym_string, + [83538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [83546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3514), 1, + aux_sym_sequence_start_token2, + ACTIONS(3516), 1, + sym_number, + [83556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3520), 1, + anon_sym_RPAREN, + [83566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3522), 1, + aux_sym_sequence_increment_token2, + ACTIONS(3524), 1, + sym_number, + [83584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 2, + aux_sym_index_col_nulls_token2, + aux_sym_index_col_nulls_token3, + [83592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1124), 1, + anon_sym_SQUOTE, + STATE(5), 1, + sym_string, + [83602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2878), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3506), 1, + sym__identifier, + STATE(1776), 1, + sym_identifier, + [83620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [83628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1018), 1, + sym_identifier, + [83638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3134), 2, + aux_sym_insert_conflict_token1, + aux_sym_trigger_event_token2, + [83646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2569), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1303), 1, anon_sym_STAR, - STATE(104), 1, + STATE(637), 1, sym_star, - [70696] = 2, + [83664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + aux_sym_update_statement_token1, + ACTIONS(3530), 1, + aux_sym_insert_conflict_token4, + [83674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(2128), 1, + sym_identifier, + [83684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(982), 1, + sym_identifier, + [83694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_SQUOTE, + STATE(56), 1, + sym_string, + [83704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1361), 1, + sym_identifier, + [83714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1706), 1, + sym_identifier, + [83724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2437), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [83732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + aux_sym_trigger_exec_token1, + STATE(2096), 1, + sym_trigger_exec, + [83750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_COMMA, + ACTIONS(3536), 1, + anon_sym_RPAREN, + [83760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [83768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3538), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [83776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3540), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2161), 1, + sym_identifier, + [83802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [83810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(765), 1, + anon_sym_STAR, + STATE(444), 1, + sym_star, + [83820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(1875), 1, + sym__list_of_identifiers, + [83830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1134), 1, + sym_identifier, + [83840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [83848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + sym__identifier, + STATE(1084), 1, + sym_identifier, + [83858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 2, + aux_sym_function_run_as_token2, + aux_sym_function_run_as_token3, + [83874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [83882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 1, + anon_sym_SQUOTE, + STATE(65), 1, + sym_string, + [83892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3546), 1, + anon_sym_COMMA, + ACTIONS(3548), 1, + anon_sym_RPAREN, + [83902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym__identifier, + STATE(1143), 1, + sym_identifier, + [83912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3550), 1, + anon_sym_LPAREN, + ACTIONS(3552), 1, + aux_sym_create_type_statement_token2, + [83922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2057), 1, + sym_identifier, + [83932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1553), 1, + anon_sym_SQUOTE, + STATE(200), 1, + sym_string, + [83942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 1, + anon_sym_STAR, + STATE(625), 1, + sym_star, + [83952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + sym__identifier, + STATE(2058), 1, + sym_identifier, + [83962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3090), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - aux_sym_sequence_start_token2, - ACTIONS(3094), 1, - sym_number, - [70714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - aux_sym_sequence_increment_token2, - ACTIONS(3098), 1, - sym_number, - [70724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(849), 1, - sym_identifier, - [70734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3100), 1, - sym__identifier, - STATE(360), 1, - sym_identifier, - [70752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1388), 1, - sym_identifier, - [70762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(963), 1, - sym_identifier, - [70772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3102), 1, - anon_sym_SQUOTE, - STATE(160), 1, - sym_string, - [70782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(2044), 1, - sym_identifier, - [70800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_LPAREN, - ACTIONS(3106), 1, - aux_sym_create_type_statement_token3, - [70810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - sym__identifier, - STATE(114), 1, - sym_identifier, - [70820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1357), 1, - anon_sym_SQUOTE, - STATE(16), 1, - sym_string, - [70830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [70838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [70846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - sym__identifier, - STATE(941), 1, - sym_identifier, - [70864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - STATE(1941), 1, - sym_trigger_exec, - [70874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 1, - sym__identifier, - STATE(1097), 1, - sym_identifier, - [70884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - sym__identifier, - STATE(465), 1, - sym_identifier, - [70894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3118), 1, - aux_sym_grant_privileges_token2, - [70904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(770), 1, - anon_sym_STAR, - STATE(365), 1, - sym_star, - [70914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - anon_sym_SQUOTE, - STATE(289), 1, - sym_string, - [70924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [70940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - sym__identifier, - STATE(950), 1, - sym_identifier, - [70950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(982), 1, - sym_identifier, - [70960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(748), 1, - anon_sym_STAR, - STATE(309), 1, - sym_star, - [70970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3124), 2, anon_sym_COMMA, aux_sym_alter_table_rename_column_token2, - [70978] = 2, + [83970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70986] = 2, + ACTIONS(2800), 1, + sym__identifier, + STATE(2060), 1, + sym_identifier, + [83980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [70994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 2, + ACTIONS(2347), 2, anon_sym_SEMI, anon_sym_RPAREN, - [71002] = 2, + [83988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 2, + ACTIONS(3075), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [71010] = 3, + [83996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, - sym__identifier, - STATE(334), 1, - sym_identifier, - [71020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2660), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - STATE(1869), 1, - sym_trigger_exec, - [71038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - sym__identifier, - STATE(492), 1, - sym_identifier, - [71048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1349), 1, - sym_constraint_foreign_key, - [71058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3132), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [71074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3134), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [71082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3136), 2, - anon_sym_SEMI, - aux_sym_where_filter_token1, - [71090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3138), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - STATE(355), 1, + STATE(1892), 1, sym_string, - [71108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - anon_sym_STAR, - STATE(481), 1, - sym_star, - [71118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3140), 1, - anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RPAREN, - [71128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3144), 1, - sym__identifier, - STATE(250), 1, - sym_identifier, - [71138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3146), 2, - aux_sym_update_statement_token1, - aux_sym_delete_statement_token1, - [71154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3148), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_trigger_exec_token1, - STATE(1898), 1, - sym_trigger_exec, - [71172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [71180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(1337), 1, - sym__list_of_identifiers, - [71190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [71198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - anon_sym_STAR, - STATE(315), 1, - sym_star, - [71208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2961), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 2, - aux_sym_constraint_when_token3, - aux_sym_constraint_when_token4, - [71224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1036), 1, - sym_identifier, - [71242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3154), 2, - anon_sym_SEMI, - aux_sym_function_run_as_token1, - [71250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(1637), 1, - sym__list_of_identifiers, - [71260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3156), 2, - aux_sym_function_run_as_token2, - aux_sym_function_run_as_token3, - [71268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3158), 1, - sym__identifier, - STATE(201), 1, - sym_identifier, - [71286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(829), 1, - sym_identifier, - [71296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(806), 1, - sym_identifier, - [71306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_SQUOTE, - STATE(39), 1, - sym_string, - [71316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(744), 1, - anon_sym_SQUOTE, - STATE(1559), 1, - sym_string, - [71326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1737), 1, - sym_identifier, - [71336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1470), 1, - sym_identifier, - [71362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(751), 1, - sym__list_of_identifiers, - [71372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3162), 2, - anon_sym_LPAREN, - sym__identifier, - [71380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1624), 1, - sym_identifier, - [71390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_DOLLAR, - STATE(1721), 1, - sym_dollar_quote, - [71400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 2, - anon_sym_LPAREN, - sym__identifier, - [71408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(747), 1, - sym_identifier, - [71418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1405), 1, - sym_identifier, - [71428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(823), 1, - sym_identifier, - [71438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3166), 1, - anon_sym_SQUOTE, - STATE(92), 1, - sym_string, - [71448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3168), 2, - anon_sym_LPAREN, - sym__identifier, - [71456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - aux_sym_join_item_token3, - ACTIONS(3172), 1, - aux_sym_join_type_token3, - [71466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [71474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [71482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1147), 1, - anon_sym_STAR, - STATE(503), 1, - sym_star, - [71492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 1, - anon_sym_STAR, - STATE(135), 1, - sym_star, - [71502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 2, - anon_sym_COMMA, - aux_sym_grant_targets_token4, - [71510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(862), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1438), 1, - sym_identifier, - [71552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2865), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(2022), 1, - sym_identifier, - [71570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(2023), 1, - sym_identifier, - [71580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2323), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(991), 1, - sym_identifier, - [71598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 1, - aux_sym_update_statement_token1, - ACTIONS(3180), 1, - aux_sym_insert_conflict_token4, - [71608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, - anon_sym_STAR, - STATE(244), 1, - sym_star, - [71618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1877), 1, - sym_identifier, - [71628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 1, - anon_sym_DOLLAR, - STATE(1574), 1, - sym_dollar_quote, - [71638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 1, - sym__identifier, - STATE(222), 1, - sym_identifier, - [71648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(2024), 1, - sym_identifier, - [71658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2845), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1134), 1, - sym_identifier, - [71684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3182), 2, - aux_sym_index_col_nulls_token2, - aux_sym_index_col_nulls_token3, - [71692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1225), 1, - sym_identifier, - [71702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 1, - anon_sym_SQUOTE, - STATE(47), 1, - sym_string, - [71712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3184), 2, - aux_sym_schema_role_token1, - sym__identifier, - [71720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(774), 1, - sym_identifier, - [71738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2837), 2, - aux_sym_insert_conflict_token1, - aux_sym_trigger_event_token2, - [71746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(2040), 1, - sym_identifier, - [71756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1782), 1, - sym_identifier, - [71766] = 3, - ACTIONS(29), 1, - aux_sym_psql_statement_token1, - ACTIONS(31), 1, - sym__identifier, - ACTIONS(2491), 1, - sym_comment, - [71776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3186), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [71784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1528), 1, - sym_identifier, - [71802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [71818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym_SEMI, - ACTIONS(3194), 1, - anon_sym_DOLLAR, - [71828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3196), 1, - aux_sym_insert_items_token1, - [71838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(744), 1, - anon_sym_SQUOTE, - STATE(1749), 1, - sym_string, - [71848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [71856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(1641), 1, - sym__list_of_identifiers, - [71866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2829), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3198), 1, - anon_sym_SEMI, - ACTIONS(3200), 1, - anon_sym_COMMA, - [71884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1271), 1, - anon_sym_STAR, - STATE(353), 1, - sym_star, - [71894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1885), 1, - sym_identifier, - [71912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1919), 1, - sym_identifier, - [71922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3202), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [71930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1218), 1, - sym_identifier, - [71948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1333), 1, - sym_identifier, - [71958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3204), 1, - anon_sym_SEMI, - ACTIONS(3206), 1, - aux_sym_update_statement_token2, - [71968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3208), 1, - anon_sym_LPAREN, - STATE(1915), 1, - sym_function_parameters, - [71978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3082), 1, - aux_sym_function_return_token1, - STATE(1911), 1, - sym_function_return, - [71988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2161), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1220), 1, - sym_identifier, - [72014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(588), 1, - anon_sym_STAR, - STATE(199), 1, - sym_star, - [72024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(744), 1, - anon_sym_SQUOTE, - STATE(1655), 1, - sym_string, - [72034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 1, - sym__identifier, - STATE(366), 1, - sym_identifier, - [72044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1267), 1, - anon_sym_SQUOTE, - STATE(154), 1, - sym_string, - [72054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(2075), 1, - sym_identifier, - [72072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 1, - anon_sym_SEMI, - ACTIONS(3212), 1, - anon_sym_COMMA, - [72082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1890), 1, - sym_identifier, - [72092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, - anon_sym_LPAREN, - ACTIONS(3216), 1, - aux_sym_update_set_token1, - [72102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3184), 2, - aux_sym_insert_conflict_token1, - sym__identifier, - [72110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1365), 1, - sym_identifier, - [72120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1255), 1, - sym_identifier, - [72130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2654), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [72138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1581), 1, - anon_sym_LPAREN, - STATE(1381), 1, - sym__list_of_identifiers, - [72156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [72172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3218), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [72188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3220), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(884), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1849), 1, - sym_identifier, - [72214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1123), 1, - anon_sym_STAR, - STATE(228), 1, - sym_star, - [72224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1393), 1, - sym_identifier, - [72234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2740), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [72242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1847), 1, - sym_identifier, - [72252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_SQUOTE, - STATE(29), 1, - sym_string, - [72262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(1844), 1, - sym_identifier, - [72272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3078), 1, - sym__identifier, - STATE(1687), 1, - sym_identifier, - [72282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 1, - sym__identifier, - STATE(1055), 1, - sym_identifier, - [72292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3222), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [72300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3078), 1, - sym__identifier, - STATE(130), 1, - sym_identifier, - [72310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [72318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1801), 1, - sym_identifier, - [72336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym__identifier, - STATE(1464), 1, - sym_identifier, - [72346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - sym__identifier, - STATE(2079), 1, - sym_identifier, - [72356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3224), 1, - aux_sym_update_statement_token2, - [72363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(808), 1, - anon_sym_RPAREN, - [72370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 1, - anon_sym_SEMI, - [72377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3228), 1, - aux_sym_create_type_statement_token2, - [72384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 1, - anon_sym_RPAREN, - [72391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3230), 1, - aux_sym_if_not_exists_token1, - [72398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3232), 1, - aux_sym_time_expression_token3, - [72405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3234), 1, - anon_sym_SEMI, - [72412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - aux_sym_alter_column_action_token2, - [72419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3238), 1, - anon_sym_RBRACK, - [72426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3240), 1, - anon_sym_SEMI, - [72433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3242), 1, - aux_sym_insert_conflict_token3, - [72440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - aux_sym__interval_fields_token2, - [72447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - anon_sym_RPAREN, - [72454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - sym_number, - [72461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - aux_sym__interval_fields_token6, - [72468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3248), 1, - anon_sym_DOLLAR, - [72475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_number, - [72482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3252), 1, - aux_sym_insert_statement_token2, - [72489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3254), 1, - aux_sym_update_statement_token4, - [72496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3256), 1, - anon_sym_DOLLAR, - [72503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3258), 1, - aux_sym_update_statement_token2, - [72510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - aux_sym_for_statement_token2, - [72517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - aux_sym_update_statement_token3, - [72524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym_insert_conflict_token3, - [72531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 1, - aux_sym_insert_conflict_token4, - [72538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - aux_sym_if_not_exists_token1, - [72545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(804), 1, - anon_sym_RPAREN, - [72552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3270), 1, - aux_sym_conflict_target_token1, - [72559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 1, - aux_sym_create_function_statement_token1, - [72566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - aux_sym_function_return_token1, - [72573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3276), 1, - sym__identifier, - [72580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - aux_sym_if_not_exists_token1, - [72587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 1, - anon_sym_SEMI, - [72594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - anon_sym_SEMI, - [72601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(802), 1, - anon_sym_RPAREN, - [72608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3284), 1, - aux_sym_sequence_increment_token2, - [72615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3286), 1, - aux_sym_time_expression_token3, - [72622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 1, - aux_sym_alter_column_action_token1, - [72629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3290), 1, - aux_sym_create_function_statement_token1, - [72636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - aux_sym__interval_fields_token2, - [72643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3292), 1, - anon_sym_LPAREN, - [72650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_LPAREN, - [72657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - aux_sym__interval_fields_token6, - [72664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_SEMI, - [72671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SEMI, - [72678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3294), 1, - anon_sym_DOLLAR, - [72685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - aux_sym_or_replace_token1, - [72692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3298), 1, - anon_sym_LPAREN, - [72699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3300), 1, - aux_sym_insert_conflict_token1, - [72706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3302), 1, - anon_sym_SEMI, - [72713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_RPAREN, - [72720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3304), 1, - aux_sym_drop_function_statement_token2, - [72727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, - aux_sym_create_table_statement_token2, - [72734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3308), 1, - anon_sym_DOLLAR, - [72741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - aux_sym_sequence_increment_token2, - [72748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3312), 1, - anon_sym_LPAREN, - [72755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - [72762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - anon_sym_RPAREN, - [72769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 1, - aux_sym_function_return_token1, - [72776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 1, - aux_sym_time_expression_token3, - [72783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3320), 1, - aux_sym_for_statement_token2, - [72790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - aux_sym_if_statement_token1, - [72797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 1, - aux_sym__interval_fields_token2, - [72804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_SEMI, - [72811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - aux_sym_insert_conflict_token1, - [72818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 1, - aux_sym__interval_fields_token6, - [72825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3326), 1, - anon_sym_SEMI, - [72832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - anon_sym_DOLLAR, - [72839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3330), 1, - aux_sym_alter_table_rename_column_token2, - [72846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_LPAREN, - [72853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3332), 1, - aux_sym_update_statement_token2, - [72860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_RPAREN, - [72867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - anon_sym_RPAREN, - [72874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_RPAREN, - [72881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - aux_sym_table_constraint_ty_token3, - [72888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - aux_sym_select_statement_token1, - [72895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3338), 1, - anon_sym_RPAREN, - [72902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 1, - anon_sym_LPAREN, - [72909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 1, - aux_sym_update_statement_token2, - [72916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(822), 1, - anon_sym_RPAREN, - [72923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - aux_sym_alter_column_action_token2, - [72930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 1, - aux_sym_time_expression_token3, - [72937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_DOLLAR, - [72944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_SEMI, - [72951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - aux_sym__interval_fields_token2, - [72958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 1, - aux_sym_function_return_token1, - [72965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_SEMI, - [72972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - aux_sym__interval_fields_token6, - [72979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 1, - anon_sym_SEMI, - [72986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_DOLLAR, - [72993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 1, - anon_sym_SEMI, - [73000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_SEMI, - [73007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - anon_sym_RPAREN, - [73014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_if_statement_token1, - [73021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - anon_sym_SEMI, - [73028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(544), 1, - anon_sym_LPAREN, - [73035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3362), 1, - aux_sym_insert_conflict_token3, - [73042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - aux_sym_update_statement_token3, - [73049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(830), 1, - anon_sym_RPAREN, - [73056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3366), 1, - aux_sym_insert_conflict_token1, - [73063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 1, - aux_sym_time_expression_token3, - [73070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3370), 1, - aux_sym_for_statement_token2, - [73077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - aux_sym__interval_fields_token2, - [73084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, - anon_sym_SEMI, - [73091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 1, - aux_sym_update_statement_token3, - [73098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - aux_sym__interval_fields_token6, - [73105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - aux_sym_if_statement_token1, - [73112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 1, - anon_sym_DOLLAR, - [73119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 1, - aux_sym_time_expression_token2, - [73126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3382), 1, - aux_sym_update_statement_token3, - [73133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 1, - anon_sym_RPAREN, - [73140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_EQ, - [73147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_SEMI, - [73154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_EQ, - [73161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_SEMI, - [73168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3036), 1, - anon_sym_SEMI, - [73175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - anon_sym_RPAREN, - [73182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3392), 1, - anon_sym_SEMI, - [73189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, - aux_sym_time_expression_token3, - [73196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 1, - aux_sym__interval_fields_token2, - [73203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 1, - sym__identifier, - [73210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - anon_sym_SEMI, - [73217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 1, - aux_sym__interval_fields_token6, - [73224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_SEMI, - [73231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 1, - anon_sym_DOLLAR, - [73238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3400), 1, - anon_sym_SEMI, - [73245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_SEMI, - [73252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 1, - anon_sym_RPAREN, - [73259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3404), 1, - aux_sym_insert_conflict_token3, - [73266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3406), 1, - anon_sym_SEMI, - [73273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3408), 1, - aux_sym_update_statement_token2, - [73280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3410), 1, - anon_sym_SEMI, - [73287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 1, - anon_sym_SEMI, - [73294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(816), 1, - anon_sym_RPAREN, - [73301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3414), 1, - aux_sym_function_return_token1, - [73308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 1, - aux_sym_time_expression_token3, - [73315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - aux_sym__interval_fields_token2, - [73322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3418), 1, - aux_sym_for_statement_token2, - [73329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 1, - anon_sym_LPAREN, - [73336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - aux_sym__interval_fields_token6, - [73343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - aux_sym_if_not_exists_token1, - [73350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 1, - anon_sym_DOLLAR, - [73357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 1, - aux_sym_function_return_token1, - [73364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - aux_sym__interval_fields_token6, - [73371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_RPAREN, - [73378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3428), 1, - anon_sym_SEMI, - [73385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym_SEMI, - [73392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_SEMI, - [73399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - aux_sym_insert_conflict_token1, - [73406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3056), 1, - sym_number, - [73413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 1, - anon_sym_RPAREN, - [73420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 1, - aux_sym_drop_function_statement_token2, - [73427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 1, - aux_sym_time_expression_token3, - [73434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - aux_sym__interval_fields_token2, - [73441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, - sym_number, - [73448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - sym_number, - [73455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - aux_sym__interval_fields_token6, - [73462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - aux_sym_sequence_increment_token2, - [73469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, - anon_sym_DOLLAR, - [73476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 1, - aux_sym_function_return_token1, - [73483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_SEMI, - [73490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 1, - anon_sym_RPAREN, - [73497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3084), 1, - aux_sym_fk_ref_action_token2, - [73504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, - anon_sym_SEMI, - [73511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - aux_sym_trigger_exec_token1, - [73518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_SEMI, - [73525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3452), 1, - aux_sym_insert_items_token2, - [73532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 1, - anon_sym_RPAREN, - [73539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN, - [73546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - aux_sym_time_expression_token3, - [73553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 1, - aux_sym__interval_fields_token2, - [73560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3458), 1, - anon_sym_SEMI, - [73567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - aux_sym_for_statement_token2, - [73574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 1, - aux_sym__interval_fields_token6, - [73581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - aux_sym__interval_fields_token2, - [73588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3462), 1, - anon_sym_DOLLAR, - [73595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - anon_sym_DOLLAR, - [73602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3466), 1, - anon_sym_SEMI, - [73609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_RPAREN, - [73616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3468), 1, - aux_sym_if_statement_token1, - [73623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2464), 1, - anon_sym_SEMI, - [73630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3470), 1, - aux_sym_for_statement_token2, - [73637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_SEMI, - [73644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_SEMI, - [73651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(834), 1, - anon_sym_RPAREN, - [73658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 1, - aux_sym_create_index_statement_token2, - [73665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - aux_sym_time_expression_token3, - [73672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - aux_sym__interval_fields_token2, - [73679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2477), 1, - anon_sym_SEMI, - [73686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3478), 1, - aux_sym_create_schema_statement_token1, - [73693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - aux_sym__interval_fields_token6, - [73700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3480), 1, - anon_sym_SEMI, - [73707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, - anon_sym_DOLLAR, - [73714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3484), 1, - aux_sym_for_statement_token2, - [73721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3486), 1, - anon_sym_SEMI, - [73728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3488), 1, - aux_sym_for_statement_token2, - [73735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_RPAREN, - [73742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3490), 1, - anon_sym_SEMI, - [73749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, - anon_sym_SEMI, - [73756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - anon_sym_SEMI, - [73763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3496), 1, - sym__identifier, - [73770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - aux_sym_create_table_statement_token2, - [73777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_RPAREN, - [73784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3498), 1, - aux_sym_create_trigger_statement_token1, - [73791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3500), 1, - aux_sym_for_statement_token2, - [73798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym_SEMI, - [73805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_SEMI, - [73812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3506), 1, - anon_sym_SEMI, - [73819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_RPAREN, - [73826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3508), 1, - aux_sym_for_statement_token2, - [73833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2934), 1, - anon_sym_SEMI, - [73840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_SEMI, - [73847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - aux_sym_alter_table_rename_column_token2, - [73854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, - aux_sym_join_item_token3, - [73861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - anon_sym_RPAREN, - [73868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3516), 1, - anon_sym_LPAREN, - [73875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - aux_sym_with_query_item_token1, - [73882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3520), 1, - aux_sym_insert_conflict_token1, - [73889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3522), 1, - anon_sym_RPAREN, - [73896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3524), 1, - anon_sym_SEMI, - [73903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_RPAREN, - [73910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 1, - aux_sym_with_query_item_token1, - [73917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_LPAREN, - [73924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_RPAREN, - [73931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 1, - anon_sym_RPAREN, - [73938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3528), 1, - anon_sym_SEMI, - [73945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3530), 1, - aux_sym_select_statement_token1, - [73952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3532), 1, - ts_builtin_sym_end, - [73959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3534), 1, - aux_sym_alter_column_action_token1, - [73966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - aux_sym_create_schema_statement_token1, - [73973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3538), 1, - aux_sym_time_expression_token2, - [73980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3540), 1, - anon_sym_EQ, - [73987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 1, - aux_sym_join_item_token3, - [73994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3544), 1, - aux_sym_join_item_token3, - [74001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - aux_sym_join_item_token3, - [74008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3546), 1, - anon_sym_LPAREN, - [74015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3548), 1, - anon_sym_RPAREN, - [74022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_grant_targets_token4, - [74029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LPAREN, - [74036] = 2, + [84006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3554), 1, - aux_sym_alter_table_rename_column_token2, - [74043] = 2, + anon_sym_RBRACK, + [84013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3556), 1, - sym__identifier, - [74050] = 2, + anon_sym_DOLLAR, + [84020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3558), 1, anon_sym_SEMI, - [74057] = 2, + [84027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3560), 1, - aux_sym_alter_table_rename_column_token2, - [74064] = 2, + anon_sym_EQ, + [84034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3562), 1, - aux_sym_alter_table_rename_column_token2, - [74071] = 2, + aux_sym_if_not_exists_token1, + [84041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3564), 1, - anon_sym_SEMI, - [74078] = 2, + aux_sym_update_statement_token3, + [84048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3566), 1, - aux_sym_alter_column_action_token1, - [74085] = 2, + anon_sym_DOLLAR, + [84055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3568), 1, - anon_sym_SEMI, - [74092] = 2, + anon_sym_RPAREN, + [84062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_RPAREN, + [84069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3570), 1, - aux_sym_time_expression_token2, - [74099] = 2, - ACTIONS(2491), 1, + anon_sym_RPAREN, + [84076] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3572), 1, - aux_sym_dollar_quote_string_token1, - [74106] = 2, + aux_sym_time_expression_token3, + [84083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2638), 1, + anon_sym_SEMI, + [84090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3574), 1, - aux_sym_join_item_token3, - [74113] = 2, + anon_sym_DOLLAR, + [84097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3576), 1, - aux_sym_select_statement_token1, - [74120] = 2, + sym_number, + [84104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 1, - anon_sym_DOLLAR, - [74127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_RPAREN, - [74134] = 2, + ACTIONS(3075), 1, + aux_sym__interval_fields_token2, + [84111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3578), 1, - sym__identifier, - [74141] = 2, + aux_sym_alter_column_action_token2, + [84118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 1, + anon_sym_RPAREN, + [84125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3075), 1, + aux_sym__interval_fields_token6, + [84132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3580), 1, - aux_sym_time_expression_token3, - [74148] = 2, + anon_sym_RBRACK, + [84139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3582), 1, anon_sym_SEMI, - [74155] = 2, + [84146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3584), 1, - aux_sym_time_expression_token2, - [74162] = 2, + aux_sym_drop_type_statement_token2, + [84153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3586), 1, - aux_sym_get_diagnostics_statement_token3, - [74169] = 2, + aux_sym_update_statement_token2, + [84160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3588), 1, - aux_sym_join_item_token3, - [74176] = 2, + anon_sym_DOLLAR, + [84167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3590), 1, + anon_sym_RPAREN, + [84174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, anon_sym_SEMI, - [74183] = 2, + [84181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3592), 1, - aux_sym_insert_conflict_token2, - [74190] = 2, + aux_sym_update_statement_token2, + [84188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3594), 1, - sym__identifier, - [74197] = 2, + aux_sym_function_return_token1, + [84195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3596), 1, - anon_sym_DOLLAR, - [74204] = 2, + anon_sym_SEMI, + [84202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 1, + anon_sym_RPAREN, + [84209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3598), 1, + aux_sym_insert_conflict_token3, + [84216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, anon_sym_LPAREN, - [74211] = 2, + [84223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3600), 1, - aux_sym_time_expression_token2, - [74218] = 2, + sym__identifier, + [84230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3602), 1, - anon_sym_SEMI, - [74225] = 2, + aux_sym_function_return_token1, + [84237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3604), 1, - aux_sym_join_item_token3, - [74232] = 2, + anon_sym_RBRACK, + [84244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 1, + aux_sym__interval_fields_token6, + [84251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3606), 1, - aux_sym_update_statement_token2, - [74239] = 2, + anon_sym_SEMI, + [84258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2634), 1, + anon_sym_SEMI, + [84265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 1, + anon_sym_RPAREN, + [84272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3608), 1, - anon_sym_SEMI, - [74246] = 2, + aux_sym_time_expression_token2, + [84279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3610), 1, - sym__identifier, - [74253] = 2, + aux_sym_time_expression_token3, + [84286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 1, + aux_sym__interval_fields_token2, + [84293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3612), 1, - aux_sym_insert_conflict_token1, - [74260] = 2, + anon_sym_SEMI, + [84300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3614), 1, - aux_sym_create_table_statement_token2, - [74267] = 2, + anon_sym_LPAREN, + [84307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 1, + aux_sym__interval_fields_token2, + [84314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3616), 1, - aux_sym_time_expression_token2, - [74274] = 2, + aux_sym_if_not_exists_token1, + [84321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3618), 1, - sym_number, - [74281] = 2, + anon_sym_SEMI, + [84328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 1, + aux_sym__interval_fields_token6, + [84335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3620), 1, - aux_sym_join_item_token3, - [74288] = 2, + anon_sym_RBRACK, + [84342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3622), 1, - sym_number, - [74295] = 2, + anon_sym_LPAREN, + [84349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3624), 1, - anon_sym_SEMI, - [74302] = 2, + aux_sym_time_expression_token3, + [84356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3626), 1, - sym__identifier, - [74309] = 2, + anon_sym_DOLLAR, + [84363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3628), 1, - anon_sym_LPAREN, - [74316] = 2, + anon_sym_RPAREN, + [84370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3630), 1, - aux_sym_update_statement_token4, - [74323] = 2, + anon_sym_SEMI, + [84377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3111), 1, + anon_sym_SEMI, + [84384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 1, + anon_sym_RPAREN, + [84391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3632), 1, - aux_sym_time_expression_token2, - [74330] = 2, + aux_sym_for_statement_token2, + [84398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 1, + anon_sym_RPAREN, + [84405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3634), 1, - sym__identifier, - [74337] = 2, + anon_sym_DOLLAR, + [84412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3636), 1, - aux_sym_table_constraint_ty_token3, - [74344] = 2, + aux_sym_insert_conflict_token3, + [84419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3638), 1, - aux_sym_time_expression_token2, - [74351] = 2, + aux_sym_insert_conflict_token4, + [84426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3640), 1, - sym__identifier, - [74358] = 2, + anon_sym_SEMI, + [84433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + aux_sym_select_statement_token1, + [84440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_RPAREN, + [84447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3642), 1, - aux_sym_insert_statement_token2, - [74365] = 2, + aux_sym_if_not_exists_token1, + [84454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3644), 1, - aux_sym_time_expression_token2, - [74372] = 2, + aux_sym_insert_conflict_token1, + [84461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_RPAREN, + [84468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3646), 1, - sym__identifier, - [74379] = 2, + aux_sym_update_statement_token2, + [84475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3648), 1, - aux_sym_table_constraint_ty_token3, - [74386] = 2, + aux_sym_time_expression_token3, + [84482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3650), 1, - aux_sym_time_expression_token2, - [74393] = 2, + aux_sym_conflict_target_token1, + [84489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3652), 1, - sym__identifier, - [74400] = 2, + aux_sym_for_statement_token2, + [84496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3654), 1, - aux_sym_drop_function_statement_token2, - [74407] = 2, + anon_sym_SEMI, + [84503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + aux_sym__interval_fields_token2, + [84510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3656), 1, - aux_sym_time_expression_token2, - [74414] = 2, + aux_sym_if_statement_token1, + [84517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3658), 1, - sym__identifier, - [74421] = 2, + aux_sym_create_function_statement_token1, + [84524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + aux_sym__interval_fields_token6, + [84531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3660), 1, - anon_sym_LPAREN, - [74428] = 2, + anon_sym_RBRACK, + [84538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, - anon_sym_LPAREN, - [74435] = 2, + ACTIONS(962), 1, + anon_sym_RPAREN, + [84545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 1, + sym_number, + [84552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3662), 1, anon_sym_DOLLAR, - [74442] = 2, + [84559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3664), 1, - anon_sym_LPAREN, - [74449] = 2, + anon_sym_RPAREN, + [84566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3141), 1, + sym_number, + [84573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3666), 1, - anon_sym_LPAREN, - [74456] = 2, + sym_number, + [84580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 1, + anon_sym_RPAREN, + [84587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3668), 1, - aux_sym_update_statement_token2, - [74463] = 2, + aux_sym_sequence_increment_token2, + [84594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3670), 1, - anon_sym_DOLLAR, - [74470] = 2, + anon_sym_SEMI, + [84601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3672), 1, - aux_sym_insert_conflict_token1, - [74477] = 2, + anon_sym_SEMI, + [84608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_LPAREN, + [84615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3674), 1, - aux_sym_insert_conflict_token1, - [74484] = 2, + aux_sym_alter_table_rename_column_token2, + [84622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3676), 1, - anon_sym_DOLLAR, - [74491] = 2, + aux_sym_insert_items_token2, + [84629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3678), 1, - anon_sym_SEMI, - [74498] = 2, + anon_sym_LPAREN, + [84636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - anon_sym_LPAREN, - [74505] = 2, + ACTIONS(1016), 1, + anon_sym_RPAREN, + [84643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + aux_sym_insert_conflict_token1, + [84650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3680), 1, - anon_sym_DOLLAR, - [74512] = 2, + aux_sym_time_expression_token3, + [84657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3682), 1, - aux_sym_function_return_token1, - [74519] = 2, + aux_sym_create_table_statement_token2, + [84664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3684), 1, - anon_sym_LPAREN, - [74526] = 2, + aux_sym_table_constraint_ty_token3, + [84671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 1, + aux_sym__interval_fields_token2, + [84678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3686), 1, - anon_sym_DOLLAR, - [74533] = 2, + anon_sym_RPAREN, + [84685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3688), 1, - sym__identifier, - [74540] = 2, + anon_sym_LPAREN, + [84692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 1, + aux_sym__interval_fields_token6, + [84699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3690), 1, - anon_sym_DOLLAR, - [74547] = 2, + aux_sym_create_function_statement_token1, + [84706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3692), 1, - anon_sym_DOLLAR, - [74554] = 2, + anon_sym_RPAREN, + [84713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3684), 1, + aux_sym_alter_column_action_token2, + [84720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3694), 1, anon_sym_DOLLAR, - [74561] = 2, + [84727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3696), 1, - anon_sym_DOLLAR, - [74568] = 2, + anon_sym_RPAREN, + [84734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3698), 1, - anon_sym_DOLLAR, - [74575] = 2, - ACTIONS(2491), 1, + anon_sym_SEMI, + [84741] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3700), 1, - aux_sym_dollar_quote_string_token1, - [74582] = 2, - ACTIONS(2491), 1, + aux_sym_create_schema_statement_token1, + [84748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(932), 1, + anon_sym_RPAREN, + [84755] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3702), 1, - aux_sym_dollar_quote_string_token1, - [74589] = 2, - ACTIONS(2491), 1, + anon_sym_SEMI, + [84762] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3704), 1, - aux_sym_dollar_quote_string_token1, - [74596] = 2, - ACTIONS(2491), 1, + aux_sym_alter_table_rename_column_token2, + [84769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_SEMI, + [84776] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3706), 1, - aux_sym_dollar_quote_string_token1, - [74603] = 2, - ACTIONS(2491), 1, + anon_sym_SEMI, + [84783] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3708), 1, - aux_sym_dollar_quote_string_token1, - [74610] = 2, - ACTIONS(2491), 1, + anon_sym_DOLLAR, + [84790] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3710), 1, - aux_sym_dollar_quote_string_token1, - [74617] = 2, - ACTIONS(2491), 1, + aux_sym_update_statement_token2, + [84797] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3712), 1, - aux_sym_dollar_quote_string_token1, - [74624] = 2, - ACTIONS(2491), 1, + aux_sym_function_return_token1, + [84804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 1, + anon_sym_RPAREN, + [84811] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3714), 1, - aux_sym_dollar_quote_string_token1, - [74631] = 2, - ACTIONS(2491), 1, + aux_sym_function_return_token1, + [84818] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3716), 1, - aux_sym_dollar_quote_string_token1, - [74638] = 2, - ACTIONS(2491), 1, + aux_sym_time_expression_token3, + [84825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, + anon_sym_SEMI, + [84832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + aux_sym__interval_fields_token2, + [84839] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(3718), 1, - aux_sym_dollar_quote_string_token1, - [74645] = 2, + aux_sym_function_return_token1, + [84846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3720), 1, - anon_sym_DOLLAR, - [74652] = 2, + aux_sym_insert_conflict_token1, + [84853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + aux_sym__interval_fields_token6, + [84860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3722), 1, - anon_sym_DOLLAR, - [74659] = 2, + anon_sym_RBRACK, + [84867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3724), 1, - anon_sym_DOLLAR, - [74666] = 2, + anon_sym_SEMI, + [84874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3726), 1, - anon_sym_DOLLAR, - [74673] = 2, + anon_sym_SEMI, + [84881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3728), 1, anon_sym_DOLLAR, - [74680] = 2, + [84888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3730), 1, - anon_sym_DOLLAR, - [74687] = 2, + anon_sym_RPAREN, + [84895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3213), 1, + aux_sym_with_query_item_token1, + [84902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_LPAREN, + [84909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 1, + anon_sym_RPAREN, + [84916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3732), 1, - anon_sym_DOLLAR, - [74694] = 2, + anon_sym_SEMI, + [84923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3734), 1, - anon_sym_DOLLAR, - [74701] = 2, + anon_sym_RPAREN, + [84930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym_SEMI, + [84937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3736), 1, - anon_sym_DOLLAR, - [74708] = 2, + anon_sym_LPAREN, + [84944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3738), 1, - anon_sym_DOLLAR, - [74715] = 2, + aux_sym_drop_function_statement_token1, + [84951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3740), 1, - sym__identifier, - [74722] = 2, + aux_sym_join_item_token3, + [84958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3466), 1, + aux_sym_join_item_token3, + [84965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 1, + anon_sym_RPAREN, + [84972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3742), 1, sym__identifier, - [74729] = 2, + [84979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3744), 1, - sym__identifier, - [74736] = 2, - ACTIONS(3), 1, + aux_sym_time_expression_token3, + [84986] = 2, + ACTIONS(2771), 1, sym_comment, ACTIONS(3746), 1, - sym__identifier, - [74743] = 2, + aux_sym_dollar_quote_string_token1, + [84993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 1, + aux_sym__interval_fields_token2, + [85000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3748), 1, - sym__identifier, - [74750] = 2, + anon_sym_SEMI, + [85007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(942), 1, + anon_sym_RPAREN, + [85014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 1, + aux_sym__interval_fields_token6, + [85021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3750), 1, - sym__identifier, - [74757] = 2, + anon_sym_RBRACK, + [85028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3752), 1, - sym__identifier, - [74764] = 2, + anon_sym_SEMI, + [85035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3754), 1, - sym__identifier, - [74771] = 2, + aux_sym_time_expression_token3, + [85042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3756), 1, - sym__identifier, - [74778] = 2, + anon_sym_DOLLAR, + [85049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3758), 1, + anon_sym_RPAREN, + [85056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_SEMI, + [85063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 1, + anon_sym_LPAREN, + [85070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 1, + anon_sym_RPAREN, + [85077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 1, + aux_sym_insert_conflict_token1, + [85084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_LPAREN, + [85091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 1, + aux_sym_insert_conflict_token3, + [85098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + aux_sym_update_statement_token3, + [85105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3768), 1, + anon_sym_SEMI, + [85112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3770), 1, + aux_sym_for_statement_token2, + [85119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3772), 1, + anon_sym_RPAREN, + [85126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 1, + anon_sym_RPAREN, + [85133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3774), 1, + anon_sym_SEMI, + [85140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3776), 1, + aux_sym_time_expression_token3, + [85147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3778), 1, + aux_sym_if_statement_token1, + [85154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 1, + aux_sym__interval_fields_token2, + [85161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3780), 1, + anon_sym_SEMI, + [85168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 1, + aux_sym_create_schema_statement_token1, + [85175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3184), 1, + aux_sym__interval_fields_token6, + [85182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + anon_sym_RBRACK, + [85189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 1, + anon_sym_SEMI, + [85196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3788), 1, + aux_sym_alter_table_rename_column_token2, + [85203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 1, + anon_sym_DOLLAR, + [85210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + anon_sym_RPAREN, + [85217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3794), 1, + anon_sym_LPAREN, + [85224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LPAREN, + [85231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 1, + anon_sym_RPAREN, + [85238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, + aux_sym_alter_table_rename_column_token2, + [85245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3800), 1, + aux_sym_update_statement_token2, + [85252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + anon_sym_SEMI, + [85259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3802), 1, + aux_sym_function_return_token1, + [85266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + anon_sym_SEMI, + [85273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 1, + anon_sym_SEMI, + [85280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 1, + anon_sym_LPAREN, + [85287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(938), 1, + anon_sym_RPAREN, + [85294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, + anon_sym_SEMI, + [85301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3810), 1, + aux_sym_time_expression_token3, + [85308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + anon_sym_SEMI, + [85315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3226), 1, + aux_sym__interval_fields_token2, + [85322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_LPAREN, + [85329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3816), 1, + sym__identifier, + [85336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3226), 1, + aux_sym__interval_fields_token6, + [85343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3818), 1, + anon_sym_RBRACK, + [85350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 1, + anon_sym_SEMI, + [85357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3820), 1, + anon_sym_SEMI, + [85364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3822), 1, + anon_sym_DOLLAR, + [85371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_RPAREN, + [85378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3826), 1, + anon_sym_LPAREN, + [85385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + aux_sym_table_constraint_ty_token3, + [85392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_RPAREN, + [85399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3830), 1, + aux_sym_alter_column_action_token1, + [85406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3832), 1, + aux_sym_table_constraint_ty_token3, + [85413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3834), 1, + anon_sym_SEMI, + [85420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_SEMI, + [85427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym_EQ, + [85434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3840), 1, + aux_sym_insert_conflict_token3, + [85441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 1, + anon_sym_SEMI, + [85448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + anon_sym_RPAREN, + [85455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_DOLLAR, + [85462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + aux_sym_time_expression_token3, + [85469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 1, + anon_sym_SEMI, + [85476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3242), 1, + aux_sym__interval_fields_token2, + [85483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3850), 1, + aux_sym_for_statement_token2, + [85490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 1, + aux_sym_insert_conflict_token1, + [85497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3242), 1, + aux_sym__interval_fields_token6, + [85504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_RBRACK, + [85511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + aux_sym_if_statement_token1, + [85518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 1, + anon_sym_LPAREN, + [85525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3858), 1, + anon_sym_DOLLAR, + [85532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 1, + anon_sym_RPAREN, + [85539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, + anon_sym_SEMI, + [85546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3864), 1, + sym_number, + [85553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + sym_number, + [85560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 1, + anon_sym_RPAREN, + [85567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 1, + aux_sym_update_statement_token3, + [85574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + anon_sym_RBRACK, + [85581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_SEMI, + [85588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + aux_sym_insert_conflict_token1, + [85595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 1, + anon_sym_RPAREN, + [85602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3878), 1, + aux_sym_update_statement_token2, + [85609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1277), 1, + anon_sym_RPAREN, + [85616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + aux_sym_insert_conflict_token2, + [85623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 1, + anon_sym_RPAREN, + [85630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3882), 1, + anon_sym_LPAREN, + [85637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3884), 1, + anon_sym_SEMI, + [85644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + aux_sym_trigger_scope_token1, + [85651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 1, + aux_sym_fk_ref_action_token2, + [85658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 1, + anon_sym_SEMI, + [85665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(974), 1, + anon_sym_RPAREN, + [85672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + aux_sym_get_diagnostics_statement_token3, + [85679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 1, + anon_sym_DOLLAR, + [85686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3890), 1, + aux_sym_trigger_exec_token1, + [85693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3892), 1, + anon_sym_LPAREN, + [85700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_SEMI, + [85707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 1, + anon_sym_RPAREN, + [85714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym__interval_fields_token6, + [85721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + aux_sym_for_statement_token2, + [85728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_SEMI, + [85735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3900), 1, + aux_sym_if_statement_token1, + [85742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3329), 1, + anon_sym_LPAREN, + [85749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(934), 1, + anon_sym_RPAREN, + [85756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3902), 1, + aux_sym_if_not_exists_token1, + [85763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3904), 1, + anon_sym_SEMI, + [85770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + aux_sym_update_statement_token4, + [85777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 1, + anon_sym_RPAREN, + [85784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3908), 1, + aux_sym_insert_statement_token2, + [85791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 1, + anon_sym_SEMI, + [85798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3912), 1, + anon_sym_SEMI, + [85805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3914), 1, + anon_sym_LBRACK, + [85812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, + aux_sym_alter_column_action_token1, + [85819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2706), 1, + anon_sym_SEMI, + [85826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 1, + aux_sym_time_expression_token2, + [85833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3920), 1, + anon_sym_EQ, + [85840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 1, + aux_sym_alter_table_rename_column_token2, + [85847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, + aux_sym_join_item_token3, + [85854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_LBRACK, + [85861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + aux_sym_for_statement_token2, + [85868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_SEMI, + [85875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_SEMI, + [85882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3934), 1, + sym_number, + [85889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3936), 1, + sym_number, + [85896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3938), 1, + sym__identifier, + [85903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3940), 1, + sym__identifier, + [85910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2688), 1, + anon_sym_SEMI, + [85917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + sym_number, + [85924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3944), 1, + aux_sym_sequence_increment_token2, + [85931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 1, + aux_sym_sequence_increment_token2, + [85938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_SEMI, + [85945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3950), 1, + anon_sym_LBRACK, + [85952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + aux_sym_alter_column_action_token1, + [85959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 1, + aux_sym_for_statement_token2, + [85966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3956), 1, + aux_sym_time_expression_token2, + [85973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3958), 1, + anon_sym_RBRACK, + [85980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3960), 1, + aux_sym_join_item_token3, + [85987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3303), 1, + anon_sym_SEMI, + [85994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3962), 1, + aux_sym_for_statement_token2, + [86001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3964), 1, + aux_sym_insert_conflict_token1, + [86008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3966), 1, + sym_number, + [86015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + sym__identifier, + [86022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3970), 1, + sym_number, + [86029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3972), 1, + anon_sym_LPAREN, + [86036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3974), 1, + anon_sym_SEMI, + [86043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACK, + [86050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + aux_sym_time_expression_token2, + [86057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3980), 1, + anon_sym_LPAREN, + [86064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3982), 1, + aux_sym_join_item_token3, + [86071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3984), 1, + anon_sym_SEMI, + [86078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_SEMI, + [86085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3988), 1, + sym_number, + [86092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 1, + sym__identifier, + [86099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3992), 1, + sym_number, + [86106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3994), 1, + anon_sym_SEMI, + [86113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3996), 1, + aux_sym_update_statement_token3, + [86120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3998), 1, + anon_sym_LBRACK, + [86127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4000), 1, + aux_sym_time_expression_token2, + [86134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4002), 1, + aux_sym_for_statement_token2, + [86141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4004), 1, + aux_sym_join_item_token3, + [86148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4006), 1, + aux_sym_drop_function_statement_token1, + [86155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4008), 1, + anon_sym_SEMI, + [86162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 1, + sym_number, + [86169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + sym__identifier, + [86176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + sym_number, + [86183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4016), 1, + aux_sym_or_replace_token1, + [86190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 1, + aux_sym_grant_targets_token4, + [86197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4020), 1, + anon_sym_LBRACK, + [86204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + aux_sym_time_expression_token2, + [86211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4024), 1, + aux_sym_for_statement_token2, + [86218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4026), 1, + aux_sym_join_item_token3, + [86225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4028), 1, + aux_sym_create_index_statement_token2, + [86232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4030), 1, + anon_sym_SEMI, + [86239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4032), 1, + sym_number, + [86246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 1, + sym__identifier, + [86253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_number, + [86260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3325), 1, + aux_sym_create_table_statement_token2, + [86267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4038), 1, + aux_sym_create_trigger_statement_token1, + [86274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4040), 1, + anon_sym_LBRACK, + [86281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + aux_sym_time_expression_token2, + [86288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4044), 1, + sym_number, + [86295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 1, + sym__identifier, + [86302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4048), 1, + sym_number, + [86309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4050), 1, + aux_sym_select_statement_token1, + [86316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_LBRACK, + [86323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4054), 1, + aux_sym_time_expression_token2, + [86330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4056), 1, + sym_number, + [86337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4058), 1, + sym__identifier, + [86344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4060), 1, + sym_number, + [86351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4062), 1, + anon_sym_SEMI, + [86358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_LBRACK, + [86365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + aux_sym_time_expression_token2, + [86372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 1, + sym_number, + [86379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4070), 1, + sym__identifier, + [86386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, + sym_number, + [86393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4074), 1, + anon_sym_RPAREN, + [86400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 1, + anon_sym_LBRACK, + [86407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, + aux_sym_time_expression_token2, + [86414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + sym_number, + [86421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4082), 1, + sym__identifier, + [86428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4084), 1, + sym_number, + [86435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 1, + anon_sym_LPAREN, + [86442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 1, + anon_sym_LBRACK, + [86449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + aux_sym_time_expression_token2, + [86456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 1, + sym_number, + [86463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4094), 1, + sym__identifier, + [86470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4096), 1, + sym_number, + [86477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 1, + sym_number, + [86484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4100), 1, + sym_number, + [86491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4102), 1, + aux_sym_insert_conflict_token1, + [86498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4104), 1, + aux_sym_with_query_item_token1, + [86505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4106), 1, + anon_sym_DOLLAR, + [86512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_SEMI, + [86519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4110), 1, + ts_builtin_sym_end, + [86526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + aux_sym_join_item_token3, + [86533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_DOLLAR, + [86540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + aux_sym_function_return_token1, + [86547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4118), 1, + aux_sym_select_statement_token1, + [86554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOLLAR, + [86561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 1, + aux_sym_create_table_statement_token2, + [86568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4124), 1, + aux_sym_update_statement_token4, + [86575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 1, + anon_sym_DOLLAR, + [86582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4128), 1, + aux_sym_update_statement_token2, + [86589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 1, + aux_sym_insert_statement_token2, + [86596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4132), 1, + anon_sym_DOLLAR, + [86603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym__interval_fields_token2, + [86610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + anon_sym_DOLLAR, + [86617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_DOLLAR, + [86624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 1, + anon_sym_DOLLAR, + [86631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, + anon_sym_DOLLAR, + [86638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4142), 1, + anon_sym_DOLLAR, + [86645] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4144), 1, + aux_sym_dollar_quote_string_token1, + [86652] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4146), 1, + aux_sym_dollar_quote_string_token1, + [86659] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4148), 1, + aux_sym_dollar_quote_string_token1, + [86666] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4150), 1, + aux_sym_dollar_quote_string_token1, + [86673] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_dollar_quote_string_token1, + [86680] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4154), 1, + aux_sym_dollar_quote_string_token1, + [86687] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4156), 1, + aux_sym_dollar_quote_string_token1, + [86694] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4158), 1, + aux_sym_dollar_quote_string_token1, + [86701] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4160), 1, + aux_sym_dollar_quote_string_token1, + [86708] = 2, + ACTIONS(2771), 1, + sym_comment, + ACTIONS(4162), 1, + aux_sym_dollar_quote_string_token1, + [86715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_DOLLAR, + [86722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_DOLLAR, + [86729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 1, + anon_sym_DOLLAR, + [86736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 1, + anon_sym_DOLLAR, + [86743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_DOLLAR, + [86750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym_DOLLAR, + [86757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 1, + anon_sym_DOLLAR, + [86764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_DOLLAR, + [86771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4180), 1, + anon_sym_DOLLAR, + [86778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4182), 1, + anon_sym_DOLLAR, + [86785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4184), 1, + sym__identifier, + [86792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4186), 1, + sym__identifier, + [86799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4188), 1, + sym__identifier, + [86806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4190), 1, + sym__identifier, + [86813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + sym__identifier, + [86820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4194), 1, + sym__identifier, + [86827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4196), 1, + sym__identifier, + [86834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4198), 1, + sym__identifier, + [86841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + sym__identifier, + [86848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 1, sym__identifier, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 0, - [SMALL_STATE(6)] = 84, - [SMALL_STATE(7)] = 194, - [SMALL_STATE(8)] = 304, - [SMALL_STATE(9)] = 412, - [SMALL_STATE(10)] = 504, - [SMALL_STATE(11)] = 606, - [SMALL_STATE(12)] = 700, - [SMALL_STATE(13)] = 798, - [SMALL_STATE(14)] = 886, - [SMALL_STATE(15)] = 970, - [SMALL_STATE(16)] = 1078, - [SMALL_STATE(17)] = 1160, - [SMALL_STATE(18)] = 1247, - [SMALL_STATE(19)] = 1346, - [SMALL_STATE(20)] = 1455, - [SMALL_STATE(21)] = 1560, - [SMALL_STATE(22)] = 1629, - [SMALL_STATE(23)] = 1698, - [SMALL_STATE(24)] = 1789, - [SMALL_STATE(25)] = 1882, - [SMALL_STATE(26)] = 1977, + [SMALL_STATE(6)] = 82, + [SMALL_STATE(7)] = 174, + [SMALL_STATE(8)] = 262, + [SMALL_STATE(9)] = 336, + [SMALL_STATE(10)] = 446, + [SMALL_STATE(11)] = 542, + [SMALL_STATE(12)] = 648, + [SMALL_STATE(13)] = 732, + [SMALL_STATE(14)] = 826, + [SMALL_STATE(15)] = 926, + [SMALL_STATE(16)] = 1032, + [SMALL_STATE(17)] = 1116, + [SMALL_STATE(18)] = 1200, + [SMALL_STATE(19)] = 1310, + [SMALL_STATE(20)] = 1408, + [SMALL_STATE(21)] = 1496, + [SMALL_STATE(22)] = 1590, + [SMALL_STATE(23)] = 1672, + [SMALL_STATE(24)] = 1756, + [SMALL_STATE(25)] = 1858, + [SMALL_STATE(26)] = 1968, [SMALL_STATE(27)] = 2060, - [SMALL_STATE(28)] = 2165, - [SMALL_STATE(29)] = 2248, - [SMALL_STATE(30)] = 2329, - [SMALL_STATE(31)] = 2395, - [SMALL_STATE(32)] = 2467, - [SMALL_STATE(33)] = 2533, - [SMALL_STATE(34)] = 2647, - [SMALL_STATE(35)] = 2726, - [SMALL_STATE(36)] = 2829, - [SMALL_STATE(37)] = 2926, - [SMALL_STATE(38)] = 3013, - [SMALL_STATE(39)] = 3078, - [SMALL_STATE(40)] = 3155, - [SMALL_STATE(41)] = 3248, - [SMALL_STATE(42)] = 3319, - [SMALL_STATE(43)] = 3398, - [SMALL_STATE(44)] = 3477, - [SMALL_STATE(45)] = 3556, - [SMALL_STATE(46)] = 3639, - [SMALL_STATE(47)] = 3746, - [SMALL_STATE(48)] = 3823, - [SMALL_STATE(49)] = 3926, - [SMALL_STATE(50)] = 4015, - [SMALL_STATE(51)] = 4118, - [SMALL_STATE(52)] = 4213, - [SMALL_STATE(53)] = 4300, - [SMALL_STATE(54)] = 4403, - [SMALL_STATE(55)] = 4486, - [SMALL_STATE(56)] = 4575, - [SMALL_STATE(57)] = 4682, - [SMALL_STATE(58)] = 4773, - [SMALL_STATE(59)] = 4861, - [SMALL_STATE(60)] = 4943, - [SMALL_STATE(61)] = 5009, - [SMALL_STATE(62)] = 5109, - [SMALL_STATE(63)] = 5175, - [SMALL_STATE(64)] = 5275, - [SMALL_STATE(65)] = 5379, - [SMALL_STATE(66)] = 5471, - [SMALL_STATE(67)] = 5537, - [SMALL_STATE(68)] = 5603, - [SMALL_STATE(69)] = 5699, - [SMALL_STATE(70)] = 5785, - [SMALL_STATE(71)] = 5863, - [SMALL_STATE(72)] = 5927, - [SMALL_STATE(73)] = 5991, - [SMALL_STATE(74)] = 6055, - [SMALL_STATE(75)] = 6159, - [SMALL_STATE(76)] = 6237, - [SMALL_STATE(77)] = 6313, - [SMALL_STATE(78)] = 6425, - [SMALL_STATE(79)] = 6489, - [SMALL_STATE(80)] = 6574, - [SMALL_STATE(81)] = 6655, - [SMALL_STATE(82)] = 6760, - [SMALL_STATE(83)] = 6825, - [SMALL_STATE(84)] = 6890, - [SMALL_STATE(85)] = 6955, - [SMALL_STATE(86)] = 7020, - [SMALL_STATE(87)] = 7131, - [SMALL_STATE(88)] = 7232, - [SMALL_STATE(89)] = 7309, - [SMALL_STATE(90)] = 7384, - [SMALL_STATE(91)] = 7461, - [SMALL_STATE(92)] = 7560, - [SMALL_STATE(93)] = 7635, - [SMALL_STATE(94)] = 7736, - [SMALL_STATE(95)] = 7821, - [SMALL_STATE(96)] = 7914, - [SMALL_STATE(97)] = 7991, - [SMALL_STATE(98)] = 8072, - [SMALL_STATE(99)] = 8163, - [SMALL_STATE(100)] = 8250, - [SMALL_STATE(101)] = 8345, - [SMALL_STATE(102)] = 8408, - [SMALL_STATE(103)] = 8471, - [SMALL_STATE(104)] = 8570, - [SMALL_STATE(105)] = 8633, - [SMALL_STATE(106)] = 8696, - [SMALL_STATE(107)] = 8799, - [SMALL_STATE(108)] = 8862, - [SMALL_STATE(109)] = 8925, - [SMALL_STATE(110)] = 8988, - [SMALL_STATE(111)] = 9051, - [SMALL_STATE(112)] = 9114, - [SMALL_STATE(113)] = 9177, - [SMALL_STATE(114)] = 9280, - [SMALL_STATE(115)] = 9343, - [SMALL_STATE(116)] = 9430, - [SMALL_STATE(117)] = 9519, - [SMALL_STATE(118)] = 9596, - [SMALL_STATE(119)] = 9659, - [SMALL_STATE(120)] = 9722, - [SMALL_STATE(121)] = 9785, - [SMALL_STATE(122)] = 9848, - [SMALL_STATE(123)] = 9911, - [SMALL_STATE(124)] = 9974, - [SMALL_STATE(125)] = 10080, - [SMALL_STATE(126)] = 10184, - [SMALL_STATE(127)] = 10246, - [SMALL_STATE(128)] = 10336, - [SMALL_STATE(129)] = 10398, - [SMALL_STATE(130)] = 10460, - [SMALL_STATE(131)] = 10522, - [SMALL_STATE(132)] = 10584, - [SMALL_STATE(133)] = 10646, - [SMALL_STATE(134)] = 10726, - [SMALL_STATE(135)] = 10802, - [SMALL_STATE(136)] = 10864, - [SMALL_STATE(137)] = 10940, - [SMALL_STATE(138)] = 11042, - [SMALL_STATE(139)] = 11104, - [SMALL_STATE(140)] = 11166, - [SMALL_STATE(141)] = 11228, - [SMALL_STATE(142)] = 11308, - [SMALL_STATE(143)] = 11396, - [SMALL_STATE(144)] = 11458, - [SMALL_STATE(145)] = 11544, - [SMALL_STATE(146)] = 11606, - [SMALL_STATE(147)] = 11698, - [SMALL_STATE(148)] = 11782, - [SMALL_STATE(149)] = 11882, - [SMALL_STATE(150)] = 11944, - [SMALL_STATE(151)] = 12006, - [SMALL_STATE(152)] = 12106, - [SMALL_STATE(153)] = 12190, - [SMALL_STATE(154)] = 12252, - [SMALL_STATE(155)] = 12326, - [SMALL_STATE(156)] = 12388, - [SMALL_STATE(157)] = 12450, - [SMALL_STATE(158)] = 12526, - [SMALL_STATE(159)] = 12588, - [SMALL_STATE(160)] = 12650, - [SMALL_STATE(161)] = 12724, - [SMALL_STATE(162)] = 12800, - [SMALL_STATE(163)] = 12894, - [SMALL_STATE(164)] = 12980, - [SMALL_STATE(165)] = 13082, - [SMALL_STATE(166)] = 13188, - [SMALL_STATE(167)] = 13288, - [SMALL_STATE(168)] = 13388, - [SMALL_STATE(169)] = 13449, - [SMALL_STATE(170)] = 13510, - [SMALL_STATE(171)] = 13571, - [SMALL_STATE(172)] = 13672, - [SMALL_STATE(173)] = 13739, - [SMALL_STATE(174)] = 13806, - [SMALL_STATE(175)] = 13917, - [SMALL_STATE(176)] = 13978, - [SMALL_STATE(177)] = 14039, - [SMALL_STATE(178)] = 14140, - [SMALL_STATE(179)] = 14200, - [SMALL_STATE(180)] = 14304, - [SMALL_STATE(181)] = 14370, - [SMALL_STATE(182)] = 14474, - [SMALL_STATE(183)] = 14535, - [SMALL_STATE(184)] = 14634, - [SMALL_STATE(185)] = 14737, - [SMALL_STATE(186)] = 14798, - [SMALL_STATE(187)] = 14859, - [SMALL_STATE(188)] = 14924, - [SMALL_STATE(189)] = 14983, - [SMALL_STATE(190)] = 15044, - [SMALL_STATE(191)] = 15103, - [SMALL_STATE(192)] = 15168, - [SMALL_STATE(193)] = 15229, - [SMALL_STATE(194)] = 15290, - [SMALL_STATE(195)] = 15351, - [SMALL_STATE(196)] = 15412, - [SMALL_STATE(197)] = 15470, - [SMALL_STATE(198)] = 15528, - [SMALL_STATE(199)] = 15656, - [SMALL_STATE(200)] = 15714, - [SMALL_STATE(201)] = 15772, - [SMALL_STATE(202)] = 15830, - [SMALL_STATE(203)] = 15888, - [SMALL_STATE(204)] = 15946, - [SMALL_STATE(205)] = 16004, - [SMALL_STATE(206)] = 16062, - [SMALL_STATE(207)] = 16126, - [SMALL_STATE(208)] = 16184, - [SMALL_STATE(209)] = 16242, - [SMALL_STATE(210)] = 16300, - [SMALL_STATE(211)] = 16358, - [SMALL_STATE(212)] = 16416, - [SMALL_STATE(213)] = 16474, - [SMALL_STATE(214)] = 16532, - [SMALL_STATE(215)] = 16590, - [SMALL_STATE(216)] = 16648, - [SMALL_STATE(217)] = 16706, - [SMALL_STATE(218)] = 16770, - [SMALL_STATE(219)] = 16828, - [SMALL_STATE(220)] = 16956, - [SMALL_STATE(221)] = 17014, - [SMALL_STATE(222)] = 17072, - [SMALL_STATE(223)] = 17130, - [SMALL_STATE(224)] = 17188, - [SMALL_STATE(225)] = 17246, - [SMALL_STATE(226)] = 17304, - [SMALL_STATE(227)] = 17362, - [SMALL_STATE(228)] = 17420, - [SMALL_STATE(229)] = 17478, - [SMALL_STATE(230)] = 17536, - [SMALL_STATE(231)] = 17594, - [SMALL_STATE(232)] = 17652, - [SMALL_STATE(233)] = 17710, - [SMALL_STATE(234)] = 17768, - [SMALL_STATE(235)] = 17828, - [SMALL_STATE(236)] = 17888, - [SMALL_STATE(237)] = 17948, - [SMALL_STATE(238)] = 18006, - [SMALL_STATE(239)] = 18066, - [SMALL_STATE(240)] = 18167, - [SMALL_STATE(241)] = 18268, - [SMALL_STATE(242)] = 18369, - [SMALL_STATE(243)] = 18470, - [SMALL_STATE(244)] = 18571, - [SMALL_STATE(245)] = 18628, - [SMALL_STATE(246)] = 18685, - [SMALL_STATE(247)] = 18742, - [SMALL_STATE(248)] = 18843, - [SMALL_STATE(249)] = 18944, - [SMALL_STATE(250)] = 19049, - [SMALL_STATE(251)] = 19106, - [SMALL_STATE(252)] = 19163, - [SMALL_STATE(253)] = 19220, - [SMALL_STATE(254)] = 19277, - [SMALL_STATE(255)] = 19378, - [SMALL_STATE(256)] = 19479, - [SMALL_STATE(257)] = 19580, - [SMALL_STATE(258)] = 19681, - [SMALL_STATE(259)] = 19738, - [SMALL_STATE(260)] = 19839, - [SMALL_STATE(261)] = 19896, - [SMALL_STATE(262)] = 19997, - [SMALL_STATE(263)] = 20098, - [SMALL_STATE(264)] = 20155, - [SMALL_STATE(265)] = 20256, - [SMALL_STATE(266)] = 20313, - [SMALL_STATE(267)] = 20370, - [SMALL_STATE(268)] = 20471, - [SMALL_STATE(269)] = 20528, - [SMALL_STATE(270)] = 20629, - [SMALL_STATE(271)] = 20686, - [SMALL_STATE(272)] = 20787, - [SMALL_STATE(273)] = 20888, - [SMALL_STATE(274)] = 20945, - [SMALL_STATE(275)] = 21004, - [SMALL_STATE(276)] = 21063, - [SMALL_STATE(277)] = 21122, - [SMALL_STATE(278)] = 21181, - [SMALL_STATE(279)] = 21240, - [SMALL_STATE(280)] = 21337, - [SMALL_STATE(281)] = 21396, - [SMALL_STATE(282)] = 21455, - [SMALL_STATE(283)] = 21514, - [SMALL_STATE(284)] = 21570, - [SMALL_STATE(285)] = 21644, - [SMALL_STATE(286)] = 21738, - [SMALL_STATE(287)] = 21808, - [SMALL_STATE(288)] = 21878, - [SMALL_STATE(289)] = 21976, - [SMALL_STATE(290)] = 22044, - [SMALL_STATE(291)] = 22100, - [SMALL_STATE(292)] = 22186, - [SMALL_STATE(293)] = 22266, - [SMALL_STATE(294)] = 22360, - [SMALL_STATE(295)] = 22442, - [SMALL_STATE(296)] = 22520, - [SMALL_STATE(297)] = 22576, - [SMALL_STATE(298)] = 22634, - [SMALL_STATE(299)] = 22692, - [SMALL_STATE(300)] = 22750, - [SMALL_STATE(301)] = 22808, - [SMALL_STATE(302)] = 22866, - [SMALL_STATE(303)] = 22922, - [SMALL_STATE(304)] = 22980, - [SMALL_STATE(305)] = 23038, - [SMALL_STATE(306)] = 23094, - [SMALL_STATE(307)] = 23152, - [SMALL_STATE(308)] = 23208, - [SMALL_STATE(309)] = 23264, - [SMALL_STATE(310)] = 23320, - [SMALL_STATE(311)] = 23376, - [SMALL_STATE(312)] = 23480, - [SMALL_STATE(313)] = 23536, - [SMALL_STATE(314)] = 23592, - [SMALL_STATE(315)] = 23648, - [SMALL_STATE(316)] = 23704, - [SMALL_STATE(317)] = 23760, - [SMALL_STATE(318)] = 23816, - [SMALL_STATE(319)] = 23872, - [SMALL_STATE(320)] = 23928, - [SMALL_STATE(321)] = 23984, - [SMALL_STATE(322)] = 24040, - [SMALL_STATE(323)] = 24138, - [SMALL_STATE(324)] = 24240, - [SMALL_STATE(325)] = 24336, - [SMALL_STATE(326)] = 24462, - [SMALL_STATE(327)] = 24518, - [SMALL_STATE(328)] = 24574, - [SMALL_STATE(329)] = 24630, - [SMALL_STATE(330)] = 24686, - [SMALL_STATE(331)] = 24742, - [SMALL_STATE(332)] = 24798, - [SMALL_STATE(333)] = 24854, - [SMALL_STATE(334)] = 24910, - [SMALL_STATE(335)] = 24966, - [SMALL_STATE(336)] = 25064, - [SMALL_STATE(337)] = 25120, - [SMALL_STATE(338)] = 25218, - [SMALL_STATE(339)] = 25274, - [SMALL_STATE(340)] = 25400, - [SMALL_STATE(341)] = 25456, - [SMALL_STATE(342)] = 25554, - [SMALL_STATE(343)] = 25648, - [SMALL_STATE(344)] = 25704, - [SMALL_STATE(345)] = 25760, - [SMALL_STATE(346)] = 25815, - [SMALL_STATE(347)] = 25870, - [SMALL_STATE(348)] = 25925, - [SMALL_STATE(349)] = 25980, - [SMALL_STATE(350)] = 26035, - [SMALL_STATE(351)] = 26090, - [SMALL_STATE(352)] = 26215, - [SMALL_STATE(353)] = 26270, - [SMALL_STATE(354)] = 26325, - [SMALL_STATE(355)] = 26380, - [SMALL_STATE(356)] = 26447, - [SMALL_STATE(357)] = 26502, - [SMALL_STATE(358)] = 26571, - [SMALL_STATE(359)] = 26664, - [SMALL_STATE(360)] = 26719, - [SMALL_STATE(361)] = 26774, - [SMALL_STATE(362)] = 26829, - [SMALL_STATE(363)] = 26884, - [SMALL_STATE(364)] = 26939, - [SMALL_STATE(365)] = 26994, - [SMALL_STATE(366)] = 27049, - [SMALL_STATE(367)] = 27104, - [SMALL_STATE(368)] = 27173, - [SMALL_STATE(369)] = 27246, - [SMALL_STATE(370)] = 27301, - [SMALL_STATE(371)] = 27382, - [SMALL_STATE(372)] = 27437, - [SMALL_STATE(373)] = 27516, - [SMALL_STATE(374)] = 27601, - [SMALL_STATE(375)] = 27678, - [SMALL_STATE(376)] = 27771, - [SMALL_STATE(377)] = 27826, - [SMALL_STATE(378)] = 27881, - [SMALL_STATE(379)] = 27936, - [SMALL_STATE(380)] = 27991, - [SMALL_STATE(381)] = 28046, - [SMALL_STATE(382)] = 28143, - [SMALL_STATE(383)] = 28198, - [SMALL_STATE(384)] = 28253, - [SMALL_STATE(385)] = 28308, - [SMALL_STATE(386)] = 28363, - [SMALL_STATE(387)] = 28418, - [SMALL_STATE(388)] = 28473, - [SMALL_STATE(389)] = 28598, - [SMALL_STATE(390)] = 28653, - [SMALL_STATE(391)] = 28708, - [SMALL_STATE(392)] = 28763, - [SMALL_STATE(393)] = 28818, - [SMALL_STATE(394)] = 28910, - [SMALL_STATE(395)] = 28966, - [SMALL_STATE(396)] = 29060, - [SMALL_STATE(397)] = 29156, - [SMALL_STATE(398)] = 29210, - [SMALL_STATE(399)] = 29266, - [SMALL_STATE(400)] = 29320, - [SMALL_STATE(401)] = 29415, - [SMALL_STATE(402)] = 29510, - [SMALL_STATE(403)] = 29605, - [SMALL_STATE(404)] = 29700, - [SMALL_STATE(405)] = 29795, - [SMALL_STATE(406)] = 29890, - [SMALL_STATE(407)] = 29985, - [SMALL_STATE(408)] = 30080, - [SMALL_STATE(409)] = 30175, - [SMALL_STATE(410)] = 30266, - [SMALL_STATE(411)] = 30361, - [SMALL_STATE(412)] = 30456, - [SMALL_STATE(413)] = 30551, - [SMALL_STATE(414)] = 30646, - [SMALL_STATE(415)] = 30741, - [SMALL_STATE(416)] = 30836, - [SMALL_STATE(417)] = 30931, - [SMALL_STATE(418)] = 31026, - [SMALL_STATE(419)] = 31121, - [SMALL_STATE(420)] = 31216, - [SMALL_STATE(421)] = 31311, - [SMALL_STATE(422)] = 31406, - [SMALL_STATE(423)] = 31501, - [SMALL_STATE(424)] = 31596, - [SMALL_STATE(425)] = 31691, - [SMALL_STATE(426)] = 31786, - [SMALL_STATE(427)] = 31881, - [SMALL_STATE(428)] = 31976, - [SMALL_STATE(429)] = 32071, - [SMALL_STATE(430)] = 32166, - [SMALL_STATE(431)] = 32261, - [SMALL_STATE(432)] = 32356, - [SMALL_STATE(433)] = 32451, - [SMALL_STATE(434)] = 32541, - [SMALL_STATE(435)] = 32633, - [SMALL_STATE(436)] = 32723, - [SMALL_STATE(437)] = 32815, - [SMALL_STATE(438)] = 32907, - [SMALL_STATE(439)] = 32959, - [SMALL_STATE(440)] = 33017, - [SMALL_STATE(441)] = 33107, - [SMALL_STATE(442)] = 33196, - [SMALL_STATE(443)] = 33285, - [SMALL_STATE(444)] = 33374, - [SMALL_STATE(445)] = 33463, - [SMALL_STATE(446)] = 33552, - [SMALL_STATE(447)] = 33641, - [SMALL_STATE(448)] = 33730, - [SMALL_STATE(449)] = 33819, - [SMALL_STATE(450)] = 33908, - [SMALL_STATE(451)] = 33959, - [SMALL_STATE(452)] = 34048, - [SMALL_STATE(453)] = 34105, - [SMALL_STATE(454)] = 34194, - [SMALL_STATE(455)] = 34283, - [SMALL_STATE(456)] = 34372, - [SMALL_STATE(457)] = 34461, - [SMALL_STATE(458)] = 34550, - [SMALL_STATE(459)] = 34639, - [SMALL_STATE(460)] = 34728, - [SMALL_STATE(461)] = 34817, - [SMALL_STATE(462)] = 34869, - [SMALL_STATE(463)] = 34921, - [SMALL_STATE(464)] = 34973, - [SMALL_STATE(465)] = 35025, - [SMALL_STATE(466)] = 35074, - [SMALL_STATE(467)] = 35125, - [SMALL_STATE(468)] = 35174, - [SMALL_STATE(469)] = 35223, - [SMALL_STATE(470)] = 35272, - [SMALL_STATE(471)] = 35321, - [SMALL_STATE(472)] = 35370, - [SMALL_STATE(473)] = 35419, - [SMALL_STATE(474)] = 35468, - [SMALL_STATE(475)] = 35517, - [SMALL_STATE(476)] = 35566, - [SMALL_STATE(477)] = 35617, - [SMALL_STATE(478)] = 35666, - [SMALL_STATE(479)] = 35717, - [SMALL_STATE(480)] = 35766, - [SMALL_STATE(481)] = 35815, - [SMALL_STATE(482)] = 35864, - [SMALL_STATE(483)] = 35913, - [SMALL_STATE(484)] = 35962, - [SMALL_STATE(485)] = 36011, - [SMALL_STATE(486)] = 36060, - [SMALL_STATE(487)] = 36111, - [SMALL_STATE(488)] = 36159, - [SMALL_STATE(489)] = 36207, - [SMALL_STATE(490)] = 36255, - [SMALL_STATE(491)] = 36303, - [SMALL_STATE(492)] = 36351, - [SMALL_STATE(493)] = 36399, - [SMALL_STATE(494)] = 36447, - [SMALL_STATE(495)] = 36495, - [SMALL_STATE(496)] = 36543, - [SMALL_STATE(497)] = 36591, - [SMALL_STATE(498)] = 36639, - [SMALL_STATE(499)] = 36687, - [SMALL_STATE(500)] = 36735, - [SMALL_STATE(501)] = 36783, - [SMALL_STATE(502)] = 36831, - [SMALL_STATE(503)] = 36879, - [SMALL_STATE(504)] = 36927, - [SMALL_STATE(505)] = 36975, - [SMALL_STATE(506)] = 37016, - [SMALL_STATE(507)] = 37057, - [SMALL_STATE(508)] = 37098, - [SMALL_STATE(509)] = 37182, - [SMALL_STATE(510)] = 37266, - [SMALL_STATE(511)] = 37346, - [SMALL_STATE(512)] = 37426, - [SMALL_STATE(513)] = 37506, - [SMALL_STATE(514)] = 37586, - [SMALL_STATE(515)] = 37666, - [SMALL_STATE(516)] = 37746, - [SMALL_STATE(517)] = 37826, - [SMALL_STATE(518)] = 37906, - [SMALL_STATE(519)] = 37986, - [SMALL_STATE(520)] = 38066, - [SMALL_STATE(521)] = 38146, - [SMALL_STATE(522)] = 38226, - [SMALL_STATE(523)] = 38306, - [SMALL_STATE(524)] = 38386, - [SMALL_STATE(525)] = 38466, - [SMALL_STATE(526)] = 38546, - [SMALL_STATE(527)] = 38626, - [SMALL_STATE(528)] = 38703, - [SMALL_STATE(529)] = 38780, - [SMALL_STATE(530)] = 38857, - [SMALL_STATE(531)] = 38934, - [SMALL_STATE(532)] = 39001, - [SMALL_STATE(533)] = 39078, - [SMALL_STATE(534)] = 39155, - [SMALL_STATE(535)] = 39222, - [SMALL_STATE(536)] = 39299, - [SMALL_STATE(537)] = 39376, - [SMALL_STATE(538)] = 39453, - [SMALL_STATE(539)] = 39530, - [SMALL_STATE(540)] = 39607, - [SMALL_STATE(541)] = 39684, - [SMALL_STATE(542)] = 39758, - [SMALL_STATE(543)] = 39829, - [SMALL_STATE(544)] = 39900, - [SMALL_STATE(545)] = 39971, - [SMALL_STATE(546)] = 40042, - [SMALL_STATE(547)] = 40113, - [SMALL_STATE(548)] = 40184, - [SMALL_STATE(549)] = 40255, - [SMALL_STATE(550)] = 40323, - [SMALL_STATE(551)] = 40391, - [SMALL_STATE(552)] = 40459, - [SMALL_STATE(553)] = 40527, - [SMALL_STATE(554)] = 40595, - [SMALL_STATE(555)] = 40663, - [SMALL_STATE(556)] = 40731, - [SMALL_STATE(557)] = 40799, - [SMALL_STATE(558)] = 40867, - [SMALL_STATE(559)] = 40935, - [SMALL_STATE(560)] = 41003, - [SMALL_STATE(561)] = 41071, - [SMALL_STATE(562)] = 41139, - [SMALL_STATE(563)] = 41207, - [SMALL_STATE(564)] = 41275, - [SMALL_STATE(565)] = 41343, - [SMALL_STATE(566)] = 41411, - [SMALL_STATE(567)] = 41479, - [SMALL_STATE(568)] = 41547, - [SMALL_STATE(569)] = 41615, - [SMALL_STATE(570)] = 41680, - [SMALL_STATE(571)] = 41745, - [SMALL_STATE(572)] = 41810, - [SMALL_STATE(573)] = 41875, - [SMALL_STATE(574)] = 41940, - [SMALL_STATE(575)] = 42005, - [SMALL_STATE(576)] = 42070, - [SMALL_STATE(577)] = 42135, - [SMALL_STATE(578)] = 42200, - [SMALL_STATE(579)] = 42265, - [SMALL_STATE(580)] = 42330, - [SMALL_STATE(581)] = 42395, - [SMALL_STATE(582)] = 42460, - [SMALL_STATE(583)] = 42525, - [SMALL_STATE(584)] = 42590, - [SMALL_STATE(585)] = 42655, - [SMALL_STATE(586)] = 42720, - [SMALL_STATE(587)] = 42785, - [SMALL_STATE(588)] = 42850, - [SMALL_STATE(589)] = 42915, - [SMALL_STATE(590)] = 42980, - [SMALL_STATE(591)] = 43045, - [SMALL_STATE(592)] = 43110, - [SMALL_STATE(593)] = 43175, - [SMALL_STATE(594)] = 43240, - [SMALL_STATE(595)] = 43305, - [SMALL_STATE(596)] = 43370, - [SMALL_STATE(597)] = 43435, - [SMALL_STATE(598)] = 43500, - [SMALL_STATE(599)] = 43565, - [SMALL_STATE(600)] = 43630, - [SMALL_STATE(601)] = 43695, - [SMALL_STATE(602)] = 43760, - [SMALL_STATE(603)] = 43825, - [SMALL_STATE(604)] = 43890, - [SMALL_STATE(605)] = 43955, - [SMALL_STATE(606)] = 44020, - [SMALL_STATE(607)] = 44085, - [SMALL_STATE(608)] = 44150, - [SMALL_STATE(609)] = 44215, - [SMALL_STATE(610)] = 44280, - [SMALL_STATE(611)] = 44345, - [SMALL_STATE(612)] = 44410, - [SMALL_STATE(613)] = 44475, - [SMALL_STATE(614)] = 44540, - [SMALL_STATE(615)] = 44605, - [SMALL_STATE(616)] = 44670, - [SMALL_STATE(617)] = 44735, - [SMALL_STATE(618)] = 44800, - [SMALL_STATE(619)] = 44865, - [SMALL_STATE(620)] = 44930, - [SMALL_STATE(621)] = 44995, - [SMALL_STATE(622)] = 45060, - [SMALL_STATE(623)] = 45125, - [SMALL_STATE(624)] = 45190, - [SMALL_STATE(625)] = 45255, - [SMALL_STATE(626)] = 45320, - [SMALL_STATE(627)] = 45385, - [SMALL_STATE(628)] = 45450, - [SMALL_STATE(629)] = 45515, - [SMALL_STATE(630)] = 45580, - [SMALL_STATE(631)] = 45645, - [SMALL_STATE(632)] = 45710, - [SMALL_STATE(633)] = 45775, - [SMALL_STATE(634)] = 45840, - [SMALL_STATE(635)] = 45905, - [SMALL_STATE(636)] = 45970, - [SMALL_STATE(637)] = 46035, - [SMALL_STATE(638)] = 46100, - [SMALL_STATE(639)] = 46165, - [SMALL_STATE(640)] = 46230, - [SMALL_STATE(641)] = 46295, - [SMALL_STATE(642)] = 46360, - [SMALL_STATE(643)] = 46425, - [SMALL_STATE(644)] = 46490, - [SMALL_STATE(645)] = 46555, - [SMALL_STATE(646)] = 46620, - [SMALL_STATE(647)] = 46685, - [SMALL_STATE(648)] = 46750, - [SMALL_STATE(649)] = 46815, - [SMALL_STATE(650)] = 46880, - [SMALL_STATE(651)] = 46945, - [SMALL_STATE(652)] = 47010, - [SMALL_STATE(653)] = 47075, - [SMALL_STATE(654)] = 47140, - [SMALL_STATE(655)] = 47205, - [SMALL_STATE(656)] = 47270, - [SMALL_STATE(657)] = 47335, - [SMALL_STATE(658)] = 47400, - [SMALL_STATE(659)] = 47465, - [SMALL_STATE(660)] = 47530, - [SMALL_STATE(661)] = 47595, - [SMALL_STATE(662)] = 47660, - [SMALL_STATE(663)] = 47725, - [SMALL_STATE(664)] = 47790, - [SMALL_STATE(665)] = 47855, - [SMALL_STATE(666)] = 47920, - [SMALL_STATE(667)] = 47985, - [SMALL_STATE(668)] = 48050, - [SMALL_STATE(669)] = 48115, - [SMALL_STATE(670)] = 48180, - [SMALL_STATE(671)] = 48245, - [SMALL_STATE(672)] = 48310, - [SMALL_STATE(673)] = 48375, - [SMALL_STATE(674)] = 48440, - [SMALL_STATE(675)] = 48505, - [SMALL_STATE(676)] = 48570, - [SMALL_STATE(677)] = 48635, - [SMALL_STATE(678)] = 48700, - [SMALL_STATE(679)] = 48765, - [SMALL_STATE(680)] = 48830, - [SMALL_STATE(681)] = 48895, - [SMALL_STATE(682)] = 48960, - [SMALL_STATE(683)] = 49025, - [SMALL_STATE(684)] = 49090, - [SMALL_STATE(685)] = 49155, - [SMALL_STATE(686)] = 49220, - [SMALL_STATE(687)] = 49285, - [SMALL_STATE(688)] = 49350, - [SMALL_STATE(689)] = 49415, - [SMALL_STATE(690)] = 49480, - [SMALL_STATE(691)] = 49545, - [SMALL_STATE(692)] = 49610, - [SMALL_STATE(693)] = 49675, - [SMALL_STATE(694)] = 49740, - [SMALL_STATE(695)] = 49805, - [SMALL_STATE(696)] = 49870, - [SMALL_STATE(697)] = 49935, - [SMALL_STATE(698)] = 50000, - [SMALL_STATE(699)] = 50065, - [SMALL_STATE(700)] = 50130, - [SMALL_STATE(701)] = 50195, - [SMALL_STATE(702)] = 50260, - [SMALL_STATE(703)] = 50325, - [SMALL_STATE(704)] = 50390, - [SMALL_STATE(705)] = 50455, - [SMALL_STATE(706)] = 50520, - [SMALL_STATE(707)] = 50585, - [SMALL_STATE(708)] = 50650, - [SMALL_STATE(709)] = 50715, - [SMALL_STATE(710)] = 50780, - [SMALL_STATE(711)] = 50845, - [SMALL_STATE(712)] = 50910, - [SMALL_STATE(713)] = 50975, - [SMALL_STATE(714)] = 51040, - [SMALL_STATE(715)] = 51108, - [SMALL_STATE(716)] = 51176, - [SMALL_STATE(717)] = 51244, - [SMALL_STATE(718)] = 51312, - [SMALL_STATE(719)] = 51345, - [SMALL_STATE(720)] = 51384, - [SMALL_STATE(721)] = 51417, - [SMALL_STATE(722)] = 51448, - [SMALL_STATE(723)] = 51510, - [SMALL_STATE(724)] = 51552, - [SMALL_STATE(725)] = 51620, - [SMALL_STATE(726)] = 51652, - [SMALL_STATE(727)] = 51714, - [SMALL_STATE(728)] = 51750, - [SMALL_STATE(729)] = 51782, - [SMALL_STATE(730)] = 51824, - [SMALL_STATE(731)] = 51866, - [SMALL_STATE(732)] = 51896, - [SMALL_STATE(733)] = 51964, - [SMALL_STATE(734)] = 52032, - [SMALL_STATE(735)] = 52100, - [SMALL_STATE(736)] = 52162, - [SMALL_STATE(737)] = 52224, - [SMALL_STATE(738)] = 52251, - [SMALL_STATE(739)] = 52318, - [SMALL_STATE(740)] = 52385, - [SMALL_STATE(741)] = 52412, - [SMALL_STATE(742)] = 52479, - [SMALL_STATE(743)] = 52508, - [SMALL_STATE(744)] = 52537, - [SMALL_STATE(745)] = 52570, - [SMALL_STATE(746)] = 52607, - [SMALL_STATE(747)] = 52634, - [SMALL_STATE(748)] = 52661, - [SMALL_STATE(749)] = 52688, - [SMALL_STATE(750)] = 52717, - [SMALL_STATE(751)] = 52744, - [SMALL_STATE(752)] = 52771, - [SMALL_STATE(753)] = 52838, - [SMALL_STATE(754)] = 52865, - [SMALL_STATE(755)] = 52905, - [SMALL_STATE(756)] = 52933, - [SMALL_STATE(757)] = 52989, - [SMALL_STATE(758)] = 53045, - [SMALL_STATE(759)] = 53075, - [SMALL_STATE(760)] = 53105, - [SMALL_STATE(761)] = 53145, - [SMALL_STATE(762)] = 53207, - [SMALL_STATE(763)] = 53263, - [SMALL_STATE(764)] = 53299, - [SMALL_STATE(765)] = 53361, - [SMALL_STATE(766)] = 53417, - [SMALL_STATE(767)] = 53473, - [SMALL_STATE(768)] = 53507, - [SMALL_STATE(769)] = 53535, - [SMALL_STATE(770)] = 53597, - [SMALL_STATE(771)] = 53637, - [SMALL_STATE(772)] = 53699, - [SMALL_STATE(773)] = 53730, - [SMALL_STATE(774)] = 53757, - [SMALL_STATE(775)] = 53802, - [SMALL_STATE(776)] = 53847, - [SMALL_STATE(777)] = 53908, - [SMALL_STATE(778)] = 53953, - [SMALL_STATE(779)] = 54014, - [SMALL_STATE(780)] = 54059, - [SMALL_STATE(781)] = 54086, - [SMALL_STATE(782)] = 54119, - [SMALL_STATE(783)] = 54180, - [SMALL_STATE(784)] = 54225, - [SMALL_STATE(785)] = 54252, - [SMALL_STATE(786)] = 54279, - [SMALL_STATE(787)] = 54324, - [SMALL_STATE(788)] = 54369, - [SMALL_STATE(789)] = 54408, - [SMALL_STATE(790)] = 54447, - [SMALL_STATE(791)] = 54486, - [SMALL_STATE(792)] = 54547, - [SMALL_STATE(793)] = 54576, - [SMALL_STATE(794)] = 54605, - [SMALL_STATE(795)] = 54661, - [SMALL_STATE(796)] = 54717, - [SMALL_STATE(797)] = 54747, - [SMALL_STATE(798)] = 54803, - [SMALL_STATE(799)] = 54831, - [SMALL_STATE(800)] = 54857, - [SMALL_STATE(801)] = 54883, - [SMALL_STATE(802)] = 54909, - [SMALL_STATE(803)] = 54965, - [SMALL_STATE(804)] = 55021, - [SMALL_STATE(805)] = 55076, - [SMALL_STATE(806)] = 55123, - [SMALL_STATE(807)] = 55154, - [SMALL_STATE(808)] = 55209, - [SMALL_STATE(809)] = 55256, - [SMALL_STATE(810)] = 55303, - [SMALL_STATE(811)] = 55358, - [SMALL_STATE(812)] = 55413, - [SMALL_STATE(813)] = 55468, - [SMALL_STATE(814)] = 55515, - [SMALL_STATE(815)] = 55548, - [SMALL_STATE(816)] = 55595, - [SMALL_STATE(817)] = 55642, - [SMALL_STATE(818)] = 55669, - [SMALL_STATE(819)] = 55698, - [SMALL_STATE(820)] = 55730, - [SMALL_STATE(821)] = 55760, - [SMALL_STATE(822)] = 55796, - [SMALL_STATE(823)] = 55822, - [SMALL_STATE(824)] = 55844, - [SMALL_STATE(825)] = 55868, - [SMALL_STATE(826)] = 55894, - [SMALL_STATE(827)] = 55930, - [SMALL_STATE(828)] = 55952, - [SMALL_STATE(829)] = 55978, - [SMALL_STATE(830)] = 56004, - [SMALL_STATE(831)] = 56030, - [SMALL_STATE(832)] = 56052, - [SMALL_STATE(833)] = 56074, - [SMALL_STATE(834)] = 56110, - [SMALL_STATE(835)] = 56136, - [SMALL_STATE(836)] = 56183, - [SMALL_STATE(837)] = 56208, - [SMALL_STATE(838)] = 56249, - [SMALL_STATE(839)] = 56290, - [SMALL_STATE(840)] = 56331, - [SMALL_STATE(841)] = 56354, - [SMALL_STATE(842)] = 56395, - [SMALL_STATE(843)] = 56420, - [SMALL_STATE(844)] = 56445, - [SMALL_STATE(845)] = 56486, - [SMALL_STATE(846)] = 56509, - [SMALL_STATE(847)] = 56534, - [SMALL_STATE(848)] = 56569, - [SMALL_STATE(849)] = 56604, - [SMALL_STATE(850)] = 56625, - [SMALL_STATE(851)] = 56660, - [SMALL_STATE(852)] = 56707, - [SMALL_STATE(853)] = 56732, - [SMALL_STATE(854)] = 56779, - [SMALL_STATE(855)] = 56826, - [SMALL_STATE(856)] = 56867, - [SMALL_STATE(857)] = 56890, - [SMALL_STATE(858)] = 56919, - [SMALL_STATE(859)] = 56960, - [SMALL_STATE(860)] = 56983, - [SMALL_STATE(861)] = 57030, - [SMALL_STATE(862)] = 57071, - [SMALL_STATE(863)] = 57096, - [SMALL_STATE(864)] = 57121, - [SMALL_STATE(865)] = 57162, - [SMALL_STATE(866)] = 57211, - [SMALL_STATE(867)] = 57252, - [SMALL_STATE(868)] = 57277, - [SMALL_STATE(869)] = 57304, - [SMALL_STATE(870)] = 57351, - [SMALL_STATE(871)] = 57378, - [SMALL_STATE(872)] = 57402, - [SMALL_STATE(873)] = 57448, - [SMALL_STATE(874)] = 57494, - [SMALL_STATE(875)] = 57514, - [SMALL_STATE(876)] = 57560, - [SMALL_STATE(877)] = 57580, - [SMALL_STATE(878)] = 57626, - [SMALL_STATE(879)] = 57648, - [SMALL_STATE(880)] = 57674, - [SMALL_STATE(881)] = 57696, - [SMALL_STATE(882)] = 57716, - [SMALL_STATE(883)] = 57736, - [SMALL_STATE(884)] = 57782, - [SMALL_STATE(885)] = 57804, - [SMALL_STATE(886)] = 57826, - [SMALL_STATE(887)] = 57872, - [SMALL_STATE(888)] = 57907, - [SMALL_STATE(889)] = 57942, - [SMALL_STATE(890)] = 57963, - [SMALL_STATE(891)] = 57984, - [SMALL_STATE(892)] = 58011, - [SMALL_STATE(893)] = 58052, - [SMALL_STATE(894)] = 58071, - [SMALL_STATE(895)] = 58092, - [SMALL_STATE(896)] = 58127, - [SMALL_STATE(897)] = 58152, - [SMALL_STATE(898)] = 58175, - [SMALL_STATE(899)] = 58210, - [SMALL_STATE(900)] = 58233, - [SMALL_STATE(901)] = 58254, - [SMALL_STATE(902)] = 58275, - [SMALL_STATE(903)] = 58296, - [SMALL_STATE(904)] = 58319, - [SMALL_STATE(905)] = 58360, - [SMALL_STATE(906)] = 58381, - [SMALL_STATE(907)] = 58402, - [SMALL_STATE(908)] = 58421, - [SMALL_STATE(909)] = 58462, - [SMALL_STATE(910)] = 58503, - [SMALL_STATE(911)] = 58522, - [SMALL_STATE(912)] = 58563, - [SMALL_STATE(913)] = 58586, - [SMALL_STATE(914)] = 58605, - [SMALL_STATE(915)] = 58624, - [SMALL_STATE(916)] = 58659, - [SMALL_STATE(917)] = 58682, - [SMALL_STATE(918)] = 58717, - [SMALL_STATE(919)] = 58752, - [SMALL_STATE(920)] = 58773, - [SMALL_STATE(921)] = 58814, - [SMALL_STATE(922)] = 58855, - [SMALL_STATE(923)] = 58890, - [SMALL_STATE(924)] = 58931, - [SMALL_STATE(925)] = 58952, - [SMALL_STATE(926)] = 58971, - [SMALL_STATE(927)] = 58993, - [SMALL_STATE(928)] = 59011, - [SMALL_STATE(929)] = 59051, - [SMALL_STATE(930)] = 59083, - [SMALL_STATE(931)] = 59121, - [SMALL_STATE(932)] = 59143, - [SMALL_STATE(933)] = 59161, - [SMALL_STATE(934)] = 59183, - [SMALL_STATE(935)] = 59205, - [SMALL_STATE(936)] = 59245, - [SMALL_STATE(937)] = 59285, - [SMALL_STATE(938)] = 59325, - [SMALL_STATE(939)] = 59363, - [SMALL_STATE(940)] = 59381, - [SMALL_STATE(941)] = 59419, - [SMALL_STATE(942)] = 59457, - [SMALL_STATE(943)] = 59477, - [SMALL_STATE(944)] = 59509, - [SMALL_STATE(945)] = 59541, - [SMALL_STATE(946)] = 59565, - [SMALL_STATE(947)] = 59587, - [SMALL_STATE(948)] = 59627, - [SMALL_STATE(949)] = 59651, - [SMALL_STATE(950)] = 59689, - [SMALL_STATE(951)] = 59727, - [SMALL_STATE(952)] = 59747, - [SMALL_STATE(953)] = 59787, - [SMALL_STATE(954)] = 59827, - [SMALL_STATE(955)] = 59845, - [SMALL_STATE(956)] = 59880, - [SMALL_STATE(957)] = 59897, - [SMALL_STATE(958)] = 59926, - [SMALL_STATE(959)] = 59947, - [SMALL_STATE(960)] = 59976, - [SMALL_STATE(961)] = 60005, - [SMALL_STATE(962)] = 60036, - [SMALL_STATE(963)] = 60065, - [SMALL_STATE(964)] = 60102, - [SMALL_STATE(965)] = 60131, - [SMALL_STATE(966)] = 60162, - [SMALL_STATE(967)] = 60197, - [SMALL_STATE(968)] = 60226, - [SMALL_STATE(969)] = 60257, - [SMALL_STATE(970)] = 60286, - [SMALL_STATE(971)] = 60321, - [SMALL_STATE(972)] = 60350, - [SMALL_STATE(973)] = 60367, - [SMALL_STATE(974)] = 60388, - [SMALL_STATE(975)] = 60405, - [SMALL_STATE(976)] = 60440, - [SMALL_STATE(977)] = 60469, - [SMALL_STATE(978)] = 60490, - [SMALL_STATE(979)] = 60519, - [SMALL_STATE(980)] = 60536, - [SMALL_STATE(981)] = 60565, - [SMALL_STATE(982)] = 60596, - [SMALL_STATE(983)] = 60633, - [SMALL_STATE(984)] = 60662, - [SMALL_STATE(985)] = 60691, - [SMALL_STATE(986)] = 60712, - [SMALL_STATE(987)] = 60733, - [SMALL_STATE(988)] = 60750, - [SMALL_STATE(989)] = 60785, - [SMALL_STATE(990)] = 60820, - [SMALL_STATE(991)] = 60837, - [SMALL_STATE(992)] = 60868, - [SMALL_STATE(993)] = 60903, - [SMALL_STATE(994)] = 60938, - [SMALL_STATE(995)] = 60955, - [SMALL_STATE(996)] = 60990, - [SMALL_STATE(997)] = 61025, - [SMALL_STATE(998)] = 61060, - [SMALL_STATE(999)] = 61076, - [SMALL_STATE(1000)] = 61092, - [SMALL_STATE(1001)] = 61112, - [SMALL_STATE(1002)] = 61128, - [SMALL_STATE(1003)] = 61154, - [SMALL_STATE(1004)] = 61174, - [SMALL_STATE(1005)] = 61190, - [SMALL_STATE(1006)] = 61224, - [SMALL_STATE(1007)] = 61258, - [SMALL_STATE(1008)] = 61292, - [SMALL_STATE(1009)] = 61326, - [SMALL_STATE(1010)] = 61360, - [SMALL_STATE(1011)] = 61394, - [SMALL_STATE(1012)] = 61410, - [SMALL_STATE(1013)] = 61426, - [SMALL_STATE(1014)] = 61442, - [SMALL_STATE(1015)] = 61462, - [SMALL_STATE(1016)] = 61478, - [SMALL_STATE(1017)] = 61494, - [SMALL_STATE(1018)] = 61514, - [SMALL_STATE(1019)] = 61534, - [SMALL_STATE(1020)] = 61554, - [SMALL_STATE(1021)] = 61588, - [SMALL_STATE(1022)] = 61622, - [SMALL_STATE(1023)] = 61638, - [SMALL_STATE(1024)] = 61653, - [SMALL_STATE(1025)] = 61682, - [SMALL_STATE(1026)] = 61711, - [SMALL_STATE(1027)] = 61740, - [SMALL_STATE(1028)] = 61769, - [SMALL_STATE(1029)] = 61798, - [SMALL_STATE(1030)] = 61827, - [SMALL_STATE(1031)] = 61858, - [SMALL_STATE(1032)] = 61887, - [SMALL_STATE(1033)] = 61916, - [SMALL_STATE(1034)] = 61945, - [SMALL_STATE(1035)] = 61974, - [SMALL_STATE(1036)] = 62003, - [SMALL_STATE(1037)] = 62032, - [SMALL_STATE(1038)] = 62061, - [SMALL_STATE(1039)] = 62076, - [SMALL_STATE(1040)] = 62105, - [SMALL_STATE(1041)] = 62134, - [SMALL_STATE(1042)] = 62163, - [SMALL_STATE(1043)] = 62192, - [SMALL_STATE(1044)] = 62223, - [SMALL_STATE(1045)] = 62252, - [SMALL_STATE(1046)] = 62281, - [SMALL_STATE(1047)] = 62296, - [SMALL_STATE(1048)] = 62325, - [SMALL_STATE(1049)] = 62354, - [SMALL_STATE(1050)] = 62378, - [SMALL_STATE(1051)] = 62404, - [SMALL_STATE(1052)] = 62428, - [SMALL_STATE(1053)] = 62452, - [SMALL_STATE(1054)] = 62476, - [SMALL_STATE(1055)] = 62500, - [SMALL_STATE(1056)] = 62526, - [SMALL_STATE(1057)] = 62550, - [SMALL_STATE(1058)] = 62574, - [SMALL_STATE(1059)] = 62598, - [SMALL_STATE(1060)] = 62624, - [SMALL_STATE(1061)] = 62652, - [SMALL_STATE(1062)] = 62676, - [SMALL_STATE(1063)] = 62700, - [SMALL_STATE(1064)] = 62724, - [SMALL_STATE(1065)] = 62748, - [SMALL_STATE(1066)] = 62772, - [SMALL_STATE(1067)] = 62800, - [SMALL_STATE(1068)] = 62828, - [SMALL_STATE(1069)] = 62852, - [SMALL_STATE(1070)] = 62878, - [SMALL_STATE(1071)] = 62900, - [SMALL_STATE(1072)] = 62916, - [SMALL_STATE(1073)] = 62934, - [SMALL_STATE(1074)] = 62962, - [SMALL_STATE(1075)] = 62980, - [SMALL_STATE(1076)] = 63008, - [SMALL_STATE(1077)] = 63034, - [SMALL_STATE(1078)] = 63058, - [SMALL_STATE(1079)] = 63084, - [SMALL_STATE(1080)] = 63112, - [SMALL_STATE(1081)] = 63136, - [SMALL_STATE(1082)] = 63162, - [SMALL_STATE(1083)] = 63188, - [SMALL_STATE(1084)] = 63212, - [SMALL_STATE(1085)] = 63238, - [SMALL_STATE(1086)] = 63260, - [SMALL_STATE(1087)] = 63284, - [SMALL_STATE(1088)] = 63310, - [SMALL_STATE(1089)] = 63336, - [SMALL_STATE(1090)] = 63360, - [SMALL_STATE(1091)] = 63384, - [SMALL_STATE(1092)] = 63410, - [SMALL_STATE(1093)] = 63436, - [SMALL_STATE(1094)] = 63460, - [SMALL_STATE(1095)] = 63484, - [SMALL_STATE(1096)] = 63510, - [SMALL_STATE(1097)] = 63538, - [SMALL_STATE(1098)] = 63564, - [SMALL_STATE(1099)] = 63590, - [SMALL_STATE(1100)] = 63618, - [SMALL_STATE(1101)] = 63646, - [SMALL_STATE(1102)] = 63670, - [SMALL_STATE(1103)] = 63695, - [SMALL_STATE(1104)] = 63708, - [SMALL_STATE(1105)] = 63729, - [SMALL_STATE(1106)] = 63752, - [SMALL_STATE(1107)] = 63775, - [SMALL_STATE(1108)] = 63796, - [SMALL_STATE(1109)] = 63819, - [SMALL_STATE(1110)] = 63832, - [SMALL_STATE(1111)] = 63845, - [SMALL_STATE(1112)] = 63862, - [SMALL_STATE(1113)] = 63877, - [SMALL_STATE(1114)] = 63894, - [SMALL_STATE(1115)] = 63911, - [SMALL_STATE(1116)] = 63932, - [SMALL_STATE(1117)] = 63953, - [SMALL_STATE(1118)] = 63976, - [SMALL_STATE(1119)] = 63993, - [SMALL_STATE(1120)] = 64006, - [SMALL_STATE(1121)] = 64027, - [SMALL_STATE(1122)] = 64048, - [SMALL_STATE(1123)] = 64061, - [SMALL_STATE(1124)] = 64082, - [SMALL_STATE(1125)] = 64107, - [SMALL_STATE(1126)] = 64120, - [SMALL_STATE(1127)] = 64133, - [SMALL_STATE(1128)] = 64154, - [SMALL_STATE(1129)] = 64179, - [SMALL_STATE(1130)] = 64202, - [SMALL_STATE(1131)] = 64219, - [SMALL_STATE(1132)] = 64242, - [SMALL_STATE(1133)] = 64255, - [SMALL_STATE(1134)] = 64269, - [SMALL_STATE(1135)] = 64289, - [SMALL_STATE(1136)] = 64301, - [SMALL_STATE(1137)] = 64323, - [SMALL_STATE(1138)] = 64341, - [SMALL_STATE(1139)] = 64361, - [SMALL_STATE(1140)] = 64373, - [SMALL_STATE(1141)] = 64393, - [SMALL_STATE(1142)] = 64411, - [SMALL_STATE(1143)] = 64425, - [SMALL_STATE(1144)] = 64443, - [SMALL_STATE(1145)] = 64463, - [SMALL_STATE(1146)] = 64483, - [SMALL_STATE(1147)] = 64503, - [SMALL_STATE(1148)] = 64515, - [SMALL_STATE(1149)] = 64527, - [SMALL_STATE(1150)] = 64547, - [SMALL_STATE(1151)] = 64561, - [SMALL_STATE(1152)] = 64573, - [SMALL_STATE(1153)] = 64593, - [SMALL_STATE(1154)] = 64611, - [SMALL_STATE(1155)] = 64631, - [SMALL_STATE(1156)] = 64653, - [SMALL_STATE(1157)] = 64673, - [SMALL_STATE(1158)] = 64689, - [SMALL_STATE(1159)] = 64703, - [SMALL_STATE(1160)] = 64717, - [SMALL_STATE(1161)] = 64731, - [SMALL_STATE(1162)] = 64749, - [SMALL_STATE(1163)] = 64763, - [SMALL_STATE(1164)] = 64783, - [SMALL_STATE(1165)] = 64795, - [SMALL_STATE(1166)] = 64809, - [SMALL_STATE(1167)] = 64829, - [SMALL_STATE(1168)] = 64845, - [SMALL_STATE(1169)] = 64865, - [SMALL_STATE(1170)] = 64885, - [SMALL_STATE(1171)] = 64905, - [SMALL_STATE(1172)] = 64917, - [SMALL_STATE(1173)] = 64939, - [SMALL_STATE(1174)] = 64951, - [SMALL_STATE(1175)] = 64965, - [SMALL_STATE(1176)] = 64983, - [SMALL_STATE(1177)] = 65003, - [SMALL_STATE(1178)] = 65015, - [SMALL_STATE(1179)] = 65031, - [SMALL_STATE(1180)] = 65051, - [SMALL_STATE(1181)] = 65071, - [SMALL_STATE(1182)] = 65085, - [SMALL_STATE(1183)] = 65103, - [SMALL_STATE(1184)] = 65115, - [SMALL_STATE(1185)] = 65135, - [SMALL_STATE(1186)] = 65155, - [SMALL_STATE(1187)] = 65171, - [SMALL_STATE(1188)] = 65183, - [SMALL_STATE(1189)] = 65203, - [SMALL_STATE(1190)] = 65221, - [SMALL_STATE(1191)] = 65241, - [SMALL_STATE(1192)] = 65259, - [SMALL_STATE(1193)] = 65279, - [SMALL_STATE(1194)] = 65296, - [SMALL_STATE(1195)] = 65313, - [SMALL_STATE(1196)] = 65328, - [SMALL_STATE(1197)] = 65347, - [SMALL_STATE(1198)] = 65364, - [SMALL_STATE(1199)] = 65381, - [SMALL_STATE(1200)] = 65394, - [SMALL_STATE(1201)] = 65405, - [SMALL_STATE(1202)] = 65420, - [SMALL_STATE(1203)] = 65437, - [SMALL_STATE(1204)] = 65452, - [SMALL_STATE(1205)] = 65471, - [SMALL_STATE(1206)] = 65488, - [SMALL_STATE(1207)] = 65503, - [SMALL_STATE(1208)] = 65522, - [SMALL_STATE(1209)] = 65539, - [SMALL_STATE(1210)] = 65550, - [SMALL_STATE(1211)] = 65561, - [SMALL_STATE(1212)] = 65580, - [SMALL_STATE(1213)] = 65597, - [SMALL_STATE(1214)] = 65614, - [SMALL_STATE(1215)] = 65625, - [SMALL_STATE(1216)] = 65644, - [SMALL_STATE(1217)] = 65663, - [SMALL_STATE(1218)] = 65680, - [SMALL_STATE(1219)] = 65695, - [SMALL_STATE(1220)] = 65712, - [SMALL_STATE(1221)] = 65725, - [SMALL_STATE(1222)] = 65744, - [SMALL_STATE(1223)] = 65763, - [SMALL_STATE(1224)] = 65778, - [SMALL_STATE(1225)] = 65795, - [SMALL_STATE(1226)] = 65810, - [SMALL_STATE(1227)] = 65829, - [SMALL_STATE(1228)] = 65848, - [SMALL_STATE(1229)] = 65865, - [SMALL_STATE(1230)] = 65880, - [SMALL_STATE(1231)] = 65893, - [SMALL_STATE(1232)] = 65904, - [SMALL_STATE(1233)] = 65919, - [SMALL_STATE(1234)] = 65938, - [SMALL_STATE(1235)] = 65957, - [SMALL_STATE(1236)] = 65974, - [SMALL_STATE(1237)] = 65993, - [SMALL_STATE(1238)] = 66010, - [SMALL_STATE(1239)] = 66021, - [SMALL_STATE(1240)] = 66032, - [SMALL_STATE(1241)] = 66043, - [SMALL_STATE(1242)] = 66062, - [SMALL_STATE(1243)] = 66081, - [SMALL_STATE(1244)] = 66092, - [SMALL_STATE(1245)] = 66103, - [SMALL_STATE(1246)] = 66114, - [SMALL_STATE(1247)] = 66133, - [SMALL_STATE(1248)] = 66152, - [SMALL_STATE(1249)] = 66169, - [SMALL_STATE(1250)] = 66186, - [SMALL_STATE(1251)] = 66205, - [SMALL_STATE(1252)] = 66218, - [SMALL_STATE(1253)] = 66237, - [SMALL_STATE(1254)] = 66256, - [SMALL_STATE(1255)] = 66271, - [SMALL_STATE(1256)] = 66290, - [SMALL_STATE(1257)] = 66309, - [SMALL_STATE(1258)] = 66324, - [SMALL_STATE(1259)] = 66341, - [SMALL_STATE(1260)] = 66360, - [SMALL_STATE(1261)] = 66379, - [SMALL_STATE(1262)] = 66398, - [SMALL_STATE(1263)] = 66408, - [SMALL_STATE(1264)] = 66422, - [SMALL_STATE(1265)] = 66436, - [SMALL_STATE(1266)] = 66448, - [SMALL_STATE(1267)] = 66462, - [SMALL_STATE(1268)] = 66476, - [SMALL_STATE(1269)] = 66490, - [SMALL_STATE(1270)] = 66506, - [SMALL_STATE(1271)] = 66520, - [SMALL_STATE(1272)] = 66530, - [SMALL_STATE(1273)] = 66544, - [SMALL_STATE(1274)] = 66560, - [SMALL_STATE(1275)] = 66574, - [SMALL_STATE(1276)] = 66590, - [SMALL_STATE(1277)] = 66604, - [SMALL_STATE(1278)] = 66618, - [SMALL_STATE(1279)] = 66632, - [SMALL_STATE(1280)] = 66642, - [SMALL_STATE(1281)] = 66658, - [SMALL_STATE(1282)] = 66672, - [SMALL_STATE(1283)] = 66688, - [SMALL_STATE(1284)] = 66702, - [SMALL_STATE(1285)] = 66716, - [SMALL_STATE(1286)] = 66726, - [SMALL_STATE(1287)] = 66740, - [SMALL_STATE(1288)] = 66754, - [SMALL_STATE(1289)] = 66770, - [SMALL_STATE(1290)] = 66784, - [SMALL_STATE(1291)] = 66798, - [SMALL_STATE(1292)] = 66814, - [SMALL_STATE(1293)] = 66828, - [SMALL_STATE(1294)] = 66842, - [SMALL_STATE(1295)] = 66856, - [SMALL_STATE(1296)] = 66870, - [SMALL_STATE(1297)] = 66884, - [SMALL_STATE(1298)] = 66894, - [SMALL_STATE(1299)] = 66908, - [SMALL_STATE(1300)] = 66922, - [SMALL_STATE(1301)] = 66936, - [SMALL_STATE(1302)] = 66950, - [SMALL_STATE(1303)] = 66964, - [SMALL_STATE(1304)] = 66974, - [SMALL_STATE(1305)] = 66988, - [SMALL_STATE(1306)] = 67002, - [SMALL_STATE(1307)] = 67012, - [SMALL_STATE(1308)] = 67028, - [SMALL_STATE(1309)] = 67042, - [SMALL_STATE(1310)] = 67056, - [SMALL_STATE(1311)] = 67070, - [SMALL_STATE(1312)] = 67084, - [SMALL_STATE(1313)] = 67100, - [SMALL_STATE(1314)] = 67114, - [SMALL_STATE(1315)] = 67130, - [SMALL_STATE(1316)] = 67144, - [SMALL_STATE(1317)] = 67160, - [SMALL_STATE(1318)] = 67174, - [SMALL_STATE(1319)] = 67184, - [SMALL_STATE(1320)] = 67198, - [SMALL_STATE(1321)] = 67214, - [SMALL_STATE(1322)] = 67228, - [SMALL_STATE(1323)] = 67244, - [SMALL_STATE(1324)] = 67258, - [SMALL_STATE(1325)] = 67272, - [SMALL_STATE(1326)] = 67286, - [SMALL_STATE(1327)] = 67296, - [SMALL_STATE(1328)] = 67310, - [SMALL_STATE(1329)] = 67324, - [SMALL_STATE(1330)] = 67338, - [SMALL_STATE(1331)] = 67352, - [SMALL_STATE(1332)] = 67366, - [SMALL_STATE(1333)] = 67380, - [SMALL_STATE(1334)] = 67392, - [SMALL_STATE(1335)] = 67406, - [SMALL_STATE(1336)] = 67416, - [SMALL_STATE(1337)] = 67430, - [SMALL_STATE(1338)] = 67440, - [SMALL_STATE(1339)] = 67454, - [SMALL_STATE(1340)] = 67470, - [SMALL_STATE(1341)] = 67486, - [SMALL_STATE(1342)] = 67500, - [SMALL_STATE(1343)] = 67514, - [SMALL_STATE(1344)] = 67528, - [SMALL_STATE(1345)] = 67544, - [SMALL_STATE(1346)] = 67558, - [SMALL_STATE(1347)] = 67572, - [SMALL_STATE(1348)] = 67586, - [SMALL_STATE(1349)] = 67602, - [SMALL_STATE(1350)] = 67612, - [SMALL_STATE(1351)] = 67628, - [SMALL_STATE(1352)] = 67642, - [SMALL_STATE(1353)] = 67656, - [SMALL_STATE(1354)] = 67670, - [SMALL_STATE(1355)] = 67684, - [SMALL_STATE(1356)] = 67698, - [SMALL_STATE(1357)] = 67712, - [SMALL_STATE(1358)] = 67726, - [SMALL_STATE(1359)] = 67742, - [SMALL_STATE(1360)] = 67758, - [SMALL_STATE(1361)] = 67774, - [SMALL_STATE(1362)] = 67790, - [SMALL_STATE(1363)] = 67804, - [SMALL_STATE(1364)] = 67818, - [SMALL_STATE(1365)] = 67828, - [SMALL_STATE(1366)] = 67844, - [SMALL_STATE(1367)] = 67858, - [SMALL_STATE(1368)] = 67874, - [SMALL_STATE(1369)] = 67888, - [SMALL_STATE(1370)] = 67902, - [SMALL_STATE(1371)] = 67916, - [SMALL_STATE(1372)] = 67930, - [SMALL_STATE(1373)] = 67944, - [SMALL_STATE(1374)] = 67960, - [SMALL_STATE(1375)] = 67974, - [SMALL_STATE(1376)] = 67984, - [SMALL_STATE(1377)] = 67998, - [SMALL_STATE(1378)] = 68008, - [SMALL_STATE(1379)] = 68024, - [SMALL_STATE(1380)] = 68038, - [SMALL_STATE(1381)] = 68054, - [SMALL_STATE(1382)] = 68064, - [SMALL_STATE(1383)] = 68077, - [SMALL_STATE(1384)] = 68086, - [SMALL_STATE(1385)] = 68099, - [SMALL_STATE(1386)] = 68112, - [SMALL_STATE(1387)] = 68121, - [SMALL_STATE(1388)] = 68134, - [SMALL_STATE(1389)] = 68147, - [SMALL_STATE(1390)] = 68156, - [SMALL_STATE(1391)] = 68169, - [SMALL_STATE(1392)] = 68182, - [SMALL_STATE(1393)] = 68195, - [SMALL_STATE(1394)] = 68208, - [SMALL_STATE(1395)] = 68221, - [SMALL_STATE(1396)] = 68234, - [SMALL_STATE(1397)] = 68247, - [SMALL_STATE(1398)] = 68258, - [SMALL_STATE(1399)] = 68271, - [SMALL_STATE(1400)] = 68284, - [SMALL_STATE(1401)] = 68297, - [SMALL_STATE(1402)] = 68310, - [SMALL_STATE(1403)] = 68323, - [SMALL_STATE(1404)] = 68336, - [SMALL_STATE(1405)] = 68349, - [SMALL_STATE(1406)] = 68362, - [SMALL_STATE(1407)] = 68371, - [SMALL_STATE(1408)] = 68384, - [SMALL_STATE(1409)] = 68397, - [SMALL_STATE(1410)] = 68410, - [SMALL_STATE(1411)] = 68423, - [SMALL_STATE(1412)] = 68436, - [SMALL_STATE(1413)] = 68449, - [SMALL_STATE(1414)] = 68462, - [SMALL_STATE(1415)] = 68475, - [SMALL_STATE(1416)] = 68488, - [SMALL_STATE(1417)] = 68501, - [SMALL_STATE(1418)] = 68514, - [SMALL_STATE(1419)] = 68527, - [SMALL_STATE(1420)] = 68540, - [SMALL_STATE(1421)] = 68553, - [SMALL_STATE(1422)] = 68566, - [SMALL_STATE(1423)] = 68579, - [SMALL_STATE(1424)] = 68592, - [SMALL_STATE(1425)] = 68605, - [SMALL_STATE(1426)] = 68618, - [SMALL_STATE(1427)] = 68631, - [SMALL_STATE(1428)] = 68640, - [SMALL_STATE(1429)] = 68653, - [SMALL_STATE(1430)] = 68666, - [SMALL_STATE(1431)] = 68679, - [SMALL_STATE(1432)] = 68692, - [SMALL_STATE(1433)] = 68703, - [SMALL_STATE(1434)] = 68716, - [SMALL_STATE(1435)] = 68729, - [SMALL_STATE(1436)] = 68738, - [SMALL_STATE(1437)] = 68751, - [SMALL_STATE(1438)] = 68764, - [SMALL_STATE(1439)] = 68777, - [SMALL_STATE(1440)] = 68790, - [SMALL_STATE(1441)] = 68803, - [SMALL_STATE(1442)] = 68816, - [SMALL_STATE(1443)] = 68829, - [SMALL_STATE(1444)] = 68842, - [SMALL_STATE(1445)] = 68855, - [SMALL_STATE(1446)] = 68868, - [SMALL_STATE(1447)] = 68881, - [SMALL_STATE(1448)] = 68890, - [SMALL_STATE(1449)] = 68903, - [SMALL_STATE(1450)] = 68914, - [SMALL_STATE(1451)] = 68927, - [SMALL_STATE(1452)] = 68940, - [SMALL_STATE(1453)] = 68953, - [SMALL_STATE(1454)] = 68966, - [SMALL_STATE(1455)] = 68979, - [SMALL_STATE(1456)] = 68992, - [SMALL_STATE(1457)] = 69005, - [SMALL_STATE(1458)] = 69018, - [SMALL_STATE(1459)] = 69027, - [SMALL_STATE(1460)] = 69040, - [SMALL_STATE(1461)] = 69053, - [SMALL_STATE(1462)] = 69066, - [SMALL_STATE(1463)] = 69079, - [SMALL_STATE(1464)] = 69092, - [SMALL_STATE(1465)] = 69105, - [SMALL_STATE(1466)] = 69118, - [SMALL_STATE(1467)] = 69131, - [SMALL_STATE(1468)] = 69144, - [SMALL_STATE(1469)] = 69153, - [SMALL_STATE(1470)] = 69166, - [SMALL_STATE(1471)] = 69179, - [SMALL_STATE(1472)] = 69192, - [SMALL_STATE(1473)] = 69205, - [SMALL_STATE(1474)] = 69218, - [SMALL_STATE(1475)] = 69231, - [SMALL_STATE(1476)] = 69244, - [SMALL_STATE(1477)] = 69257, - [SMALL_STATE(1478)] = 69270, - [SMALL_STATE(1479)] = 69283, - [SMALL_STATE(1480)] = 69296, - [SMALL_STATE(1481)] = 69309, - [SMALL_STATE(1482)] = 69322, - [SMALL_STATE(1483)] = 69335, - [SMALL_STATE(1484)] = 69348, - [SMALL_STATE(1485)] = 69361, - [SMALL_STATE(1486)] = 69374, - [SMALL_STATE(1487)] = 69387, - [SMALL_STATE(1488)] = 69400, - [SMALL_STATE(1489)] = 69413, - [SMALL_STATE(1490)] = 69426, - [SMALL_STATE(1491)] = 69439, - [SMALL_STATE(1492)] = 69452, - [SMALL_STATE(1493)] = 69465, - [SMALL_STATE(1494)] = 69478, - [SMALL_STATE(1495)] = 69491, - [SMALL_STATE(1496)] = 69504, - [SMALL_STATE(1497)] = 69517, - [SMALL_STATE(1498)] = 69526, - [SMALL_STATE(1499)] = 69539, - [SMALL_STATE(1500)] = 69552, - [SMALL_STATE(1501)] = 69565, - [SMALL_STATE(1502)] = 69578, - [SMALL_STATE(1503)] = 69591, - [SMALL_STATE(1504)] = 69604, - [SMALL_STATE(1505)] = 69617, - [SMALL_STATE(1506)] = 69630, - [SMALL_STATE(1507)] = 69643, - [SMALL_STATE(1508)] = 69656, - [SMALL_STATE(1509)] = 69669, - [SMALL_STATE(1510)] = 69682, - [SMALL_STATE(1511)] = 69695, - [SMALL_STATE(1512)] = 69708, - [SMALL_STATE(1513)] = 69721, - [SMALL_STATE(1514)] = 69734, - [SMALL_STATE(1515)] = 69743, - [SMALL_STATE(1516)] = 69756, - [SMALL_STATE(1517)] = 69769, - [SMALL_STATE(1518)] = 69778, - [SMALL_STATE(1519)] = 69791, - [SMALL_STATE(1520)] = 69804, - [SMALL_STATE(1521)] = 69817, - [SMALL_STATE(1522)] = 69830, - [SMALL_STATE(1523)] = 69843, - [SMALL_STATE(1524)] = 69856, - [SMALL_STATE(1525)] = 69869, - [SMALL_STATE(1526)] = 69882, - [SMALL_STATE(1527)] = 69895, - [SMALL_STATE(1528)] = 69908, - [SMALL_STATE(1529)] = 69921, - [SMALL_STATE(1530)] = 69934, - [SMALL_STATE(1531)] = 69947, - [SMALL_STATE(1532)] = 69960, - [SMALL_STATE(1533)] = 69969, - [SMALL_STATE(1534)] = 69982, - [SMALL_STATE(1535)] = 69995, - [SMALL_STATE(1536)] = 70008, - [SMALL_STATE(1537)] = 70021, - [SMALL_STATE(1538)] = 70034, - [SMALL_STATE(1539)] = 70047, - [SMALL_STATE(1540)] = 70060, - [SMALL_STATE(1541)] = 70073, - [SMALL_STATE(1542)] = 70086, - [SMALL_STATE(1543)] = 70095, - [SMALL_STATE(1544)] = 70104, - [SMALL_STATE(1545)] = 70113, - [SMALL_STATE(1546)] = 70126, - [SMALL_STATE(1547)] = 70139, - [SMALL_STATE(1548)] = 70152, - [SMALL_STATE(1549)] = 70165, - [SMALL_STATE(1550)] = 70178, - [SMALL_STATE(1551)] = 70191, - [SMALL_STATE(1552)] = 70204, - [SMALL_STATE(1553)] = 70217, - [SMALL_STATE(1554)] = 70230, - [SMALL_STATE(1555)] = 70243, - [SMALL_STATE(1556)] = 70252, - [SMALL_STATE(1557)] = 70265, - [SMALL_STATE(1558)] = 70278, - [SMALL_STATE(1559)] = 70291, - [SMALL_STATE(1560)] = 70304, - [SMALL_STATE(1561)] = 70317, - [SMALL_STATE(1562)] = 70330, - [SMALL_STATE(1563)] = 70343, - [SMALL_STATE(1564)] = 70356, - [SMALL_STATE(1565)] = 70365, - [SMALL_STATE(1566)] = 70378, - [SMALL_STATE(1567)] = 70387, - [SMALL_STATE(1568)] = 70400, - [SMALL_STATE(1569)] = 70413, - [SMALL_STATE(1570)] = 70426, - [SMALL_STATE(1571)] = 70439, - [SMALL_STATE(1572)] = 70452, - [SMALL_STATE(1573)] = 70462, - [SMALL_STATE(1574)] = 70470, - [SMALL_STATE(1575)] = 70478, - [SMALL_STATE(1576)] = 70486, - [SMALL_STATE(1577)] = 70496, - [SMALL_STATE(1578)] = 70504, - [SMALL_STATE(1579)] = 70512, - [SMALL_STATE(1580)] = 70520, - [SMALL_STATE(1581)] = 70530, - [SMALL_STATE(1582)] = 70540, - [SMALL_STATE(1583)] = 70550, - [SMALL_STATE(1584)] = 70560, - [SMALL_STATE(1585)] = 70568, - [SMALL_STATE(1586)] = 70576, - [SMALL_STATE(1587)] = 70586, - [SMALL_STATE(1588)] = 70596, - [SMALL_STATE(1589)] = 70606, - [SMALL_STATE(1590)] = 70616, - [SMALL_STATE(1591)] = 70626, - [SMALL_STATE(1592)] = 70636, - [SMALL_STATE(1593)] = 70644, - [SMALL_STATE(1594)] = 70652, - [SMALL_STATE(1595)] = 70660, - [SMALL_STATE(1596)] = 70668, - [SMALL_STATE(1597)] = 70678, - [SMALL_STATE(1598)] = 70686, - [SMALL_STATE(1599)] = 70696, - [SMALL_STATE(1600)] = 70704, - [SMALL_STATE(1601)] = 70714, - [SMALL_STATE(1602)] = 70724, - [SMALL_STATE(1603)] = 70734, - [SMALL_STATE(1604)] = 70742, - [SMALL_STATE(1605)] = 70752, - [SMALL_STATE(1606)] = 70762, - [SMALL_STATE(1607)] = 70772, - [SMALL_STATE(1608)] = 70782, - [SMALL_STATE(1609)] = 70790, - [SMALL_STATE(1610)] = 70800, - [SMALL_STATE(1611)] = 70810, - [SMALL_STATE(1612)] = 70820, - [SMALL_STATE(1613)] = 70830, - [SMALL_STATE(1614)] = 70838, - [SMALL_STATE(1615)] = 70846, - [SMALL_STATE(1616)] = 70854, - [SMALL_STATE(1617)] = 70864, - [SMALL_STATE(1618)] = 70874, - [SMALL_STATE(1619)] = 70884, - [SMALL_STATE(1620)] = 70894, - [SMALL_STATE(1621)] = 70904, - [SMALL_STATE(1622)] = 70914, - [SMALL_STATE(1623)] = 70924, - [SMALL_STATE(1624)] = 70932, - [SMALL_STATE(1625)] = 70940, - [SMALL_STATE(1626)] = 70950, - [SMALL_STATE(1627)] = 70960, - [SMALL_STATE(1628)] = 70970, - [SMALL_STATE(1629)] = 70978, - [SMALL_STATE(1630)] = 70986, - [SMALL_STATE(1631)] = 70994, - [SMALL_STATE(1632)] = 71002, - [SMALL_STATE(1633)] = 71010, - [SMALL_STATE(1634)] = 71020, - [SMALL_STATE(1635)] = 71028, - [SMALL_STATE(1636)] = 71038, - [SMALL_STATE(1637)] = 71048, - [SMALL_STATE(1638)] = 71058, - [SMALL_STATE(1639)] = 71066, - [SMALL_STATE(1640)] = 71074, - [SMALL_STATE(1641)] = 71082, - [SMALL_STATE(1642)] = 71090, - [SMALL_STATE(1643)] = 71098, - [SMALL_STATE(1644)] = 71108, - [SMALL_STATE(1645)] = 71118, - [SMALL_STATE(1646)] = 71128, - [SMALL_STATE(1647)] = 71138, - [SMALL_STATE(1648)] = 71146, - [SMALL_STATE(1649)] = 71154, - [SMALL_STATE(1650)] = 71162, - [SMALL_STATE(1651)] = 71172, - [SMALL_STATE(1652)] = 71180, - [SMALL_STATE(1653)] = 71190, - [SMALL_STATE(1654)] = 71198, - [SMALL_STATE(1655)] = 71208, - [SMALL_STATE(1656)] = 71216, - [SMALL_STATE(1657)] = 71224, - [SMALL_STATE(1658)] = 71232, - [SMALL_STATE(1659)] = 71242, - [SMALL_STATE(1660)] = 71250, - [SMALL_STATE(1661)] = 71260, - [SMALL_STATE(1662)] = 71268, - [SMALL_STATE(1663)] = 71276, - [SMALL_STATE(1664)] = 71286, - [SMALL_STATE(1665)] = 71296, - [SMALL_STATE(1666)] = 71306, - [SMALL_STATE(1667)] = 71316, - [SMALL_STATE(1668)] = 71326, - [SMALL_STATE(1669)] = 71336, - [SMALL_STATE(1670)] = 71344, - [SMALL_STATE(1671)] = 71352, - [SMALL_STATE(1672)] = 71362, - [SMALL_STATE(1673)] = 71372, - [SMALL_STATE(1674)] = 71380, - [SMALL_STATE(1675)] = 71390, - [SMALL_STATE(1676)] = 71400, - [SMALL_STATE(1677)] = 71408, - [SMALL_STATE(1678)] = 71418, - [SMALL_STATE(1679)] = 71428, - [SMALL_STATE(1680)] = 71438, - [SMALL_STATE(1681)] = 71448, - [SMALL_STATE(1682)] = 71456, - [SMALL_STATE(1683)] = 71466, - [SMALL_STATE(1684)] = 71474, - [SMALL_STATE(1685)] = 71482, - [SMALL_STATE(1686)] = 71492, - [SMALL_STATE(1687)] = 71502, - [SMALL_STATE(1688)] = 71510, - [SMALL_STATE(1689)] = 71518, - [SMALL_STATE(1690)] = 71526, - [SMALL_STATE(1691)] = 71534, - [SMALL_STATE(1692)] = 71542, - [SMALL_STATE(1693)] = 71552, - [SMALL_STATE(1694)] = 71560, - [SMALL_STATE(1695)] = 71570, - [SMALL_STATE(1696)] = 71580, - [SMALL_STATE(1697)] = 71588, - [SMALL_STATE(1698)] = 71598, - [SMALL_STATE(1699)] = 71608, - [SMALL_STATE(1700)] = 71618, - [SMALL_STATE(1701)] = 71628, - [SMALL_STATE(1702)] = 71638, - [SMALL_STATE(1703)] = 71648, - [SMALL_STATE(1704)] = 71658, - [SMALL_STATE(1705)] = 71666, - [SMALL_STATE(1706)] = 71674, - [SMALL_STATE(1707)] = 71684, - [SMALL_STATE(1708)] = 71692, - [SMALL_STATE(1709)] = 71702, - [SMALL_STATE(1710)] = 71712, - [SMALL_STATE(1711)] = 71720, - [SMALL_STATE(1712)] = 71728, - [SMALL_STATE(1713)] = 71738, - [SMALL_STATE(1714)] = 71746, - [SMALL_STATE(1715)] = 71756, - [SMALL_STATE(1716)] = 71766, - [SMALL_STATE(1717)] = 71776, - [SMALL_STATE(1718)] = 71784, - [SMALL_STATE(1719)] = 71792, - [SMALL_STATE(1720)] = 71802, - [SMALL_STATE(1721)] = 71810, - [SMALL_STATE(1722)] = 71818, - [SMALL_STATE(1723)] = 71828, - [SMALL_STATE(1724)] = 71838, - [SMALL_STATE(1725)] = 71848, - [SMALL_STATE(1726)] = 71856, - [SMALL_STATE(1727)] = 71866, - [SMALL_STATE(1728)] = 71874, - [SMALL_STATE(1729)] = 71884, - [SMALL_STATE(1730)] = 71894, - [SMALL_STATE(1731)] = 71902, - [SMALL_STATE(1732)] = 71912, - [SMALL_STATE(1733)] = 71922, - [SMALL_STATE(1734)] = 71930, - [SMALL_STATE(1735)] = 71938, - [SMALL_STATE(1736)] = 71948, - [SMALL_STATE(1737)] = 71958, - [SMALL_STATE(1738)] = 71968, - [SMALL_STATE(1739)] = 71978, - [SMALL_STATE(1740)] = 71988, - [SMALL_STATE(1741)] = 71996, - [SMALL_STATE(1742)] = 72004, - [SMALL_STATE(1743)] = 72014, - [SMALL_STATE(1744)] = 72024, - [SMALL_STATE(1745)] = 72034, - [SMALL_STATE(1746)] = 72044, - [SMALL_STATE(1747)] = 72054, - [SMALL_STATE(1748)] = 72062, - [SMALL_STATE(1749)] = 72072, - [SMALL_STATE(1750)] = 72082, - [SMALL_STATE(1751)] = 72092, - [SMALL_STATE(1752)] = 72102, - [SMALL_STATE(1753)] = 72110, - [SMALL_STATE(1754)] = 72120, - [SMALL_STATE(1755)] = 72130, - [SMALL_STATE(1756)] = 72138, - [SMALL_STATE(1757)] = 72146, - [SMALL_STATE(1758)] = 72156, - [SMALL_STATE(1759)] = 72164, - [SMALL_STATE(1760)] = 72172, - [SMALL_STATE(1761)] = 72180, - [SMALL_STATE(1762)] = 72188, - [SMALL_STATE(1763)] = 72196, - [SMALL_STATE(1764)] = 72204, - [SMALL_STATE(1765)] = 72214, - [SMALL_STATE(1766)] = 72224, - [SMALL_STATE(1767)] = 72234, - [SMALL_STATE(1768)] = 72242, - [SMALL_STATE(1769)] = 72252, - [SMALL_STATE(1770)] = 72262, - [SMALL_STATE(1771)] = 72272, - [SMALL_STATE(1772)] = 72282, - [SMALL_STATE(1773)] = 72292, - [SMALL_STATE(1774)] = 72300, - [SMALL_STATE(1775)] = 72310, - [SMALL_STATE(1776)] = 72318, - [SMALL_STATE(1777)] = 72326, - [SMALL_STATE(1778)] = 72336, - [SMALL_STATE(1779)] = 72346, - [SMALL_STATE(1780)] = 72356, - [SMALL_STATE(1781)] = 72363, - [SMALL_STATE(1782)] = 72370, - [SMALL_STATE(1783)] = 72377, - [SMALL_STATE(1784)] = 72384, - [SMALL_STATE(1785)] = 72391, - [SMALL_STATE(1786)] = 72398, - [SMALL_STATE(1787)] = 72405, - [SMALL_STATE(1788)] = 72412, - [SMALL_STATE(1789)] = 72419, - [SMALL_STATE(1790)] = 72426, - [SMALL_STATE(1791)] = 72433, - [SMALL_STATE(1792)] = 72440, - [SMALL_STATE(1793)] = 72447, - [SMALL_STATE(1794)] = 72454, - [SMALL_STATE(1795)] = 72461, - [SMALL_STATE(1796)] = 72468, - [SMALL_STATE(1797)] = 72475, - [SMALL_STATE(1798)] = 72482, - [SMALL_STATE(1799)] = 72489, - [SMALL_STATE(1800)] = 72496, - [SMALL_STATE(1801)] = 72503, - [SMALL_STATE(1802)] = 72510, - [SMALL_STATE(1803)] = 72517, - [SMALL_STATE(1804)] = 72524, - [SMALL_STATE(1805)] = 72531, - [SMALL_STATE(1806)] = 72538, - [SMALL_STATE(1807)] = 72545, - [SMALL_STATE(1808)] = 72552, - [SMALL_STATE(1809)] = 72559, - [SMALL_STATE(1810)] = 72566, - [SMALL_STATE(1811)] = 72573, - [SMALL_STATE(1812)] = 72580, - [SMALL_STATE(1813)] = 72587, - [SMALL_STATE(1814)] = 72594, - [SMALL_STATE(1815)] = 72601, - [SMALL_STATE(1816)] = 72608, - [SMALL_STATE(1817)] = 72615, - [SMALL_STATE(1818)] = 72622, - [SMALL_STATE(1819)] = 72629, - [SMALL_STATE(1820)] = 72636, - [SMALL_STATE(1821)] = 72643, - [SMALL_STATE(1822)] = 72650, - [SMALL_STATE(1823)] = 72657, - [SMALL_STATE(1824)] = 72664, - [SMALL_STATE(1825)] = 72671, - [SMALL_STATE(1826)] = 72678, - [SMALL_STATE(1827)] = 72685, - [SMALL_STATE(1828)] = 72692, - [SMALL_STATE(1829)] = 72699, - [SMALL_STATE(1830)] = 72706, - [SMALL_STATE(1831)] = 72713, - [SMALL_STATE(1832)] = 72720, - [SMALL_STATE(1833)] = 72727, - [SMALL_STATE(1834)] = 72734, - [SMALL_STATE(1835)] = 72741, - [SMALL_STATE(1836)] = 72748, - [SMALL_STATE(1837)] = 72755, - [SMALL_STATE(1838)] = 72762, - [SMALL_STATE(1839)] = 72769, - [SMALL_STATE(1840)] = 72776, - [SMALL_STATE(1841)] = 72783, - [SMALL_STATE(1842)] = 72790, - [SMALL_STATE(1843)] = 72797, - [SMALL_STATE(1844)] = 72804, - [SMALL_STATE(1845)] = 72811, - [SMALL_STATE(1846)] = 72818, - [SMALL_STATE(1847)] = 72825, - [SMALL_STATE(1848)] = 72832, - [SMALL_STATE(1849)] = 72839, - [SMALL_STATE(1850)] = 72846, - [SMALL_STATE(1851)] = 72853, - [SMALL_STATE(1852)] = 72860, - [SMALL_STATE(1853)] = 72867, - [SMALL_STATE(1854)] = 72874, - [SMALL_STATE(1855)] = 72881, - [SMALL_STATE(1856)] = 72888, - [SMALL_STATE(1857)] = 72895, - [SMALL_STATE(1858)] = 72902, - [SMALL_STATE(1859)] = 72909, - [SMALL_STATE(1860)] = 72916, - [SMALL_STATE(1861)] = 72923, - [SMALL_STATE(1862)] = 72930, - [SMALL_STATE(1863)] = 72937, - [SMALL_STATE(1864)] = 72944, - [SMALL_STATE(1865)] = 72951, - [SMALL_STATE(1866)] = 72958, - [SMALL_STATE(1867)] = 72965, - [SMALL_STATE(1868)] = 72972, - [SMALL_STATE(1869)] = 72979, - [SMALL_STATE(1870)] = 72986, - [SMALL_STATE(1871)] = 72993, - [SMALL_STATE(1872)] = 73000, - [SMALL_STATE(1873)] = 73007, - [SMALL_STATE(1874)] = 73014, - [SMALL_STATE(1875)] = 73021, - [SMALL_STATE(1876)] = 73028, - [SMALL_STATE(1877)] = 73035, - [SMALL_STATE(1878)] = 73042, - [SMALL_STATE(1879)] = 73049, - [SMALL_STATE(1880)] = 73056, - [SMALL_STATE(1881)] = 73063, - [SMALL_STATE(1882)] = 73070, - [SMALL_STATE(1883)] = 73077, - [SMALL_STATE(1884)] = 73084, - [SMALL_STATE(1885)] = 73091, - [SMALL_STATE(1886)] = 73098, - [SMALL_STATE(1887)] = 73105, - [SMALL_STATE(1888)] = 73112, - [SMALL_STATE(1889)] = 73119, - [SMALL_STATE(1890)] = 73126, - [SMALL_STATE(1891)] = 73133, - [SMALL_STATE(1892)] = 73140, - [SMALL_STATE(1893)] = 73147, - [SMALL_STATE(1894)] = 73154, - [SMALL_STATE(1895)] = 73161, - [SMALL_STATE(1896)] = 73168, - [SMALL_STATE(1897)] = 73175, - [SMALL_STATE(1898)] = 73182, - [SMALL_STATE(1899)] = 73189, - [SMALL_STATE(1900)] = 73196, - [SMALL_STATE(1901)] = 73203, - [SMALL_STATE(1902)] = 73210, - [SMALL_STATE(1903)] = 73217, - [SMALL_STATE(1904)] = 73224, - [SMALL_STATE(1905)] = 73231, - [SMALL_STATE(1906)] = 73238, - [SMALL_STATE(1907)] = 73245, - [SMALL_STATE(1908)] = 73252, - [SMALL_STATE(1909)] = 73259, - [SMALL_STATE(1910)] = 73266, - [SMALL_STATE(1911)] = 73273, - [SMALL_STATE(1912)] = 73280, - [SMALL_STATE(1913)] = 73287, - [SMALL_STATE(1914)] = 73294, - [SMALL_STATE(1915)] = 73301, - [SMALL_STATE(1916)] = 73308, - [SMALL_STATE(1917)] = 73315, - [SMALL_STATE(1918)] = 73322, - [SMALL_STATE(1919)] = 73329, - [SMALL_STATE(1920)] = 73336, - [SMALL_STATE(1921)] = 73343, - [SMALL_STATE(1922)] = 73350, - [SMALL_STATE(1923)] = 73357, - [SMALL_STATE(1924)] = 73364, - [SMALL_STATE(1925)] = 73371, - [SMALL_STATE(1926)] = 73378, - [SMALL_STATE(1927)] = 73385, - [SMALL_STATE(1928)] = 73392, - [SMALL_STATE(1929)] = 73399, - [SMALL_STATE(1930)] = 73406, - [SMALL_STATE(1931)] = 73413, - [SMALL_STATE(1932)] = 73420, - [SMALL_STATE(1933)] = 73427, - [SMALL_STATE(1934)] = 73434, - [SMALL_STATE(1935)] = 73441, - [SMALL_STATE(1936)] = 73448, - [SMALL_STATE(1937)] = 73455, - [SMALL_STATE(1938)] = 73462, - [SMALL_STATE(1939)] = 73469, - [SMALL_STATE(1940)] = 73476, - [SMALL_STATE(1941)] = 73483, - [SMALL_STATE(1942)] = 73490, - [SMALL_STATE(1943)] = 73497, - [SMALL_STATE(1944)] = 73504, - [SMALL_STATE(1945)] = 73511, - [SMALL_STATE(1946)] = 73518, - [SMALL_STATE(1947)] = 73525, - [SMALL_STATE(1948)] = 73532, - [SMALL_STATE(1949)] = 73539, - [SMALL_STATE(1950)] = 73546, - [SMALL_STATE(1951)] = 73553, - [SMALL_STATE(1952)] = 73560, - [SMALL_STATE(1953)] = 73567, - [SMALL_STATE(1954)] = 73574, - [SMALL_STATE(1955)] = 73581, - [SMALL_STATE(1956)] = 73588, - [SMALL_STATE(1957)] = 73595, - [SMALL_STATE(1958)] = 73602, - [SMALL_STATE(1959)] = 73609, - [SMALL_STATE(1960)] = 73616, - [SMALL_STATE(1961)] = 73623, - [SMALL_STATE(1962)] = 73630, - [SMALL_STATE(1963)] = 73637, - [SMALL_STATE(1964)] = 73644, - [SMALL_STATE(1965)] = 73651, - [SMALL_STATE(1966)] = 73658, - [SMALL_STATE(1967)] = 73665, - [SMALL_STATE(1968)] = 73672, - [SMALL_STATE(1969)] = 73679, - [SMALL_STATE(1970)] = 73686, - [SMALL_STATE(1971)] = 73693, - [SMALL_STATE(1972)] = 73700, - [SMALL_STATE(1973)] = 73707, - [SMALL_STATE(1974)] = 73714, - [SMALL_STATE(1975)] = 73721, - [SMALL_STATE(1976)] = 73728, - [SMALL_STATE(1977)] = 73735, - [SMALL_STATE(1978)] = 73742, - [SMALL_STATE(1979)] = 73749, - [SMALL_STATE(1980)] = 73756, - [SMALL_STATE(1981)] = 73763, - [SMALL_STATE(1982)] = 73770, - [SMALL_STATE(1983)] = 73777, - [SMALL_STATE(1984)] = 73784, - [SMALL_STATE(1985)] = 73791, - [SMALL_STATE(1986)] = 73798, - [SMALL_STATE(1987)] = 73805, - [SMALL_STATE(1988)] = 73812, - [SMALL_STATE(1989)] = 73819, - [SMALL_STATE(1990)] = 73826, - [SMALL_STATE(1991)] = 73833, - [SMALL_STATE(1992)] = 73840, - [SMALL_STATE(1993)] = 73847, - [SMALL_STATE(1994)] = 73854, - [SMALL_STATE(1995)] = 73861, - [SMALL_STATE(1996)] = 73868, - [SMALL_STATE(1997)] = 73875, - [SMALL_STATE(1998)] = 73882, - [SMALL_STATE(1999)] = 73889, - [SMALL_STATE(2000)] = 73896, - [SMALL_STATE(2001)] = 73903, - [SMALL_STATE(2002)] = 73910, - [SMALL_STATE(2003)] = 73917, - [SMALL_STATE(2004)] = 73924, - [SMALL_STATE(2005)] = 73931, - [SMALL_STATE(2006)] = 73938, - [SMALL_STATE(2007)] = 73945, - [SMALL_STATE(2008)] = 73952, - [SMALL_STATE(2009)] = 73959, - [SMALL_STATE(2010)] = 73966, - [SMALL_STATE(2011)] = 73973, - [SMALL_STATE(2012)] = 73980, - [SMALL_STATE(2013)] = 73987, - [SMALL_STATE(2014)] = 73994, - [SMALL_STATE(2015)] = 74001, - [SMALL_STATE(2016)] = 74008, - [SMALL_STATE(2017)] = 74015, - [SMALL_STATE(2018)] = 74022, - [SMALL_STATE(2019)] = 74029, - [SMALL_STATE(2020)] = 74036, - [SMALL_STATE(2021)] = 74043, - [SMALL_STATE(2022)] = 74050, - [SMALL_STATE(2023)] = 74057, - [SMALL_STATE(2024)] = 74064, - [SMALL_STATE(2025)] = 74071, - [SMALL_STATE(2026)] = 74078, - [SMALL_STATE(2027)] = 74085, - [SMALL_STATE(2028)] = 74092, - [SMALL_STATE(2029)] = 74099, - [SMALL_STATE(2030)] = 74106, - [SMALL_STATE(2031)] = 74113, - [SMALL_STATE(2032)] = 74120, - [SMALL_STATE(2033)] = 74127, - [SMALL_STATE(2034)] = 74134, - [SMALL_STATE(2035)] = 74141, - [SMALL_STATE(2036)] = 74148, - [SMALL_STATE(2037)] = 74155, - [SMALL_STATE(2038)] = 74162, - [SMALL_STATE(2039)] = 74169, - [SMALL_STATE(2040)] = 74176, - [SMALL_STATE(2041)] = 74183, - [SMALL_STATE(2042)] = 74190, - [SMALL_STATE(2043)] = 74197, - [SMALL_STATE(2044)] = 74204, - [SMALL_STATE(2045)] = 74211, - [SMALL_STATE(2046)] = 74218, - [SMALL_STATE(2047)] = 74225, - [SMALL_STATE(2048)] = 74232, - [SMALL_STATE(2049)] = 74239, - [SMALL_STATE(2050)] = 74246, - [SMALL_STATE(2051)] = 74253, - [SMALL_STATE(2052)] = 74260, - [SMALL_STATE(2053)] = 74267, - [SMALL_STATE(2054)] = 74274, - [SMALL_STATE(2055)] = 74281, - [SMALL_STATE(2056)] = 74288, - [SMALL_STATE(2057)] = 74295, - [SMALL_STATE(2058)] = 74302, - [SMALL_STATE(2059)] = 74309, - [SMALL_STATE(2060)] = 74316, - [SMALL_STATE(2061)] = 74323, - [SMALL_STATE(2062)] = 74330, - [SMALL_STATE(2063)] = 74337, - [SMALL_STATE(2064)] = 74344, - [SMALL_STATE(2065)] = 74351, - [SMALL_STATE(2066)] = 74358, - [SMALL_STATE(2067)] = 74365, - [SMALL_STATE(2068)] = 74372, - [SMALL_STATE(2069)] = 74379, - [SMALL_STATE(2070)] = 74386, - [SMALL_STATE(2071)] = 74393, - [SMALL_STATE(2072)] = 74400, - [SMALL_STATE(2073)] = 74407, - [SMALL_STATE(2074)] = 74414, - [SMALL_STATE(2075)] = 74421, - [SMALL_STATE(2076)] = 74428, - [SMALL_STATE(2077)] = 74435, - [SMALL_STATE(2078)] = 74442, - [SMALL_STATE(2079)] = 74449, - [SMALL_STATE(2080)] = 74456, - [SMALL_STATE(2081)] = 74463, - [SMALL_STATE(2082)] = 74470, - [SMALL_STATE(2083)] = 74477, - [SMALL_STATE(2084)] = 74484, - [SMALL_STATE(2085)] = 74491, - [SMALL_STATE(2086)] = 74498, - [SMALL_STATE(2087)] = 74505, - [SMALL_STATE(2088)] = 74512, - [SMALL_STATE(2089)] = 74519, - [SMALL_STATE(2090)] = 74526, - [SMALL_STATE(2091)] = 74533, - [SMALL_STATE(2092)] = 74540, - [SMALL_STATE(2093)] = 74547, - [SMALL_STATE(2094)] = 74554, - [SMALL_STATE(2095)] = 74561, - [SMALL_STATE(2096)] = 74568, - [SMALL_STATE(2097)] = 74575, - [SMALL_STATE(2098)] = 74582, - [SMALL_STATE(2099)] = 74589, - [SMALL_STATE(2100)] = 74596, - [SMALL_STATE(2101)] = 74603, - [SMALL_STATE(2102)] = 74610, - [SMALL_STATE(2103)] = 74617, - [SMALL_STATE(2104)] = 74624, - [SMALL_STATE(2105)] = 74631, - [SMALL_STATE(2106)] = 74638, - [SMALL_STATE(2107)] = 74645, - [SMALL_STATE(2108)] = 74652, - [SMALL_STATE(2109)] = 74659, - [SMALL_STATE(2110)] = 74666, - [SMALL_STATE(2111)] = 74673, - [SMALL_STATE(2112)] = 74680, - [SMALL_STATE(2113)] = 74687, - [SMALL_STATE(2114)] = 74694, - [SMALL_STATE(2115)] = 74701, - [SMALL_STATE(2116)] = 74708, - [SMALL_STATE(2117)] = 74715, - [SMALL_STATE(2118)] = 74722, - [SMALL_STATE(2119)] = 74729, - [SMALL_STATE(2120)] = 74736, - [SMALL_STATE(2121)] = 74743, - [SMALL_STATE(2122)] = 74750, - [SMALL_STATE(2123)] = 74757, - [SMALL_STATE(2124)] = 74764, - [SMALL_STATE(2125)] = 74771, - [SMALL_STATE(2126)] = 74778, + [SMALL_STATE(28)] = 2168, + [SMALL_STATE(29)] = 2276, + [SMALL_STATE(30)] = 2351, + [SMALL_STATE(31)] = 2420, + [SMALL_STATE(32)] = 2489, + [SMALL_STATE(33)] = 2557, + [SMALL_STATE(34)] = 2625, + [SMALL_STATE(35)] = 2693, + [SMALL_STATE(36)] = 2765, + [SMALL_STATE(37)] = 2838, + [SMALL_STATE(38)] = 2909, + [SMALL_STATE(39)] = 2980, + [SMALL_STATE(40)] = 3052, + [SMALL_STATE(41)] = 3118, + [SMALL_STATE(42)] = 3184, + [SMALL_STATE(43)] = 3250, + [SMALL_STATE(44)] = 3316, + [SMALL_STATE(45)] = 3382, + [SMALL_STATE(46)] = 3496, + [SMALL_STATE(47)] = 3562, + [SMALL_STATE(48)] = 3628, + [SMALL_STATE(49)] = 3694, + [SMALL_STATE(50)] = 3760, + [SMALL_STATE(51)] = 3832, + [SMALL_STATE(52)] = 3939, + [SMALL_STATE(53)] = 4008, + [SMALL_STATE(54)] = 4087, + [SMALL_STATE(55)] = 4156, + [SMALL_STATE(56)] = 4245, + [SMALL_STATE(57)] = 4322, + [SMALL_STATE(58)] = 4415, + [SMALL_STATE(59)] = 4510, + [SMALL_STATE(60)] = 4597, + [SMALL_STATE(61)] = 4676, + [SMALL_STATE(62)] = 4765, + [SMALL_STATE(63)] = 4844, + [SMALL_STATE(64)] = 4935, + [SMALL_STATE(65)] = 5018, + [SMALL_STATE(66)] = 5095, + [SMALL_STATE(67)] = 5198, + [SMALL_STATE(68)] = 5301, + [SMALL_STATE(69)] = 5366, + [SMALL_STATE(70)] = 5473, + [SMALL_STATE(71)] = 5552, + [SMALL_STATE(72)] = 5655, + [SMALL_STATE(73)] = 5738, + [SMALL_STATE(74)] = 5835, + [SMALL_STATE(75)] = 5938, + [SMALL_STATE(76)] = 6025, + [SMALL_STATE(77)] = 6125, + [SMALL_STATE(78)] = 6189, + [SMALL_STATE(79)] = 6267, + [SMALL_STATE(80)] = 6379, + [SMALL_STATE(81)] = 6455, + [SMALL_STATE(82)] = 6543, + [SMALL_STATE(83)] = 6643, + [SMALL_STATE(84)] = 6707, + [SMALL_STATE(85)] = 6785, + [SMALL_STATE(86)] = 6851, + [SMALL_STATE(87)] = 6955, + [SMALL_STATE(88)] = 7021, + [SMALL_STATE(89)] = 7087, + [SMALL_STATE(90)] = 7153, + [SMALL_STATE(91)] = 7235, + [SMALL_STATE(92)] = 7301, + [SMALL_STATE(93)] = 7397, + [SMALL_STATE(94)] = 7483, + [SMALL_STATE(95)] = 7599, + [SMALL_STATE(96)] = 7663, + [SMALL_STATE(97)] = 7767, + [SMALL_STATE(98)] = 7833, + [SMALL_STATE(99)] = 7897, + [SMALL_STATE(100)] = 7989, + [SMALL_STATE(101)] = 8053, + [SMALL_STATE(102)] = 8119, + [SMALL_STATE(103)] = 8185, + [SMALL_STATE(104)] = 8248, + [SMALL_STATE(105)] = 8311, + [SMALL_STATE(106)] = 8374, + [SMALL_STATE(107)] = 8437, + [SMALL_STATE(108)] = 8500, + [SMALL_STATE(109)] = 8563, + [SMALL_STATE(110)] = 8674, + [SMALL_STATE(111)] = 8737, + [SMALL_STATE(112)] = 8800, + [SMALL_STATE(113)] = 8875, + [SMALL_STATE(114)] = 8942, + [SMALL_STATE(115)] = 9005, + [SMALL_STATE(116)] = 9068, + [SMALL_STATE(117)] = 9145, + [SMALL_STATE(118)] = 9244, + [SMALL_STATE(119)] = 9321, + [SMALL_STATE(120)] = 9384, + [SMALL_STATE(121)] = 9465, + [SMALL_STATE(122)] = 9556, + [SMALL_STATE(123)] = 9643, + [SMALL_STATE(124)] = 9738, + [SMALL_STATE(125)] = 9823, + [SMALL_STATE(126)] = 9922, + [SMALL_STATE(127)] = 9985, + [SMALL_STATE(128)] = 10048, + [SMALL_STATE(129)] = 10111, + [SMALL_STATE(130)] = 10174, + [SMALL_STATE(131)] = 10237, + [SMALL_STATE(132)] = 10314, + [SMALL_STATE(133)] = 10417, + [SMALL_STATE(134)] = 10480, + [SMALL_STATE(135)] = 10561, + [SMALL_STATE(136)] = 10628, + [SMALL_STATE(137)] = 10691, + [SMALL_STATE(138)] = 10780, + [SMALL_STATE(139)] = 10867, + [SMALL_STATE(140)] = 10960, + [SMALL_STATE(141)] = 11045, + [SMALL_STATE(142)] = 11146, + [SMALL_STATE(143)] = 11209, + [SMALL_STATE(144)] = 11272, + [SMALL_STATE(145)] = 11335, + [SMALL_STATE(146)] = 11444, + [SMALL_STATE(147)] = 11507, + [SMALL_STATE(148)] = 11570, + [SMALL_STATE(149)] = 11679, + [SMALL_STATE(150)] = 11742, + [SMALL_STATE(151)] = 11805, + [SMALL_STATE(152)] = 11868, + [SMALL_STATE(153)] = 11969, + [SMALL_STATE(154)] = 12074, + [SMALL_STATE(155)] = 12151, + [SMALL_STATE(156)] = 12214, + [SMALL_STATE(157)] = 12277, + [SMALL_STATE(158)] = 12340, + [SMALL_STATE(159)] = 12403, + [SMALL_STATE(160)] = 12466, + [SMALL_STATE(161)] = 12529, + [SMALL_STATE(162)] = 12592, + [SMALL_STATE(163)] = 12655, + [SMALL_STATE(164)] = 12718, + [SMALL_STATE(165)] = 12793, + [SMALL_STATE(166)] = 12856, + [SMALL_STATE(167)] = 12919, + [SMALL_STATE(168)] = 12982, + [SMALL_STATE(169)] = 13045, + [SMALL_STATE(170)] = 13148, + [SMALL_STATE(171)] = 13240, + [SMALL_STATE(172)] = 13320, + [SMALL_STATE(173)] = 13382, + [SMALL_STATE(174)] = 13444, + [SMALL_STATE(175)] = 13520, + [SMALL_STATE(176)] = 13608, + [SMALL_STATE(177)] = 13692, + [SMALL_STATE(178)] = 13792, + [SMALL_STATE(179)] = 13854, + [SMALL_STATE(180)] = 13920, + [SMALL_STATE(181)] = 13988, + [SMALL_STATE(182)] = 14074, + [SMALL_STATE(183)] = 14174, + [SMALL_STATE(184)] = 14254, + [SMALL_STATE(185)] = 14328, + [SMALL_STATE(186)] = 14430, + [SMALL_STATE(187)] = 14506, + [SMALL_STATE(188)] = 14610, + [SMALL_STATE(189)] = 14686, + [SMALL_STATE(190)] = 14754, + [SMALL_STATE(191)] = 14854, + [SMALL_STATE(192)] = 14944, + [SMALL_STATE(193)] = 15028, + [SMALL_STATE(194)] = 15090, + [SMALL_STATE(195)] = 15176, + [SMALL_STATE(196)] = 15278, + [SMALL_STATE(197)] = 15378, + [SMALL_STATE(198)] = 15454, + [SMALL_STATE(199)] = 15520, + [SMALL_STATE(200)] = 15626, + [SMALL_STATE(201)] = 15700, + [SMALL_STATE(202)] = 15794, + [SMALL_STATE(203)] = 15900, + [SMALL_STATE(204)] = 16001, + [SMALL_STATE(205)] = 16062, + [SMALL_STATE(206)] = 16123, + [SMALL_STATE(207)] = 16184, + [SMALL_STATE(208)] = 16245, + [SMALL_STATE(209)] = 16312, + [SMALL_STATE(210)] = 16373, + [SMALL_STATE(211)] = 16434, + [SMALL_STATE(212)] = 16495, + [SMALL_STATE(213)] = 16562, + [SMALL_STATE(214)] = 16623, + [SMALL_STATE(215)] = 16690, + [SMALL_STATE(216)] = 16751, + [SMALL_STATE(217)] = 16852, + [SMALL_STATE(218)] = 16913, + [SMALL_STATE(219)] = 16974, + [SMALL_STATE(220)] = 17041, + [SMALL_STATE(221)] = 17102, + [SMALL_STATE(222)] = 17167, + [SMALL_STATE(223)] = 17228, + [SMALL_STATE(224)] = 17334, + [SMALL_STATE(225)] = 17394, + [SMALL_STATE(226)] = 17500, + [SMALL_STATE(227)] = 17606, + [SMALL_STATE(228)] = 17666, + [SMALL_STATE(229)] = 17772, + [SMALL_STATE(230)] = 17878, + [SMALL_STATE(231)] = 17984, + [SMALL_STATE(232)] = 18090, + [SMALL_STATE(233)] = 18196, + [SMALL_STATE(234)] = 18302, + [SMALL_STATE(235)] = 18362, + [SMALL_STATE(236)] = 18468, + [SMALL_STATE(237)] = 18532, + [SMALL_STATE(238)] = 18638, + [SMALL_STATE(239)] = 18702, + [SMALL_STATE(240)] = 18762, + [SMALL_STATE(241)] = 18828, + [SMALL_STATE(242)] = 18888, + [SMALL_STATE(243)] = 18948, + [SMALL_STATE(244)] = 19080, + [SMALL_STATE(245)] = 19144, + [SMALL_STATE(246)] = 19250, + [SMALL_STATE(247)] = 19314, + [SMALL_STATE(248)] = 19420, + [SMALL_STATE(249)] = 19526, + [SMALL_STATE(250)] = 19632, + [SMALL_STATE(251)] = 19698, + [SMALL_STATE(252)] = 19758, + [SMALL_STATE(253)] = 19864, + [SMALL_STATE(254)] = 19970, + [SMALL_STATE(255)] = 20034, + [SMALL_STATE(256)] = 20094, + [SMALL_STATE(257)] = 20200, + [SMALL_STATE(258)] = 20332, + [SMALL_STATE(259)] = 20396, + [SMALL_STATE(260)] = 20502, + [SMALL_STATE(261)] = 20563, + [SMALL_STATE(262)] = 20622, + [SMALL_STATE(263)] = 20681, + [SMALL_STATE(264)] = 20744, + [SMALL_STATE(265)] = 20807, + [SMALL_STATE(266)] = 20906, + [SMALL_STATE(267)] = 20969, + [SMALL_STATE(268)] = 21030, + [SMALL_STATE(269)] = 21089, + [SMALL_STATE(270)] = 21192, + [SMALL_STATE(271)] = 21253, + [SMALL_STATE(272)] = 21318, + [SMALL_STATE(273)] = 21377, + [SMALL_STATE(274)] = 21438, + [SMALL_STATE(275)] = 21499, + [SMALL_STATE(276)] = 21564, + [SMALL_STATE(277)] = 21629, + [SMALL_STATE(278)] = 21688, + [SMALL_STATE(279)] = 21749, + [SMALL_STATE(280)] = 21852, + [SMALL_STATE(281)] = 21915, + [SMALL_STATE(282)] = 22018, + [SMALL_STATE(283)] = 22121, + [SMALL_STATE(284)] = 22180, + [SMALL_STATE(285)] = 22245, + [SMALL_STATE(286)] = 22304, + [SMALL_STATE(287)] = 22363, + [SMALL_STATE(288)] = 22424, + [SMALL_STATE(289)] = 22527, + [SMALL_STATE(290)] = 22586, + [SMALL_STATE(291)] = 22647, + [SMALL_STATE(292)] = 22705, + [SMALL_STATE(293)] = 22763, + [SMALL_STATE(294)] = 22821, + [SMALL_STATE(295)] = 22879, + [SMALL_STATE(296)] = 23009, + [SMALL_STATE(297)] = 23067, + [SMALL_STATE(298)] = 23125, + [SMALL_STATE(299)] = 23183, + [SMALL_STATE(300)] = 23241, + [SMALL_STATE(301)] = 23299, + [SMALL_STATE(302)] = 23357, + [SMALL_STATE(303)] = 23415, + [SMALL_STATE(304)] = 23473, + [SMALL_STATE(305)] = 23531, + [SMALL_STATE(306)] = 23589, + [SMALL_STATE(307)] = 23647, + [SMALL_STATE(308)] = 23711, + [SMALL_STATE(309)] = 23769, + [SMALL_STATE(310)] = 23827, + [SMALL_STATE(311)] = 23891, + [SMALL_STATE(312)] = 23949, + [SMALL_STATE(313)] = 24007, + [SMALL_STATE(314)] = 24065, + [SMALL_STATE(315)] = 24123, + [SMALL_STATE(316)] = 24181, + [SMALL_STATE(317)] = 24239, + [SMALL_STATE(318)] = 24301, + [SMALL_STATE(319)] = 24359, + [SMALL_STATE(320)] = 24417, + [SMALL_STATE(321)] = 24475, + [SMALL_STATE(322)] = 24533, + [SMALL_STATE(323)] = 24591, + [SMALL_STATE(324)] = 24649, + [SMALL_STATE(325)] = 24779, + [SMALL_STATE(326)] = 24837, + [SMALL_STATE(327)] = 24895, + [SMALL_STATE(328)] = 24953, + [SMALL_STATE(329)] = 25011, + [SMALL_STATE(330)] = 25069, + [SMALL_STATE(331)] = 25127, + [SMALL_STATE(332)] = 25185, + [SMALL_STATE(333)] = 25243, + [SMALL_STATE(334)] = 25301, + [SMALL_STATE(335)] = 25359, + [SMALL_STATE(336)] = 25417, + [SMALL_STATE(337)] = 25475, + [SMALL_STATE(338)] = 25533, + [SMALL_STATE(339)] = 25591, + [SMALL_STATE(340)] = 25651, + [SMALL_STATE(341)] = 25711, + [SMALL_STATE(342)] = 25769, + [SMALL_STATE(343)] = 25827, + [SMALL_STATE(344)] = 25885, + [SMALL_STATE(345)] = 25943, + [SMALL_STATE(346)] = 26001, + [SMALL_STATE(347)] = 26059, + [SMALL_STATE(348)] = 26117, + [SMALL_STATE(349)] = 26179, + [SMALL_STATE(350)] = 26239, + [SMALL_STATE(351)] = 26297, + [SMALL_STATE(352)] = 26355, + [SMALL_STATE(353)] = 26415, + [SMALL_STATE(354)] = 26476, + [SMALL_STATE(355)] = 26533, + [SMALL_STATE(356)] = 26590, + [SMALL_STATE(357)] = 26647, + [SMALL_STATE(358)] = 26704, + [SMALL_STATE(359)] = 26761, + [SMALL_STATE(360)] = 26818, + [SMALL_STATE(361)] = 26877, + [SMALL_STATE(362)] = 26934, + [SMALL_STATE(363)] = 26995, + [SMALL_STATE(364)] = 27052, + [SMALL_STATE(365)] = 27111, + [SMALL_STATE(366)] = 27170, + [SMALL_STATE(367)] = 27227, + [SMALL_STATE(368)] = 27332, + [SMALL_STATE(369)] = 27391, + [SMALL_STATE(370)] = 27450, + [SMALL_STATE(371)] = 27547, + [SMALL_STATE(372)] = 27606, + [SMALL_STATE(373)] = 27665, + [SMALL_STATE(374)] = 27722, + [SMALL_STATE(375)] = 27779, + [SMALL_STATE(376)] = 27838, + [SMALL_STATE(377)] = 27895, + [SMALL_STATE(378)] = 27952, + [SMALL_STATE(379)] = 28009, + [SMALL_STATE(380)] = 28066, + [SMALL_STATE(381)] = 28123, + [SMALL_STATE(382)] = 28180, + [SMALL_STATE(383)] = 28241, + [SMALL_STATE(384)] = 28298, + [SMALL_STATE(385)] = 28355, + [SMALL_STATE(386)] = 28412, + [SMALL_STATE(387)] = 28541, + [SMALL_STATE(388)] = 28670, + [SMALL_STATE(389)] = 28727, + [SMALL_STATE(390)] = 28788, + [SMALL_STATE(391)] = 28844, + [SMALL_STATE(392)] = 28900, + [SMALL_STATE(393)] = 28956, + [SMALL_STATE(394)] = 29012, + [SMALL_STATE(395)] = 29068, + [SMALL_STATE(396)] = 29124, + [SMALL_STATE(397)] = 29180, + [SMALL_STATE(398)] = 29236, + [SMALL_STATE(399)] = 29292, + [SMALL_STATE(400)] = 29350, + [SMALL_STATE(401)] = 29406, + [SMALL_STATE(402)] = 29462, + [SMALL_STATE(403)] = 29520, + [SMALL_STATE(404)] = 29578, + [SMALL_STATE(405)] = 29634, + [SMALL_STATE(406)] = 29692, + [SMALL_STATE(407)] = 29748, + [SMALL_STATE(408)] = 29804, + [SMALL_STATE(409)] = 29860, + [SMALL_STATE(410)] = 29916, + [SMALL_STATE(411)] = 29972, + [SMALL_STATE(412)] = 30028, + [SMALL_STATE(413)] = 30084, + [SMALL_STATE(414)] = 30140, + [SMALL_STATE(415)] = 30196, + [SMALL_STATE(416)] = 30252, + [SMALL_STATE(417)] = 30320, + [SMALL_STATE(418)] = 30376, + [SMALL_STATE(419)] = 30446, + [SMALL_STATE(420)] = 30502, + [SMALL_STATE(421)] = 30558, + [SMALL_STATE(422)] = 30614, + [SMALL_STATE(423)] = 30670, + [SMALL_STATE(424)] = 30764, + [SMALL_STATE(425)] = 30820, + [SMALL_STATE(426)] = 30876, + [SMALL_STATE(427)] = 30978, + [SMALL_STATE(428)] = 31034, + [SMALL_STATE(429)] = 31090, + [SMALL_STATE(430)] = 31184, + [SMALL_STATE(431)] = 31254, + [SMALL_STATE(432)] = 31310, + [SMALL_STATE(433)] = 31366, + [SMALL_STATE(434)] = 31440, + [SMALL_STATE(435)] = 31522, + [SMALL_STATE(436)] = 31578, + [SMALL_STATE(437)] = 31634, + [SMALL_STATE(438)] = 31714, + [SMALL_STATE(439)] = 31800, + [SMALL_STATE(440)] = 31856, + [SMALL_STATE(441)] = 31912, + [SMALL_STATE(442)] = 31990, + [SMALL_STATE(443)] = 32084, + [SMALL_STATE(444)] = 32180, + [SMALL_STATE(445)] = 32236, + [SMALL_STATE(446)] = 32294, + [SMALL_STATE(447)] = 32350, + [SMALL_STATE(448)] = 32406, + [SMALL_STATE(449)] = 32464, + [SMALL_STATE(450)] = 32568, + [SMALL_STATE(451)] = 32666, + [SMALL_STATE(452)] = 32722, + [SMALL_STATE(453)] = 32780, + [SMALL_STATE(454)] = 32838, + [SMALL_STATE(455)] = 32893, + [SMALL_STATE(456)] = 32948, + [SMALL_STATE(457)] = 33003, + [SMALL_STATE(458)] = 33058, + [SMALL_STATE(459)] = 33151, + [SMALL_STATE(460)] = 33206, + [SMALL_STATE(461)] = 33261, + [SMALL_STATE(462)] = 33354, + [SMALL_STATE(463)] = 33409, + [SMALL_STATE(464)] = 33464, + [SMALL_STATE(465)] = 33533, + [SMALL_STATE(466)] = 33588, + [SMALL_STATE(467)] = 33643, + [SMALL_STATE(468)] = 33698, + [SMALL_STATE(469)] = 33753, + [SMALL_STATE(470)] = 33808, + [SMALL_STATE(471)] = 33863, + [SMALL_STATE(472)] = 33918, + [SMALL_STATE(473)] = 33987, + [SMALL_STATE(474)] = 34060, + [SMALL_STATE(475)] = 34115, + [SMALL_STATE(476)] = 34170, + [SMALL_STATE(477)] = 34267, + [SMALL_STATE(478)] = 34322, + [SMALL_STATE(479)] = 34377, + [SMALL_STATE(480)] = 34432, + [SMALL_STATE(481)] = 34487, + [SMALL_STATE(482)] = 34542, + [SMALL_STATE(483)] = 34623, + [SMALL_STATE(484)] = 34702, + [SMALL_STATE(485)] = 34757, + [SMALL_STATE(486)] = 34812, + [SMALL_STATE(487)] = 34879, + [SMALL_STATE(488)] = 34934, + [SMALL_STATE(489)] = 34989, + [SMALL_STATE(490)] = 35044, + [SMALL_STATE(491)] = 35099, + [SMALL_STATE(492)] = 35154, + [SMALL_STATE(493)] = 35209, + [SMALL_STATE(494)] = 35264, + [SMALL_STATE(495)] = 35319, + [SMALL_STATE(496)] = 35374, + [SMALL_STATE(497)] = 35459, + [SMALL_STATE(498)] = 35514, + [SMALL_STATE(499)] = 35569, + [SMALL_STATE(500)] = 35624, + [SMALL_STATE(501)] = 35701, + [SMALL_STATE(502)] = 35756, + [SMALL_STATE(503)] = 35811, + [SMALL_STATE(504)] = 35866, + [SMALL_STATE(505)] = 35921, + [SMALL_STATE(506)] = 36014, + [SMALL_STATE(507)] = 36069, + [SMALL_STATE(508)] = 36124, + [SMALL_STATE(509)] = 36178, + [SMALL_STATE(510)] = 36232, + [SMALL_STATE(511)] = 36288, + [SMALL_STATE(512)] = 36344, + [SMALL_STATE(513)] = 36440, + [SMALL_STATE(514)] = 36498, + [SMALL_STATE(515)] = 36592, + [SMALL_STATE(516)] = 36687, + [SMALL_STATE(517)] = 36782, + [SMALL_STATE(518)] = 36877, + [SMALL_STATE(519)] = 36972, + [SMALL_STATE(520)] = 37067, + [SMALL_STATE(521)] = 37162, + [SMALL_STATE(522)] = 37257, + [SMALL_STATE(523)] = 37314, + [SMALL_STATE(524)] = 37409, + [SMALL_STATE(525)] = 37504, + [SMALL_STATE(526)] = 37599, + [SMALL_STATE(527)] = 37694, + [SMALL_STATE(528)] = 37789, + [SMALL_STATE(529)] = 37884, + [SMALL_STATE(530)] = 37979, + [SMALL_STATE(531)] = 38074, + [SMALL_STATE(532)] = 38169, + [SMALL_STATE(533)] = 38228, + [SMALL_STATE(534)] = 38323, + [SMALL_STATE(535)] = 38418, + [SMALL_STATE(536)] = 38513, + [SMALL_STATE(537)] = 38608, + [SMALL_STATE(538)] = 38703, + [SMALL_STATE(539)] = 38798, + [SMALL_STATE(540)] = 38893, + [SMALL_STATE(541)] = 38988, + [SMALL_STATE(542)] = 39083, + [SMALL_STATE(543)] = 39178, + [SMALL_STATE(544)] = 39273, + [SMALL_STATE(545)] = 39368, + [SMALL_STATE(546)] = 39459, + [SMALL_STATE(547)] = 39554, + [SMALL_STATE(548)] = 39649, + [SMALL_STATE(549)] = 39744, + [SMALL_STATE(550)] = 39839, + [SMALL_STATE(551)] = 39934, + [SMALL_STATE(552)] = 40029, + [SMALL_STATE(553)] = 40124, + [SMALL_STATE(554)] = 40219, + [SMALL_STATE(555)] = 40314, + [SMALL_STATE(556)] = 40409, + [SMALL_STATE(557)] = 40504, + [SMALL_STATE(558)] = 40599, + [SMALL_STATE(559)] = 40694, + [SMALL_STATE(560)] = 40789, + [SMALL_STATE(561)] = 40884, + [SMALL_STATE(562)] = 40942, + [SMALL_STATE(563)] = 40994, + [SMALL_STATE(564)] = 41046, + [SMALL_STATE(565)] = 41098, + [SMALL_STATE(566)] = 41188, + [SMALL_STATE(567)] = 41240, + [SMALL_STATE(568)] = 41292, + [SMALL_STATE(569)] = 41384, + [SMALL_STATE(570)] = 41474, + [SMALL_STATE(571)] = 41566, + [SMALL_STATE(572)] = 41658, + [SMALL_STATE(573)] = 41716, + [SMALL_STATE(574)] = 41806, + [SMALL_STATE(575)] = 41857, + [SMALL_STATE(576)] = 41946, + [SMALL_STATE(577)] = 42035, + [SMALL_STATE(578)] = 42086, + [SMALL_STATE(579)] = 42175, + [SMALL_STATE(580)] = 42264, + [SMALL_STATE(581)] = 42321, + [SMALL_STATE(582)] = 42410, + [SMALL_STATE(583)] = 42499, + [SMALL_STATE(584)] = 42588, + [SMALL_STATE(585)] = 42639, + [SMALL_STATE(586)] = 42728, + [SMALL_STATE(587)] = 42817, + [SMALL_STATE(588)] = 42906, + [SMALL_STATE(589)] = 42995, + [SMALL_STATE(590)] = 43046, + [SMALL_STATE(591)] = 43135, + [SMALL_STATE(592)] = 43186, + [SMALL_STATE(593)] = 43275, + [SMALL_STATE(594)] = 43364, + [SMALL_STATE(595)] = 43419, + [SMALL_STATE(596)] = 43508, + [SMALL_STATE(597)] = 43597, + [SMALL_STATE(598)] = 43686, + [SMALL_STATE(599)] = 43775, + [SMALL_STATE(600)] = 43830, + [SMALL_STATE(601)] = 43882, + [SMALL_STATE(602)] = 43936, + [SMALL_STATE(603)] = 43988, + [SMALL_STATE(604)] = 44038, + [SMALL_STATE(605)] = 44090, + [SMALL_STATE(606)] = 44142, + [SMALL_STATE(607)] = 44196, + [SMALL_STATE(608)] = 44245, + [SMALL_STATE(609)] = 44296, + [SMALL_STATE(610)] = 44345, + [SMALL_STATE(611)] = 44394, + [SMALL_STATE(612)] = 44443, + [SMALL_STATE(613)] = 44492, + [SMALL_STATE(614)] = 44541, + [SMALL_STATE(615)] = 44590, + [SMALL_STATE(616)] = 44639, + [SMALL_STATE(617)] = 44688, + [SMALL_STATE(618)] = 44737, + [SMALL_STATE(619)] = 44788, + [SMALL_STATE(620)] = 44837, + [SMALL_STATE(621)] = 44886, + [SMALL_STATE(622)] = 44935, + [SMALL_STATE(623)] = 44984, + [SMALL_STATE(624)] = 45035, + [SMALL_STATE(625)] = 45084, + [SMALL_STATE(626)] = 45133, + [SMALL_STATE(627)] = 45182, + [SMALL_STATE(628)] = 45231, + [SMALL_STATE(629)] = 45280, + [SMALL_STATE(630)] = 45329, + [SMALL_STATE(631)] = 45378, + [SMALL_STATE(632)] = 45427, + [SMALL_STATE(633)] = 45478, + [SMALL_STATE(634)] = 45526, + [SMALL_STATE(635)] = 45574, + [SMALL_STATE(636)] = 45622, + [SMALL_STATE(637)] = 45670, + [SMALL_STATE(638)] = 45718, + [SMALL_STATE(639)] = 45766, + [SMALL_STATE(640)] = 45814, + [SMALL_STATE(641)] = 45862, + [SMALL_STATE(642)] = 45910, + [SMALL_STATE(643)] = 45958, + [SMALL_STATE(644)] = 46006, + [SMALL_STATE(645)] = 46054, + [SMALL_STATE(646)] = 46102, + [SMALL_STATE(647)] = 46150, + [SMALL_STATE(648)] = 46198, + [SMALL_STATE(649)] = 46246, + [SMALL_STATE(650)] = 46294, + [SMALL_STATE(651)] = 46342, + [SMALL_STATE(652)] = 46390, + [SMALL_STATE(653)] = 46438, + [SMALL_STATE(654)] = 46486, + [SMALL_STATE(655)] = 46574, + [SMALL_STATE(656)] = 46616, + [SMALL_STATE(657)] = 46658, + [SMALL_STATE(658)] = 46700, + [SMALL_STATE(659)] = 46788, + [SMALL_STATE(660)] = 46872, + [SMALL_STATE(661)] = 46956, + [SMALL_STATE(662)] = 47040, + [SMALL_STATE(663)] = 47124, + [SMALL_STATE(664)] = 47208, + [SMALL_STATE(665)] = 47292, + [SMALL_STATE(666)] = 47376, + [SMALL_STATE(667)] = 47460, + [SMALL_STATE(668)] = 47544, + [SMALL_STATE(669)] = 47628, + [SMALL_STATE(670)] = 47712, + [SMALL_STATE(671)] = 47796, + [SMALL_STATE(672)] = 47880, + [SMALL_STATE(673)] = 47964, + [SMALL_STATE(674)] = 48048, + [SMALL_STATE(675)] = 48132, + [SMALL_STATE(676)] = 48216, + [SMALL_STATE(677)] = 48297, + [SMALL_STATE(678)] = 48378, + [SMALL_STATE(679)] = 48459, + [SMALL_STATE(680)] = 48540, + [SMALL_STATE(681)] = 48621, + [SMALL_STATE(682)] = 48702, + [SMALL_STATE(683)] = 48783, + [SMALL_STATE(684)] = 48864, + [SMALL_STATE(685)] = 48945, + [SMALL_STATE(686)] = 49026, + [SMALL_STATE(687)] = 49107, + [SMALL_STATE(688)] = 49188, + [SMALL_STATE(689)] = 49256, + [SMALL_STATE(690)] = 49334, + [SMALL_STATE(691)] = 49402, + [SMALL_STATE(692)] = 49477, + [SMALL_STATE(693)] = 49552, + [SMALL_STATE(694)] = 49627, + [SMALL_STATE(695)] = 49702, + [SMALL_STATE(696)] = 49777, + [SMALL_STATE(697)] = 49852, + [SMALL_STATE(698)] = 49927, + [SMALL_STATE(699)] = 49999, + [SMALL_STATE(700)] = 50071, + [SMALL_STATE(701)] = 50143, + [SMALL_STATE(702)] = 50215, + [SMALL_STATE(703)] = 50287, + [SMALL_STATE(704)] = 50359, + [SMALL_STATE(705)] = 50431, + [SMALL_STATE(706)] = 50503, + [SMALL_STATE(707)] = 50575, + [SMALL_STATE(708)] = 50647, + [SMALL_STATE(709)] = 50719, + [SMALL_STATE(710)] = 50791, + [SMALL_STATE(711)] = 50863, + [SMALL_STATE(712)] = 50935, + [SMALL_STATE(713)] = 51007, + [SMALL_STATE(714)] = 51079, + [SMALL_STATE(715)] = 51151, + [SMALL_STATE(716)] = 51223, + [SMALL_STATE(717)] = 51295, + [SMALL_STATE(718)] = 51367, + [SMALL_STATE(719)] = 51439, + [SMALL_STATE(720)] = 51511, + [SMALL_STATE(721)] = 51583, + [SMALL_STATE(722)] = 51655, + [SMALL_STATE(723)] = 51727, + [SMALL_STATE(724)] = 51799, + [SMALL_STATE(725)] = 51871, + [SMALL_STATE(726)] = 51943, + [SMALL_STATE(727)] = 52015, + [SMALL_STATE(728)] = 52087, + [SMALL_STATE(729)] = 52159, + [SMALL_STATE(730)] = 52228, + [SMALL_STATE(731)] = 52297, + [SMALL_STATE(732)] = 52366, + [SMALL_STATE(733)] = 52435, + [SMALL_STATE(734)] = 52504, + [SMALL_STATE(735)] = 52573, + [SMALL_STATE(736)] = 52642, + [SMALL_STATE(737)] = 52711, + [SMALL_STATE(738)] = 52780, + [SMALL_STATE(739)] = 52849, + [SMALL_STATE(740)] = 52918, + [SMALL_STATE(741)] = 52987, + [SMALL_STATE(742)] = 53056, + [SMALL_STATE(743)] = 53125, + [SMALL_STATE(744)] = 53194, + [SMALL_STATE(745)] = 53263, + [SMALL_STATE(746)] = 53332, + [SMALL_STATE(747)] = 53401, + [SMALL_STATE(748)] = 53470, + [SMALL_STATE(749)] = 53539, + [SMALL_STATE(750)] = 53608, + [SMALL_STATE(751)] = 53677, + [SMALL_STATE(752)] = 53746, + [SMALL_STATE(753)] = 53815, + [SMALL_STATE(754)] = 53884, + [SMALL_STATE(755)] = 53953, + [SMALL_STATE(756)] = 54022, + [SMALL_STATE(757)] = 54091, + [SMALL_STATE(758)] = 54160, + [SMALL_STATE(759)] = 54229, + [SMALL_STATE(760)] = 54298, + [SMALL_STATE(761)] = 54367, + [SMALL_STATE(762)] = 54436, + [SMALL_STATE(763)] = 54505, + [SMALL_STATE(764)] = 54574, + [SMALL_STATE(765)] = 54643, + [SMALL_STATE(766)] = 54712, + [SMALL_STATE(767)] = 54781, + [SMALL_STATE(768)] = 54850, + [SMALL_STATE(769)] = 54919, + [SMALL_STATE(770)] = 54988, + [SMALL_STATE(771)] = 55057, + [SMALL_STATE(772)] = 55126, + [SMALL_STATE(773)] = 55195, + [SMALL_STATE(774)] = 55264, + [SMALL_STATE(775)] = 55333, + [SMALL_STATE(776)] = 55402, + [SMALL_STATE(777)] = 55471, + [SMALL_STATE(778)] = 55540, + [SMALL_STATE(779)] = 55609, + [SMALL_STATE(780)] = 55678, + [SMALL_STATE(781)] = 55747, + [SMALL_STATE(782)] = 55816, + [SMALL_STATE(783)] = 55885, + [SMALL_STATE(784)] = 55954, + [SMALL_STATE(785)] = 56023, + [SMALL_STATE(786)] = 56092, + [SMALL_STATE(787)] = 56161, + [SMALL_STATE(788)] = 56230, + [SMALL_STATE(789)] = 56299, + [SMALL_STATE(790)] = 56368, + [SMALL_STATE(791)] = 56437, + [SMALL_STATE(792)] = 56506, + [SMALL_STATE(793)] = 56575, + [SMALL_STATE(794)] = 56644, + [SMALL_STATE(795)] = 56713, + [SMALL_STATE(796)] = 56782, + [SMALL_STATE(797)] = 56851, + [SMALL_STATE(798)] = 56920, + [SMALL_STATE(799)] = 56989, + [SMALL_STATE(800)] = 57058, + [SMALL_STATE(801)] = 57127, + [SMALL_STATE(802)] = 57196, + [SMALL_STATE(803)] = 57265, + [SMALL_STATE(804)] = 57334, + [SMALL_STATE(805)] = 57403, + [SMALL_STATE(806)] = 57472, + [SMALL_STATE(807)] = 57541, + [SMALL_STATE(808)] = 57610, + [SMALL_STATE(809)] = 57679, + [SMALL_STATE(810)] = 57748, + [SMALL_STATE(811)] = 57817, + [SMALL_STATE(812)] = 57886, + [SMALL_STATE(813)] = 57955, + [SMALL_STATE(814)] = 58024, + [SMALL_STATE(815)] = 58093, + [SMALL_STATE(816)] = 58162, + [SMALL_STATE(817)] = 58231, + [SMALL_STATE(818)] = 58300, + [SMALL_STATE(819)] = 58369, + [SMALL_STATE(820)] = 58438, + [SMALL_STATE(821)] = 58507, + [SMALL_STATE(822)] = 58576, + [SMALL_STATE(823)] = 58645, + [SMALL_STATE(824)] = 58714, + [SMALL_STATE(825)] = 58783, + [SMALL_STATE(826)] = 58852, + [SMALL_STATE(827)] = 58921, + [SMALL_STATE(828)] = 58990, + [SMALL_STATE(829)] = 59059, + [SMALL_STATE(830)] = 59128, + [SMALL_STATE(831)] = 59197, + [SMALL_STATE(832)] = 59266, + [SMALL_STATE(833)] = 59335, + [SMALL_STATE(834)] = 59404, + [SMALL_STATE(835)] = 59473, + [SMALL_STATE(836)] = 59542, + [SMALL_STATE(837)] = 59611, + [SMALL_STATE(838)] = 59680, + [SMALL_STATE(839)] = 59749, + [SMALL_STATE(840)] = 59818, + [SMALL_STATE(841)] = 59887, + [SMALL_STATE(842)] = 59956, + [SMALL_STATE(843)] = 60025, + [SMALL_STATE(844)] = 60094, + [SMALL_STATE(845)] = 60163, + [SMALL_STATE(846)] = 60232, + [SMALL_STATE(847)] = 60301, + [SMALL_STATE(848)] = 60370, + [SMALL_STATE(849)] = 60439, + [SMALL_STATE(850)] = 60508, + [SMALL_STATE(851)] = 60577, + [SMALL_STATE(852)] = 60646, + [SMALL_STATE(853)] = 60715, + [SMALL_STATE(854)] = 60784, + [SMALL_STATE(855)] = 60853, + [SMALL_STATE(856)] = 60922, + [SMALL_STATE(857)] = 60991, + [SMALL_STATE(858)] = 61060, + [SMALL_STATE(859)] = 61129, + [SMALL_STATE(860)] = 61198, + [SMALL_STATE(861)] = 61267, + [SMALL_STATE(862)] = 61336, + [SMALL_STATE(863)] = 61405, + [SMALL_STATE(864)] = 61474, + [SMALL_STATE(865)] = 61543, + [SMALL_STATE(866)] = 61612, + [SMALL_STATE(867)] = 61681, + [SMALL_STATE(868)] = 61750, + [SMALL_STATE(869)] = 61819, + [SMALL_STATE(870)] = 61888, + [SMALL_STATE(871)] = 61957, + [SMALL_STATE(872)] = 62026, + [SMALL_STATE(873)] = 62095, + [SMALL_STATE(874)] = 62164, + [SMALL_STATE(875)] = 62232, + [SMALL_STATE(876)] = 62300, + [SMALL_STATE(877)] = 62368, + [SMALL_STATE(878)] = 62436, + [SMALL_STATE(879)] = 62468, + [SMALL_STATE(880)] = 62501, + [SMALL_STATE(881)] = 62534, + [SMALL_STATE(882)] = 62573, + [SMALL_STATE(883)] = 62641, + [SMALL_STATE(884)] = 62703, + [SMALL_STATE(885)] = 62771, + [SMALL_STATE(886)] = 62803, + [SMALL_STATE(887)] = 62871, + [SMALL_STATE(888)] = 62933, + [SMALL_STATE(889)] = 62965, + [SMALL_STATE(890)] = 63001, + [SMALL_STATE(891)] = 63069, + [SMALL_STATE(892)] = 63099, + [SMALL_STATE(893)] = 63141, + [SMALL_STATE(894)] = 63183, + [SMALL_STATE(895)] = 63225, + [SMALL_STATE(896)] = 63287, + [SMALL_STATE(897)] = 63349, + [SMALL_STATE(898)] = 63376, + [SMALL_STATE(899)] = 63405, + [SMALL_STATE(900)] = 63432, + [SMALL_STATE(901)] = 63459, + [SMALL_STATE(902)] = 63486, + [SMALL_STATE(903)] = 63553, + [SMALL_STATE(904)] = 63620, + [SMALL_STATE(905)] = 63649, + [SMALL_STATE(906)] = 63716, + [SMALL_STATE(907)] = 63753, + [SMALL_STATE(908)] = 63786, + [SMALL_STATE(909)] = 63813, + [SMALL_STATE(910)] = 63842, + [SMALL_STATE(911)] = 63869, + [SMALL_STATE(912)] = 63896, + [SMALL_STATE(913)] = 63923, + [SMALL_STATE(914)] = 63952, + [SMALL_STATE(915)] = 64019, + [SMALL_STATE(916)] = 64075, + [SMALL_STATE(917)] = 64131, + [SMALL_STATE(918)] = 64167, + [SMALL_STATE(919)] = 64223, + [SMALL_STATE(920)] = 64279, + [SMALL_STATE(921)] = 64335, + [SMALL_STATE(922)] = 64375, + [SMALL_STATE(923)] = 64437, + [SMALL_STATE(924)] = 64499, + [SMALL_STATE(925)] = 64527, + [SMALL_STATE(926)] = 64561, + [SMALL_STATE(927)] = 64623, + [SMALL_STATE(928)] = 64653, + [SMALL_STATE(929)] = 64693, + [SMALL_STATE(930)] = 64755, + [SMALL_STATE(931)] = 64795, + [SMALL_STATE(932)] = 64825, + [SMALL_STATE(933)] = 64886, + [SMALL_STATE(934)] = 64913, + [SMALL_STATE(935)] = 64944, + [SMALL_STATE(936)] = 64973, + [SMALL_STATE(937)] = 65012, + [SMALL_STATE(938)] = 65057, + [SMALL_STATE(939)] = 65102, + [SMALL_STATE(940)] = 65129, + [SMALL_STATE(941)] = 65168, + [SMALL_STATE(942)] = 65229, + [SMALL_STATE(943)] = 65262, + [SMALL_STATE(944)] = 65307, + [SMALL_STATE(945)] = 65368, + [SMALL_STATE(946)] = 65413, + [SMALL_STATE(947)] = 65458, + [SMALL_STATE(948)] = 65503, + [SMALL_STATE(949)] = 65532, + [SMALL_STATE(950)] = 65593, + [SMALL_STATE(951)] = 65632, + [SMALL_STATE(952)] = 65659, + [SMALL_STATE(953)] = 65704, + [SMALL_STATE(954)] = 65731, + [SMALL_STATE(955)] = 65760, + [SMALL_STATE(956)] = 65784, + [SMALL_STATE(957)] = 65840, + [SMALL_STATE(958)] = 65896, + [SMALL_STATE(959)] = 65952, + [SMALL_STATE(960)] = 66008, + [SMALL_STATE(961)] = 66034, + [SMALL_STATE(962)] = 66060, + [SMALL_STATE(963)] = 66086, + [SMALL_STATE(964)] = 66142, + [SMALL_STATE(965)] = 66172, + [SMALL_STATE(966)] = 66227, + [SMALL_STATE(967)] = 66274, + [SMALL_STATE(968)] = 66321, + [SMALL_STATE(969)] = 66368, + [SMALL_STATE(970)] = 66415, + [SMALL_STATE(971)] = 66470, + [SMALL_STATE(972)] = 66501, + [SMALL_STATE(973)] = 66556, + [SMALL_STATE(974)] = 66603, + [SMALL_STATE(975)] = 66658, + [SMALL_STATE(976)] = 66705, + [SMALL_STATE(977)] = 66760, + [SMALL_STATE(978)] = 66793, + [SMALL_STATE(979)] = 66819, + [SMALL_STATE(980)] = 66845, + [SMALL_STATE(981)] = 66881, + [SMALL_STATE(982)] = 66917, + [SMALL_STATE(983)] = 66943, + [SMALL_STATE(984)] = 66975, + [SMALL_STATE(985)] = 67005, + [SMALL_STATE(986)] = 67031, + [SMALL_STATE(987)] = 67057, + [SMALL_STATE(988)] = 67083, + [SMALL_STATE(989)] = 67109, + [SMALL_STATE(990)] = 67133, + [SMALL_STATE(991)] = 67169, + [SMALL_STATE(992)] = 67216, + [SMALL_STATE(993)] = 67241, + [SMALL_STATE(994)] = 67288, + [SMALL_STATE(995)] = 67329, + [SMALL_STATE(996)] = 67378, + [SMALL_STATE(997)] = 67405, + [SMALL_STATE(998)] = 67452, + [SMALL_STATE(999)] = 67479, + [SMALL_STATE(1000)] = 67520, + [SMALL_STATE(1001)] = 67545, + [SMALL_STATE(1002)] = 67580, + [SMALL_STATE(1003)] = 67621, + [SMALL_STATE(1004)] = 67662, + [SMALL_STATE(1005)] = 67703, + [SMALL_STATE(1006)] = 67750, + [SMALL_STATE(1007)] = 67791, + [SMALL_STATE(1008)] = 67838, + [SMALL_STATE(1009)] = 67863, + [SMALL_STATE(1010)] = 67898, + [SMALL_STATE(1011)] = 67927, + [SMALL_STATE(1012)] = 67950, + [SMALL_STATE(1013)] = 67977, + [SMALL_STATE(1014)] = 68018, + [SMALL_STATE(1015)] = 68059, + [SMALL_STATE(1016)] = 68084, + [SMALL_STATE(1017)] = 68109, + [SMALL_STATE(1018)] = 68150, + [SMALL_STATE(1019)] = 68171, + [SMALL_STATE(1020)] = 68194, + [SMALL_STATE(1021)] = 68235, + [SMALL_STATE(1022)] = 68282, + [SMALL_STATE(1023)] = 68317, + [SMALL_STATE(1024)] = 68340, + [SMALL_STATE(1025)] = 68363, + [SMALL_STATE(1026)] = 68388, + [SMALL_STATE(1027)] = 68410, + [SMALL_STATE(1028)] = 68456, + [SMALL_STATE(1029)] = 68502, + [SMALL_STATE(1030)] = 68522, + [SMALL_STATE(1031)] = 68542, + [SMALL_STATE(1032)] = 68564, + [SMALL_STATE(1033)] = 68584, + [SMALL_STATE(1034)] = 68606, + [SMALL_STATE(1035)] = 68628, + [SMALL_STATE(1036)] = 68648, + [SMALL_STATE(1037)] = 68668, + [SMALL_STATE(1038)] = 68690, + [SMALL_STATE(1039)] = 68712, + [SMALL_STATE(1040)] = 68732, + [SMALL_STATE(1041)] = 68754, + [SMALL_STATE(1042)] = 68800, + [SMALL_STATE(1043)] = 68822, + [SMALL_STATE(1044)] = 68868, + [SMALL_STATE(1045)] = 68890, + [SMALL_STATE(1046)] = 68912, + [SMALL_STATE(1047)] = 68938, + [SMALL_STATE(1048)] = 68960, + [SMALL_STATE(1049)] = 68984, + [SMALL_STATE(1050)] = 69006, + [SMALL_STATE(1051)] = 69028, + [SMALL_STATE(1052)] = 69074, + [SMALL_STATE(1053)] = 69120, + [SMALL_STATE(1054)] = 69139, + [SMALL_STATE(1055)] = 69174, + [SMALL_STATE(1056)] = 69193, + [SMALL_STATE(1057)] = 69228, + [SMALL_STATE(1058)] = 69251, + [SMALL_STATE(1059)] = 69278, + [SMALL_STATE(1060)] = 69301, + [SMALL_STATE(1061)] = 69326, + [SMALL_STATE(1062)] = 69367, + [SMALL_STATE(1063)] = 69408, + [SMALL_STATE(1064)] = 69443, + [SMALL_STATE(1065)] = 69466, + [SMALL_STATE(1066)] = 69507, + [SMALL_STATE(1067)] = 69548, + [SMALL_STATE(1068)] = 69567, + [SMALL_STATE(1069)] = 69590, + [SMALL_STATE(1070)] = 69611, + [SMALL_STATE(1071)] = 69646, + [SMALL_STATE(1072)] = 69687, + [SMALL_STATE(1073)] = 69728, + [SMALL_STATE(1074)] = 69763, + [SMALL_STATE(1075)] = 69798, + [SMALL_STATE(1076)] = 69817, + [SMALL_STATE(1077)] = 69852, + [SMALL_STATE(1078)] = 69871, + [SMALL_STATE(1079)] = 69912, + [SMALL_STATE(1080)] = 69935, + [SMALL_STATE(1081)] = 69970, + [SMALL_STATE(1082)] = 70011, + [SMALL_STATE(1083)] = 70034, + [SMALL_STATE(1084)] = 70057, + [SMALL_STATE(1085)] = 70095, + [SMALL_STATE(1086)] = 70115, + [SMALL_STATE(1087)] = 70133, + [SMALL_STATE(1088)] = 70151, + [SMALL_STATE(1089)] = 70189, + [SMALL_STATE(1090)] = 70227, + [SMALL_STATE(1091)] = 70267, + [SMALL_STATE(1092)] = 70287, + [SMALL_STATE(1093)] = 70309, + [SMALL_STATE(1094)] = 70349, + [SMALL_STATE(1095)] = 70381, + [SMALL_STATE(1096)] = 70403, + [SMALL_STATE(1097)] = 70441, + [SMALL_STATE(1098)] = 70463, + [SMALL_STATE(1099)] = 70481, + [SMALL_STATE(1100)] = 70521, + [SMALL_STATE(1101)] = 70559, + [SMALL_STATE(1102)] = 70577, + [SMALL_STATE(1103)] = 70617, + [SMALL_STATE(1104)] = 70657, + [SMALL_STATE(1105)] = 70679, + [SMALL_STATE(1106)] = 70703, + [SMALL_STATE(1107)] = 70735, + [SMALL_STATE(1108)] = 70767, + [SMALL_STATE(1109)] = 70805, + [SMALL_STATE(1110)] = 70845, + [SMALL_STATE(1111)] = 70885, + [SMALL_STATE(1112)] = 70903, + [SMALL_STATE(1113)] = 70925, + [SMALL_STATE(1114)] = 70949, + [SMALL_STATE(1115)] = 70980, + [SMALL_STATE(1116)] = 70997, + [SMALL_STATE(1117)] = 71026, + [SMALL_STATE(1118)] = 71061, + [SMALL_STATE(1119)] = 71092, + [SMALL_STATE(1120)] = 71121, + [SMALL_STATE(1121)] = 71150, + [SMALL_STATE(1122)] = 71171, + [SMALL_STATE(1123)] = 71188, + [SMALL_STATE(1124)] = 71225, + [SMALL_STATE(1125)] = 71242, + [SMALL_STATE(1126)] = 71259, + [SMALL_STATE(1127)] = 71276, + [SMALL_STATE(1128)] = 71305, + [SMALL_STATE(1129)] = 71340, + [SMALL_STATE(1130)] = 71357, + [SMALL_STATE(1131)] = 71386, + [SMALL_STATE(1132)] = 71407, + [SMALL_STATE(1133)] = 71428, + [SMALL_STATE(1134)] = 71463, + [SMALL_STATE(1135)] = 71500, + [SMALL_STATE(1136)] = 71531, + [SMALL_STATE(1137)] = 71560, + [SMALL_STATE(1138)] = 71589, + [SMALL_STATE(1139)] = 71606, + [SMALL_STATE(1140)] = 71641, + [SMALL_STATE(1141)] = 71670, + [SMALL_STATE(1142)] = 71705, + [SMALL_STATE(1143)] = 71734, + [SMALL_STATE(1144)] = 71765, + [SMALL_STATE(1145)] = 71800, + [SMALL_STATE(1146)] = 71835, + [SMALL_STATE(1147)] = 71852, + [SMALL_STATE(1148)] = 71887, + [SMALL_STATE(1149)] = 71916, + [SMALL_STATE(1150)] = 71945, + [SMALL_STATE(1151)] = 71976, + [SMALL_STATE(1152)] = 72005, + [SMALL_STATE(1153)] = 72040, + [SMALL_STATE(1154)] = 72069, + [SMALL_STATE(1155)] = 72104, + [SMALL_STATE(1156)] = 72125, + [SMALL_STATE(1157)] = 72160, + [SMALL_STATE(1158)] = 72181, + [SMALL_STATE(1159)] = 72201, + [SMALL_STATE(1160)] = 72221, + [SMALL_STATE(1161)] = 72255, + [SMALL_STATE(1162)] = 72289, + [SMALL_STATE(1163)] = 72323, + [SMALL_STATE(1164)] = 72357, + [SMALL_STATE(1165)] = 72391, + [SMALL_STATE(1166)] = 72407, + [SMALL_STATE(1167)] = 72423, + [SMALL_STATE(1168)] = 72443, + [SMALL_STATE(1169)] = 72469, + [SMALL_STATE(1170)] = 72485, + [SMALL_STATE(1171)] = 72519, + [SMALL_STATE(1172)] = 72535, + [SMALL_STATE(1173)] = 72551, + [SMALL_STATE(1174)] = 72567, + [SMALL_STATE(1175)] = 72583, + [SMALL_STATE(1176)] = 72617, + [SMALL_STATE(1177)] = 72633, + [SMALL_STATE(1178)] = 72653, + [SMALL_STATE(1179)] = 72673, + [SMALL_STATE(1180)] = 72693, + [SMALL_STATE(1181)] = 72727, + [SMALL_STATE(1182)] = 72743, + [SMALL_STATE(1183)] = 72759, + [SMALL_STATE(1184)] = 72788, + [SMALL_STATE(1185)] = 72817, + [SMALL_STATE(1186)] = 72846, + [SMALL_STATE(1187)] = 72861, + [SMALL_STATE(1188)] = 72890, + [SMALL_STATE(1189)] = 72919, + [SMALL_STATE(1190)] = 72948, + [SMALL_STATE(1191)] = 72963, + [SMALL_STATE(1192)] = 72992, + [SMALL_STATE(1193)] = 73021, + [SMALL_STATE(1194)] = 73036, + [SMALL_STATE(1195)] = 73065, + [SMALL_STATE(1196)] = 73094, + [SMALL_STATE(1197)] = 73123, + [SMALL_STATE(1198)] = 73152, + [SMALL_STATE(1199)] = 73183, + [SMALL_STATE(1200)] = 73212, + [SMALL_STATE(1201)] = 73237, + [SMALL_STATE(1202)] = 73266, + [SMALL_STATE(1203)] = 73295, + [SMALL_STATE(1204)] = 73326, + [SMALL_STATE(1205)] = 73355, + [SMALL_STATE(1206)] = 73384, + [SMALL_STATE(1207)] = 73413, + [SMALL_STATE(1208)] = 73442, + [SMALL_STATE(1209)] = 73471, + [SMALL_STATE(1210)] = 73500, + [SMALL_STATE(1211)] = 73526, + [SMALL_STATE(1212)] = 73550, + [SMALL_STATE(1213)] = 73574, + [SMALL_STATE(1214)] = 73602, + [SMALL_STATE(1215)] = 73626, + [SMALL_STATE(1216)] = 73652, + [SMALL_STATE(1217)] = 73678, + [SMALL_STATE(1218)] = 73694, + [SMALL_STATE(1219)] = 73718, + [SMALL_STATE(1220)] = 73746, + [SMALL_STATE(1221)] = 73768, + [SMALL_STATE(1222)] = 73792, + [SMALL_STATE(1223)] = 73816, + [SMALL_STATE(1224)] = 73840, + [SMALL_STATE(1225)] = 73868, + [SMALL_STATE(1226)] = 73892, + [SMALL_STATE(1227)] = 73920, + [SMALL_STATE(1228)] = 73946, + [SMALL_STATE(1229)] = 73972, + [SMALL_STATE(1230)] = 73996, + [SMALL_STATE(1231)] = 74020, + [SMALL_STATE(1232)] = 74048, + [SMALL_STATE(1233)] = 74076, + [SMALL_STATE(1234)] = 74100, + [SMALL_STATE(1235)] = 74128, + [SMALL_STATE(1236)] = 74154, + [SMALL_STATE(1237)] = 74182, + [SMALL_STATE(1238)] = 74208, + [SMALL_STATE(1239)] = 74226, + [SMALL_STATE(1240)] = 74244, + [SMALL_STATE(1241)] = 74270, + [SMALL_STATE(1242)] = 74294, + [SMALL_STATE(1243)] = 74320, + [SMALL_STATE(1244)] = 74344, + [SMALL_STATE(1245)] = 74368, + [SMALL_STATE(1246)] = 74392, + [SMALL_STATE(1247)] = 74418, + [SMALL_STATE(1248)] = 74442, + [SMALL_STATE(1249)] = 74468, + [SMALL_STATE(1250)] = 74492, + [SMALL_STATE(1251)] = 74518, + [SMALL_STATE(1252)] = 74542, + [SMALL_STATE(1253)] = 74568, + [SMALL_STATE(1254)] = 74594, + [SMALL_STATE(1255)] = 74622, + [SMALL_STATE(1256)] = 74648, + [SMALL_STATE(1257)] = 74672, + [SMALL_STATE(1258)] = 74700, + [SMALL_STATE(1259)] = 74724, + [SMALL_STATE(1260)] = 74746, + [SMALL_STATE(1261)] = 74770, + [SMALL_STATE(1262)] = 74794, + [SMALL_STATE(1263)] = 74822, + [SMALL_STATE(1264)] = 74848, + [SMALL_STATE(1265)] = 74872, + [SMALL_STATE(1266)] = 74900, + [SMALL_STATE(1267)] = 74923, + [SMALL_STATE(1268)] = 74940, + [SMALL_STATE(1269)] = 74961, + [SMALL_STATE(1270)] = 74984, + [SMALL_STATE(1271)] = 75007, + [SMALL_STATE(1272)] = 75024, + [SMALL_STATE(1273)] = 75037, + [SMALL_STATE(1274)] = 75060, + [SMALL_STATE(1275)] = 75081, + [SMALL_STATE(1276)] = 75094, + [SMALL_STATE(1277)] = 75111, + [SMALL_STATE(1278)] = 75124, + [SMALL_STATE(1279)] = 75137, + [SMALL_STATE(1280)] = 75160, + [SMALL_STATE(1281)] = 75173, + [SMALL_STATE(1282)] = 75196, + [SMALL_STATE(1283)] = 75213, + [SMALL_STATE(1284)] = 75234, + [SMALL_STATE(1285)] = 75247, + [SMALL_STATE(1286)] = 75260, + [SMALL_STATE(1287)] = 75277, + [SMALL_STATE(1288)] = 75290, + [SMALL_STATE(1289)] = 75311, + [SMALL_STATE(1290)] = 75332, + [SMALL_STATE(1291)] = 75347, + [SMALL_STATE(1292)] = 75368, + [SMALL_STATE(1293)] = 75389, + [SMALL_STATE(1294)] = 75410, + [SMALL_STATE(1295)] = 75435, + [SMALL_STATE(1296)] = 75449, + [SMALL_STATE(1297)] = 75469, + [SMALL_STATE(1298)] = 75489, + [SMALL_STATE(1299)] = 75505, + [SMALL_STATE(1300)] = 75517, + [SMALL_STATE(1301)] = 75537, + [SMALL_STATE(1302)] = 75555, + [SMALL_STATE(1303)] = 75575, + [SMALL_STATE(1304)] = 75593, + [SMALL_STATE(1305)] = 75611, + [SMALL_STATE(1306)] = 75629, + [SMALL_STATE(1307)] = 75645, + [SMALL_STATE(1308)] = 75665, + [SMALL_STATE(1309)] = 75685, + [SMALL_STATE(1310)] = 75697, + [SMALL_STATE(1311)] = 75709, + [SMALL_STATE(1312)] = 75725, + [SMALL_STATE(1313)] = 75739, + [SMALL_STATE(1314)] = 75751, + [SMALL_STATE(1315)] = 75765, + [SMALL_STATE(1316)] = 75785, + [SMALL_STATE(1317)] = 75805, + [SMALL_STATE(1318)] = 75825, + [SMALL_STATE(1319)] = 75843, + [SMALL_STATE(1320)] = 75855, + [SMALL_STATE(1321)] = 75875, + [SMALL_STATE(1322)] = 75889, + [SMALL_STATE(1323)] = 75901, + [SMALL_STATE(1324)] = 75921, + [SMALL_STATE(1325)] = 75943, + [SMALL_STATE(1326)] = 75961, + [SMALL_STATE(1327)] = 75983, + [SMALL_STATE(1328)] = 75999, + [SMALL_STATE(1329)] = 76013, + [SMALL_STATE(1330)] = 76025, + [SMALL_STATE(1331)] = 76043, + [SMALL_STATE(1332)] = 76057, + [SMALL_STATE(1333)] = 76071, + [SMALL_STATE(1334)] = 76083, + [SMALL_STATE(1335)] = 76103, + [SMALL_STATE(1336)] = 76123, + [SMALL_STATE(1337)] = 76141, + [SMALL_STATE(1338)] = 76161, + [SMALL_STATE(1339)] = 76181, + [SMALL_STATE(1340)] = 76193, + [SMALL_STATE(1341)] = 76207, + [SMALL_STATE(1342)] = 76227, + [SMALL_STATE(1343)] = 76239, + [SMALL_STATE(1344)] = 76251, + [SMALL_STATE(1345)] = 76271, + [SMALL_STATE(1346)] = 76291, + [SMALL_STATE(1347)] = 76311, + [SMALL_STATE(1348)] = 76331, + [SMALL_STATE(1349)] = 76351, + [SMALL_STATE(1350)] = 76371, + [SMALL_STATE(1351)] = 76385, + [SMALL_STATE(1352)] = 76407, + [SMALL_STATE(1353)] = 76423, + [SMALL_STATE(1354)] = 76437, + [SMALL_STATE(1355)] = 76457, + [SMALL_STATE(1356)] = 76477, + [SMALL_STATE(1357)] = 76494, + [SMALL_STATE(1358)] = 76509, + [SMALL_STATE(1359)] = 76526, + [SMALL_STATE(1360)] = 76543, + [SMALL_STATE(1361)] = 76560, + [SMALL_STATE(1362)] = 76575, + [SMALL_STATE(1363)] = 76592, + [SMALL_STATE(1364)] = 76607, + [SMALL_STATE(1365)] = 76618, + [SMALL_STATE(1366)] = 76637, + [SMALL_STATE(1367)] = 76654, + [SMALL_STATE(1368)] = 76671, + [SMALL_STATE(1369)] = 76690, + [SMALL_STATE(1370)] = 76709, + [SMALL_STATE(1371)] = 76724, + [SMALL_STATE(1372)] = 76741, + [SMALL_STATE(1373)] = 76754, + [SMALL_STATE(1374)] = 76765, + [SMALL_STATE(1375)] = 76784, + [SMALL_STATE(1376)] = 76803, + [SMALL_STATE(1377)] = 76822, + [SMALL_STATE(1378)] = 76837, + [SMALL_STATE(1379)] = 76854, + [SMALL_STATE(1380)] = 76871, + [SMALL_STATE(1381)] = 76888, + [SMALL_STATE(1382)] = 76907, + [SMALL_STATE(1383)] = 76918, + [SMALL_STATE(1384)] = 76935, + [SMALL_STATE(1385)] = 76946, + [SMALL_STATE(1386)] = 76963, + [SMALL_STATE(1387)] = 76980, + [SMALL_STATE(1388)] = 76997, + [SMALL_STATE(1389)] = 77014, + [SMALL_STATE(1390)] = 77025, + [SMALL_STATE(1391)] = 77042, + [SMALL_STATE(1392)] = 77059, + [SMALL_STATE(1393)] = 77078, + [SMALL_STATE(1394)] = 77095, + [SMALL_STATE(1395)] = 77106, + [SMALL_STATE(1396)] = 77117, + [SMALL_STATE(1397)] = 77134, + [SMALL_STATE(1398)] = 77153, + [SMALL_STATE(1399)] = 77168, + [SMALL_STATE(1400)] = 77187, + [SMALL_STATE(1401)] = 77206, + [SMALL_STATE(1402)] = 77223, + [SMALL_STATE(1403)] = 77238, + [SMALL_STATE(1404)] = 77255, + [SMALL_STATE(1405)] = 77268, + [SMALL_STATE(1406)] = 77285, + [SMALL_STATE(1407)] = 77304, + [SMALL_STATE(1408)] = 77315, + [SMALL_STATE(1409)] = 77334, + [SMALL_STATE(1410)] = 77349, + [SMALL_STATE(1411)] = 77368, + [SMALL_STATE(1412)] = 77383, + [SMALL_STATE(1413)] = 77396, + [SMALL_STATE(1414)] = 77415, + [SMALL_STATE(1415)] = 77432, + [SMALL_STATE(1416)] = 77449, + [SMALL_STATE(1417)] = 77468, + [SMALL_STATE(1418)] = 77485, + [SMALL_STATE(1419)] = 77502, + [SMALL_STATE(1420)] = 77519, + [SMALL_STATE(1421)] = 77538, + [SMALL_STATE(1422)] = 77555, + [SMALL_STATE(1423)] = 77568, + [SMALL_STATE(1424)] = 77585, + [SMALL_STATE(1425)] = 77600, + [SMALL_STATE(1426)] = 77619, + [SMALL_STATE(1427)] = 77638, + [SMALL_STATE(1428)] = 77649, + [SMALL_STATE(1429)] = 77660, + [SMALL_STATE(1430)] = 77679, + [SMALL_STATE(1431)] = 77698, + [SMALL_STATE(1432)] = 77717, + [SMALL_STATE(1433)] = 77736, + [SMALL_STATE(1434)] = 77753, + [SMALL_STATE(1435)] = 77770, + [SMALL_STATE(1436)] = 77789, + [SMALL_STATE(1437)] = 77806, + [SMALL_STATE(1438)] = 77825, + [SMALL_STATE(1439)] = 77836, + [SMALL_STATE(1440)] = 77853, + [SMALL_STATE(1441)] = 77867, + [SMALL_STATE(1442)] = 77881, + [SMALL_STATE(1443)] = 77895, + [SMALL_STATE(1444)] = 77909, + [SMALL_STATE(1445)] = 77923, + [SMALL_STATE(1446)] = 77937, + [SMALL_STATE(1447)] = 77951, + [SMALL_STATE(1448)] = 77961, + [SMALL_STATE(1449)] = 77971, + [SMALL_STATE(1450)] = 77987, + [SMALL_STATE(1451)] = 78001, + [SMALL_STATE(1452)] = 78015, + [SMALL_STATE(1453)] = 78029, + [SMALL_STATE(1454)] = 78043, + [SMALL_STATE(1455)] = 78057, + [SMALL_STATE(1456)] = 78067, + [SMALL_STATE(1457)] = 78083, + [SMALL_STATE(1458)] = 78097, + [SMALL_STATE(1459)] = 78111, + [SMALL_STATE(1460)] = 78127, + [SMALL_STATE(1461)] = 78141, + [SMALL_STATE(1462)] = 78155, + [SMALL_STATE(1463)] = 78169, + [SMALL_STATE(1464)] = 78183, + [SMALL_STATE(1465)] = 78197, + [SMALL_STATE(1466)] = 78213, + [SMALL_STATE(1467)] = 78227, + [SMALL_STATE(1468)] = 78241, + [SMALL_STATE(1469)] = 78255, + [SMALL_STATE(1470)] = 78269, + [SMALL_STATE(1471)] = 78283, + [SMALL_STATE(1472)] = 78293, + [SMALL_STATE(1473)] = 78307, + [SMALL_STATE(1474)] = 78317, + [SMALL_STATE(1475)] = 78331, + [SMALL_STATE(1476)] = 78345, + [SMALL_STATE(1477)] = 78359, + [SMALL_STATE(1478)] = 78373, + [SMALL_STATE(1479)] = 78383, + [SMALL_STATE(1480)] = 78397, + [SMALL_STATE(1481)] = 78411, + [SMALL_STATE(1482)] = 78425, + [SMALL_STATE(1483)] = 78441, + [SMALL_STATE(1484)] = 78455, + [SMALL_STATE(1485)] = 78465, + [SMALL_STATE(1486)] = 78481, + [SMALL_STATE(1487)] = 78497, + [SMALL_STATE(1488)] = 78511, + [SMALL_STATE(1489)] = 78523, + [SMALL_STATE(1490)] = 78539, + [SMALL_STATE(1491)] = 78553, + [SMALL_STATE(1492)] = 78567, + [SMALL_STATE(1493)] = 78581, + [SMALL_STATE(1494)] = 78597, + [SMALL_STATE(1495)] = 78607, + [SMALL_STATE(1496)] = 78621, + [SMALL_STATE(1497)] = 78631, + [SMALL_STATE(1498)] = 78645, + [SMALL_STATE(1499)] = 78659, + [SMALL_STATE(1500)] = 78675, + [SMALL_STATE(1501)] = 78689, + [SMALL_STATE(1502)] = 78703, + [SMALL_STATE(1503)] = 78717, + [SMALL_STATE(1504)] = 78733, + [SMALL_STATE(1505)] = 78747, + [SMALL_STATE(1506)] = 78761, + [SMALL_STATE(1507)] = 78777, + [SMALL_STATE(1508)] = 78787, + [SMALL_STATE(1509)] = 78801, + [SMALL_STATE(1510)] = 78817, + [SMALL_STATE(1511)] = 78829, + [SMALL_STATE(1512)] = 78843, + [SMALL_STATE(1513)] = 78857, + [SMALL_STATE(1514)] = 78871, + [SMALL_STATE(1515)] = 78885, + [SMALL_STATE(1516)] = 78899, + [SMALL_STATE(1517)] = 78913, + [SMALL_STATE(1518)] = 78923, + [SMALL_STATE(1519)] = 78939, + [SMALL_STATE(1520)] = 78955, + [SMALL_STATE(1521)] = 78969, + [SMALL_STATE(1522)] = 78983, + [SMALL_STATE(1523)] = 78993, + [SMALL_STATE(1524)] = 79009, + [SMALL_STATE(1525)] = 79025, + [SMALL_STATE(1526)] = 79041, + [SMALL_STATE(1527)] = 79055, + [SMALL_STATE(1528)] = 79071, + [SMALL_STATE(1529)] = 79087, + [SMALL_STATE(1530)] = 79103, + [SMALL_STATE(1531)] = 79117, + [SMALL_STATE(1532)] = 79131, + [SMALL_STATE(1533)] = 79145, + [SMALL_STATE(1534)] = 79155, + [SMALL_STATE(1535)] = 79169, + [SMALL_STATE(1536)] = 79185, + [SMALL_STATE(1537)] = 79199, + [SMALL_STATE(1538)] = 79213, + [SMALL_STATE(1539)] = 79227, + [SMALL_STATE(1540)] = 79241, + [SMALL_STATE(1541)] = 79255, + [SMALL_STATE(1542)] = 79271, + [SMALL_STATE(1543)] = 79285, + [SMALL_STATE(1544)] = 79301, + [SMALL_STATE(1545)] = 79315, + [SMALL_STATE(1546)] = 79331, + [SMALL_STATE(1547)] = 79341, + [SMALL_STATE(1548)] = 79355, + [SMALL_STATE(1549)] = 79369, + [SMALL_STATE(1550)] = 79383, + [SMALL_STATE(1551)] = 79393, + [SMALL_STATE(1552)] = 79407, + [SMALL_STATE(1553)] = 79421, + [SMALL_STATE(1554)] = 79435, + [SMALL_STATE(1555)] = 79449, + [SMALL_STATE(1556)] = 79465, + [SMALL_STATE(1557)] = 79481, + [SMALL_STATE(1558)] = 79497, + [SMALL_STATE(1559)] = 79511, + [SMALL_STATE(1560)] = 79527, + [SMALL_STATE(1561)] = 79541, + [SMALL_STATE(1562)] = 79551, + [SMALL_STATE(1563)] = 79562, + [SMALL_STATE(1564)] = 79575, + [SMALL_STATE(1565)] = 79588, + [SMALL_STATE(1566)] = 79601, + [SMALL_STATE(1567)] = 79610, + [SMALL_STATE(1568)] = 79623, + [SMALL_STATE(1569)] = 79636, + [SMALL_STATE(1570)] = 79649, + [SMALL_STATE(1571)] = 79662, + [SMALL_STATE(1572)] = 79675, + [SMALL_STATE(1573)] = 79688, + [SMALL_STATE(1574)] = 79701, + [SMALL_STATE(1575)] = 79714, + [SMALL_STATE(1576)] = 79727, + [SMALL_STATE(1577)] = 79736, + [SMALL_STATE(1578)] = 79749, + [SMALL_STATE(1579)] = 79762, + [SMALL_STATE(1580)] = 79775, + [SMALL_STATE(1581)] = 79788, + [SMALL_STATE(1582)] = 79801, + [SMALL_STATE(1583)] = 79814, + [SMALL_STATE(1584)] = 79827, + [SMALL_STATE(1585)] = 79836, + [SMALL_STATE(1586)] = 79849, + [SMALL_STATE(1587)] = 79862, + [SMALL_STATE(1588)] = 79875, + [SMALL_STATE(1589)] = 79888, + [SMALL_STATE(1590)] = 79901, + [SMALL_STATE(1591)] = 79914, + [SMALL_STATE(1592)] = 79927, + [SMALL_STATE(1593)] = 79936, + [SMALL_STATE(1594)] = 79949, + [SMALL_STATE(1595)] = 79962, + [SMALL_STATE(1596)] = 79975, + [SMALL_STATE(1597)] = 79988, + [SMALL_STATE(1598)] = 79997, + [SMALL_STATE(1599)] = 80010, + [SMALL_STATE(1600)] = 80023, + [SMALL_STATE(1601)] = 80036, + [SMALL_STATE(1602)] = 80049, + [SMALL_STATE(1603)] = 80062, + [SMALL_STATE(1604)] = 80075, + [SMALL_STATE(1605)] = 80088, + [SMALL_STATE(1606)] = 80101, + [SMALL_STATE(1607)] = 80114, + [SMALL_STATE(1608)] = 80125, + [SMALL_STATE(1609)] = 80138, + [SMALL_STATE(1610)] = 80151, + [SMALL_STATE(1611)] = 80160, + [SMALL_STATE(1612)] = 80173, + [SMALL_STATE(1613)] = 80182, + [SMALL_STATE(1614)] = 80195, + [SMALL_STATE(1615)] = 80208, + [SMALL_STATE(1616)] = 80221, + [SMALL_STATE(1617)] = 80234, + [SMALL_STATE(1618)] = 80247, + [SMALL_STATE(1619)] = 80260, + [SMALL_STATE(1620)] = 80273, + [SMALL_STATE(1621)] = 80286, + [SMALL_STATE(1622)] = 80299, + [SMALL_STATE(1623)] = 80312, + [SMALL_STATE(1624)] = 80325, + [SMALL_STATE(1625)] = 80334, + [SMALL_STATE(1626)] = 80347, + [SMALL_STATE(1627)] = 80360, + [SMALL_STATE(1628)] = 80373, + [SMALL_STATE(1629)] = 80386, + [SMALL_STATE(1630)] = 80399, + [SMALL_STATE(1631)] = 80408, + [SMALL_STATE(1632)] = 80421, + [SMALL_STATE(1633)] = 80434, + [SMALL_STATE(1634)] = 80447, + [SMALL_STATE(1635)] = 80460, + [SMALL_STATE(1636)] = 80473, + [SMALL_STATE(1637)] = 80486, + [SMALL_STATE(1638)] = 80499, + [SMALL_STATE(1639)] = 80512, + [SMALL_STATE(1640)] = 80521, + [SMALL_STATE(1641)] = 80534, + [SMALL_STATE(1642)] = 80547, + [SMALL_STATE(1643)] = 80560, + [SMALL_STATE(1644)] = 80573, + [SMALL_STATE(1645)] = 80586, + [SMALL_STATE(1646)] = 80599, + [SMALL_STATE(1647)] = 80612, + [SMALL_STATE(1648)] = 80625, + [SMALL_STATE(1649)] = 80638, + [SMALL_STATE(1650)] = 80651, + [SMALL_STATE(1651)] = 80664, + [SMALL_STATE(1652)] = 80677, + [SMALL_STATE(1653)] = 80690, + [SMALL_STATE(1654)] = 80703, + [SMALL_STATE(1655)] = 80712, + [SMALL_STATE(1656)] = 80721, + [SMALL_STATE(1657)] = 80730, + [SMALL_STATE(1658)] = 80743, + [SMALL_STATE(1659)] = 80756, + [SMALL_STATE(1660)] = 80769, + [SMALL_STATE(1661)] = 80782, + [SMALL_STATE(1662)] = 80795, + [SMALL_STATE(1663)] = 80808, + [SMALL_STATE(1664)] = 80821, + [SMALL_STATE(1665)] = 80834, + [SMALL_STATE(1666)] = 80847, + [SMALL_STATE(1667)] = 80860, + [SMALL_STATE(1668)] = 80873, + [SMALL_STATE(1669)] = 80886, + [SMALL_STATE(1670)] = 80899, + [SMALL_STATE(1671)] = 80912, + [SMALL_STATE(1672)] = 80925, + [SMALL_STATE(1673)] = 80934, + [SMALL_STATE(1674)] = 80947, + [SMALL_STATE(1675)] = 80960, + [SMALL_STATE(1676)] = 80973, + [SMALL_STATE(1677)] = 80986, + [SMALL_STATE(1678)] = 80999, + [SMALL_STATE(1679)] = 81012, + [SMALL_STATE(1680)] = 81025, + [SMALL_STATE(1681)] = 81038, + [SMALL_STATE(1682)] = 81051, + [SMALL_STATE(1683)] = 81060, + [SMALL_STATE(1684)] = 81073, + [SMALL_STATE(1685)] = 81086, + [SMALL_STATE(1686)] = 81099, + [SMALL_STATE(1687)] = 81112, + [SMALL_STATE(1688)] = 81125, + [SMALL_STATE(1689)] = 81138, + [SMALL_STATE(1690)] = 81151, + [SMALL_STATE(1691)] = 81164, + [SMALL_STATE(1692)] = 81177, + [SMALL_STATE(1693)] = 81190, + [SMALL_STATE(1694)] = 81203, + [SMALL_STATE(1695)] = 81216, + [SMALL_STATE(1696)] = 81229, + [SMALL_STATE(1697)] = 81242, + [SMALL_STATE(1698)] = 81255, + [SMALL_STATE(1699)] = 81268, + [SMALL_STATE(1700)] = 81281, + [SMALL_STATE(1701)] = 81294, + [SMALL_STATE(1702)] = 81307, + [SMALL_STATE(1703)] = 81320, + [SMALL_STATE(1704)] = 81333, + [SMALL_STATE(1705)] = 81346, + [SMALL_STATE(1706)] = 81359, + [SMALL_STATE(1707)] = 81372, + [SMALL_STATE(1708)] = 81385, + [SMALL_STATE(1709)] = 81398, + [SMALL_STATE(1710)] = 81411, + [SMALL_STATE(1711)] = 81424, + [SMALL_STATE(1712)] = 81437, + [SMALL_STATE(1713)] = 81450, + [SMALL_STATE(1714)] = 81463, + [SMALL_STATE(1715)] = 81476, + [SMALL_STATE(1716)] = 81489, + [SMALL_STATE(1717)] = 81502, + [SMALL_STATE(1718)] = 81515, + [SMALL_STATE(1719)] = 81528, + [SMALL_STATE(1720)] = 81541, + [SMALL_STATE(1721)] = 81554, + [SMALL_STATE(1722)] = 81567, + [SMALL_STATE(1723)] = 81580, + [SMALL_STATE(1724)] = 81593, + [SMALL_STATE(1725)] = 81606, + [SMALL_STATE(1726)] = 81619, + [SMALL_STATE(1727)] = 81632, + [SMALL_STATE(1728)] = 81645, + [SMALL_STATE(1729)] = 81654, + [SMALL_STATE(1730)] = 81667, + [SMALL_STATE(1731)] = 81680, + [SMALL_STATE(1732)] = 81693, + [SMALL_STATE(1733)] = 81706, + [SMALL_STATE(1734)] = 81715, + [SMALL_STATE(1735)] = 81728, + [SMALL_STATE(1736)] = 81737, + [SMALL_STATE(1737)] = 81750, + [SMALL_STATE(1738)] = 81763, + [SMALL_STATE(1739)] = 81776, + [SMALL_STATE(1740)] = 81789, + [SMALL_STATE(1741)] = 81802, + [SMALL_STATE(1742)] = 81815, + [SMALL_STATE(1743)] = 81828, + [SMALL_STATE(1744)] = 81839, + [SMALL_STATE(1745)] = 81852, + [SMALL_STATE(1746)] = 81865, + [SMALL_STATE(1747)] = 81878, + [SMALL_STATE(1748)] = 81891, + [SMALL_STATE(1749)] = 81904, + [SMALL_STATE(1750)] = 81917, + [SMALL_STATE(1751)] = 81930, + [SMALL_STATE(1752)] = 81943, + [SMALL_STATE(1753)] = 81956, + [SMALL_STATE(1754)] = 81969, + [SMALL_STATE(1755)] = 81978, + [SMALL_STATE(1756)] = 81991, + [SMALL_STATE(1757)] = 82004, + [SMALL_STATE(1758)] = 82017, + [SMALL_STATE(1759)] = 82030, + [SMALL_STATE(1760)] = 82043, + [SMALL_STATE(1761)] = 82056, + [SMALL_STATE(1762)] = 82069, + [SMALL_STATE(1763)] = 82082, + [SMALL_STATE(1764)] = 82090, + [SMALL_STATE(1765)] = 82100, + [SMALL_STATE(1766)] = 82110, + [SMALL_STATE(1767)] = 82118, + [SMALL_STATE(1768)] = 82126, + [SMALL_STATE(1769)] = 82136, + [SMALL_STATE(1770)] = 82146, + [SMALL_STATE(1771)] = 82156, + [SMALL_STATE(1772)] = 82166, + [SMALL_STATE(1773)] = 82174, + [SMALL_STATE(1774)] = 82184, + [SMALL_STATE(1775)] = 82192, + [SMALL_STATE(1776)] = 82202, + [SMALL_STATE(1777)] = 82210, + [SMALL_STATE(1778)] = 82220, + [SMALL_STATE(1779)] = 82230, + [SMALL_STATE(1780)] = 82240, + [SMALL_STATE(1781)] = 82250, + [SMALL_STATE(1782)] = 82260, + [SMALL_STATE(1783)] = 82270, + [SMALL_STATE(1784)] = 82280, + [SMALL_STATE(1785)] = 82288, + [SMALL_STATE(1786)] = 82296, + [SMALL_STATE(1787)] = 82306, + [SMALL_STATE(1788)] = 82316, + [SMALL_STATE(1789)] = 82326, + [SMALL_STATE(1790)] = 82336, + [SMALL_STATE(1791)] = 82346, + [SMALL_STATE(1792)] = 82354, + [SMALL_STATE(1793)] = 82362, + [SMALL_STATE(1794)] = 82370, + [SMALL_STATE(1795)] = 82380, + [SMALL_STATE(1796)] = 82390, + [SMALL_STATE(1797)] = 82400, + [SMALL_STATE(1798)] = 82410, + [SMALL_STATE(1799)] = 82420, + [SMALL_STATE(1800)] = 82430, + [SMALL_STATE(1801)] = 82440, + [SMALL_STATE(1802)] = 82448, + [SMALL_STATE(1803)] = 82456, + [SMALL_STATE(1804)] = 82466, + [SMALL_STATE(1805)] = 82474, + [SMALL_STATE(1806)] = 82484, + [SMALL_STATE(1807)] = 82494, + [SMALL_STATE(1808)] = 82504, + [SMALL_STATE(1809)] = 82514, + [SMALL_STATE(1810)] = 82524, + [SMALL_STATE(1811)] = 82534, + [SMALL_STATE(1812)] = 82542, + [SMALL_STATE(1813)] = 82552, + [SMALL_STATE(1814)] = 82560, + [SMALL_STATE(1815)] = 82568, + [SMALL_STATE(1816)] = 82576, + [SMALL_STATE(1817)] = 82584, + [SMALL_STATE(1818)] = 82592, + [SMALL_STATE(1819)] = 82602, + [SMALL_STATE(1820)] = 82610, + [SMALL_STATE(1821)] = 82620, + [SMALL_STATE(1822)] = 82630, + [SMALL_STATE(1823)] = 82638, + [SMALL_STATE(1824)] = 82646, + [SMALL_STATE(1825)] = 82656, + [SMALL_STATE(1826)] = 82664, + [SMALL_STATE(1827)] = 82674, + [SMALL_STATE(1828)] = 82682, + [SMALL_STATE(1829)] = 82692, + [SMALL_STATE(1830)] = 82702, + [SMALL_STATE(1831)] = 82712, + [SMALL_STATE(1832)] = 82722, + [SMALL_STATE(1833)] = 82730, + [SMALL_STATE(1834)] = 82740, + [SMALL_STATE(1835)] = 82750, + [SMALL_STATE(1836)] = 82760, + [SMALL_STATE(1837)] = 82768, + [SMALL_STATE(1838)] = 82776, + [SMALL_STATE(1839)] = 82784, + [SMALL_STATE(1840)] = 82792, + [SMALL_STATE(1841)] = 82802, + [SMALL_STATE(1842)] = 82810, + [SMALL_STATE(1843)] = 82820, + [SMALL_STATE(1844)] = 82830, + [SMALL_STATE(1845)] = 82840, + [SMALL_STATE(1846)] = 82848, + [SMALL_STATE(1847)] = 82858, + [SMALL_STATE(1848)] = 82868, + [SMALL_STATE(1849)] = 82876, + [SMALL_STATE(1850)] = 82884, + [SMALL_STATE(1851)] = 82892, + [SMALL_STATE(1852)] = 82902, + [SMALL_STATE(1853)] = 82910, + [SMALL_STATE(1854)] = 82920, + [SMALL_STATE(1855)] = 82928, + [SMALL_STATE(1856)] = 82938, + [SMALL_STATE(1857)] = 82946, + [SMALL_STATE(1858)] = 82954, + [SMALL_STATE(1859)] = 82964, + [SMALL_STATE(1860)] = 82972, + [SMALL_STATE(1861)] = 82980, + [SMALL_STATE(1862)] = 82988, + [SMALL_STATE(1863)] = 82998, + [SMALL_STATE(1864)] = 83008, + [SMALL_STATE(1865)] = 83016, + [SMALL_STATE(1866)] = 83026, + [SMALL_STATE(1867)] = 83036, + [SMALL_STATE(1868)] = 83046, + [SMALL_STATE(1869)] = 83056, + [SMALL_STATE(1870)] = 83066, + [SMALL_STATE(1871)] = 83074, + [SMALL_STATE(1872)] = 83082, + [SMALL_STATE(1873)] = 83090, + [SMALL_STATE(1874)] = 83100, + [SMALL_STATE(1875)] = 83110, + [SMALL_STATE(1876)] = 83118, + [SMALL_STATE(1877)] = 83128, + [SMALL_STATE(1878)] = 83138, + [SMALL_STATE(1879)] = 83146, + [SMALL_STATE(1880)] = 83154, + [SMALL_STATE(1881)] = 83162, + [SMALL_STATE(1882)] = 83172, + [SMALL_STATE(1883)] = 83180, + [SMALL_STATE(1884)] = 83188, + [SMALL_STATE(1885)] = 83198, + [SMALL_STATE(1886)] = 83208, + [SMALL_STATE(1887)] = 83216, + [SMALL_STATE(1888)] = 83226, + [SMALL_STATE(1889)] = 83234, + [SMALL_STATE(1890)] = 83242, + [SMALL_STATE(1891)] = 83252, + [SMALL_STATE(1892)] = 83262, + [SMALL_STATE(1893)] = 83270, + [SMALL_STATE(1894)] = 83280, + [SMALL_STATE(1895)] = 83288, + [SMALL_STATE(1896)] = 83298, + [SMALL_STATE(1897)] = 83308, + [SMALL_STATE(1898)] = 83316, + [SMALL_STATE(1899)] = 83324, + [SMALL_STATE(1900)] = 83332, + [SMALL_STATE(1901)] = 83340, + [SMALL_STATE(1902)] = 83350, + [SMALL_STATE(1903)] = 83358, + [SMALL_STATE(1904)] = 83368, + [SMALL_STATE(1905)] = 83378, + [SMALL_STATE(1906)] = 83386, + [SMALL_STATE(1907)] = 83396, + [SMALL_STATE(1908)] = 83404, + [SMALL_STATE(1909)] = 83414, + [SMALL_STATE(1910)] = 83424, + [SMALL_STATE(1911)] = 83434, + [SMALL_STATE(1912)] = 83444, + [SMALL_STATE(1913)] = 83454, + [SMALL_STATE(1914)] = 83464, + [SMALL_STATE(1915)] = 83472, + [SMALL_STATE(1916)] = 83480, + [SMALL_STATE(1917)] = 83490, + [SMALL_STATE(1918)] = 83500, + [SMALL_STATE(1919)] = 83510, + [SMALL_STATE(1920)] = 83518, + [SMALL_STATE(1921)] = 83528, + [SMALL_STATE(1922)] = 83538, + [SMALL_STATE(1923)] = 83546, + [SMALL_STATE(1924)] = 83556, + [SMALL_STATE(1925)] = 83566, + [SMALL_STATE(1926)] = 83574, + [SMALL_STATE(1927)] = 83584, + [SMALL_STATE(1928)] = 83592, + [SMALL_STATE(1929)] = 83602, + [SMALL_STATE(1930)] = 83610, + [SMALL_STATE(1931)] = 83620, + [SMALL_STATE(1932)] = 83628, + [SMALL_STATE(1933)] = 83638, + [SMALL_STATE(1934)] = 83646, + [SMALL_STATE(1935)] = 83654, + [SMALL_STATE(1936)] = 83664, + [SMALL_STATE(1937)] = 83674, + [SMALL_STATE(1938)] = 83684, + [SMALL_STATE(1939)] = 83694, + [SMALL_STATE(1940)] = 83704, + [SMALL_STATE(1941)] = 83714, + [SMALL_STATE(1942)] = 83724, + [SMALL_STATE(1943)] = 83732, + [SMALL_STATE(1944)] = 83740, + [SMALL_STATE(1945)] = 83750, + [SMALL_STATE(1946)] = 83760, + [SMALL_STATE(1947)] = 83768, + [SMALL_STATE(1948)] = 83776, + [SMALL_STATE(1949)] = 83784, + [SMALL_STATE(1950)] = 83792, + [SMALL_STATE(1951)] = 83802, + [SMALL_STATE(1952)] = 83810, + [SMALL_STATE(1953)] = 83820, + [SMALL_STATE(1954)] = 83830, + [SMALL_STATE(1955)] = 83840, + [SMALL_STATE(1956)] = 83848, + [SMALL_STATE(1957)] = 83858, + [SMALL_STATE(1958)] = 83866, + [SMALL_STATE(1959)] = 83874, + [SMALL_STATE(1960)] = 83882, + [SMALL_STATE(1961)] = 83892, + [SMALL_STATE(1962)] = 83902, + [SMALL_STATE(1963)] = 83912, + [SMALL_STATE(1964)] = 83922, + [SMALL_STATE(1965)] = 83932, + [SMALL_STATE(1966)] = 83942, + [SMALL_STATE(1967)] = 83952, + [SMALL_STATE(1968)] = 83962, + [SMALL_STATE(1969)] = 83970, + [SMALL_STATE(1970)] = 83980, + [SMALL_STATE(1971)] = 83988, + [SMALL_STATE(1972)] = 83996, + [SMALL_STATE(1973)] = 84006, + [SMALL_STATE(1974)] = 84013, + [SMALL_STATE(1975)] = 84020, + [SMALL_STATE(1976)] = 84027, + [SMALL_STATE(1977)] = 84034, + [SMALL_STATE(1978)] = 84041, + [SMALL_STATE(1979)] = 84048, + [SMALL_STATE(1980)] = 84055, + [SMALL_STATE(1981)] = 84062, + [SMALL_STATE(1982)] = 84069, + [SMALL_STATE(1983)] = 84076, + [SMALL_STATE(1984)] = 84083, + [SMALL_STATE(1985)] = 84090, + [SMALL_STATE(1986)] = 84097, + [SMALL_STATE(1987)] = 84104, + [SMALL_STATE(1988)] = 84111, + [SMALL_STATE(1989)] = 84118, + [SMALL_STATE(1990)] = 84125, + [SMALL_STATE(1991)] = 84132, + [SMALL_STATE(1992)] = 84139, + [SMALL_STATE(1993)] = 84146, + [SMALL_STATE(1994)] = 84153, + [SMALL_STATE(1995)] = 84160, + [SMALL_STATE(1996)] = 84167, + [SMALL_STATE(1997)] = 84174, + [SMALL_STATE(1998)] = 84181, + [SMALL_STATE(1999)] = 84188, + [SMALL_STATE(2000)] = 84195, + [SMALL_STATE(2001)] = 84202, + [SMALL_STATE(2002)] = 84209, + [SMALL_STATE(2003)] = 84216, + [SMALL_STATE(2004)] = 84223, + [SMALL_STATE(2005)] = 84230, + [SMALL_STATE(2006)] = 84237, + [SMALL_STATE(2007)] = 84244, + [SMALL_STATE(2008)] = 84251, + [SMALL_STATE(2009)] = 84258, + [SMALL_STATE(2010)] = 84265, + [SMALL_STATE(2011)] = 84272, + [SMALL_STATE(2012)] = 84279, + [SMALL_STATE(2013)] = 84286, + [SMALL_STATE(2014)] = 84293, + [SMALL_STATE(2015)] = 84300, + [SMALL_STATE(2016)] = 84307, + [SMALL_STATE(2017)] = 84314, + [SMALL_STATE(2018)] = 84321, + [SMALL_STATE(2019)] = 84328, + [SMALL_STATE(2020)] = 84335, + [SMALL_STATE(2021)] = 84342, + [SMALL_STATE(2022)] = 84349, + [SMALL_STATE(2023)] = 84356, + [SMALL_STATE(2024)] = 84363, + [SMALL_STATE(2025)] = 84370, + [SMALL_STATE(2026)] = 84377, + [SMALL_STATE(2027)] = 84384, + [SMALL_STATE(2028)] = 84391, + [SMALL_STATE(2029)] = 84398, + [SMALL_STATE(2030)] = 84405, + [SMALL_STATE(2031)] = 84412, + [SMALL_STATE(2032)] = 84419, + [SMALL_STATE(2033)] = 84426, + [SMALL_STATE(2034)] = 84433, + [SMALL_STATE(2035)] = 84440, + [SMALL_STATE(2036)] = 84447, + [SMALL_STATE(2037)] = 84454, + [SMALL_STATE(2038)] = 84461, + [SMALL_STATE(2039)] = 84468, + [SMALL_STATE(2040)] = 84475, + [SMALL_STATE(2041)] = 84482, + [SMALL_STATE(2042)] = 84489, + [SMALL_STATE(2043)] = 84496, + [SMALL_STATE(2044)] = 84503, + [SMALL_STATE(2045)] = 84510, + [SMALL_STATE(2046)] = 84517, + [SMALL_STATE(2047)] = 84524, + [SMALL_STATE(2048)] = 84531, + [SMALL_STATE(2049)] = 84538, + [SMALL_STATE(2050)] = 84545, + [SMALL_STATE(2051)] = 84552, + [SMALL_STATE(2052)] = 84559, + [SMALL_STATE(2053)] = 84566, + [SMALL_STATE(2054)] = 84573, + [SMALL_STATE(2055)] = 84580, + [SMALL_STATE(2056)] = 84587, + [SMALL_STATE(2057)] = 84594, + [SMALL_STATE(2058)] = 84601, + [SMALL_STATE(2059)] = 84608, + [SMALL_STATE(2060)] = 84615, + [SMALL_STATE(2061)] = 84622, + [SMALL_STATE(2062)] = 84629, + [SMALL_STATE(2063)] = 84636, + [SMALL_STATE(2064)] = 84643, + [SMALL_STATE(2065)] = 84650, + [SMALL_STATE(2066)] = 84657, + [SMALL_STATE(2067)] = 84664, + [SMALL_STATE(2068)] = 84671, + [SMALL_STATE(2069)] = 84678, + [SMALL_STATE(2070)] = 84685, + [SMALL_STATE(2071)] = 84692, + [SMALL_STATE(2072)] = 84699, + [SMALL_STATE(2073)] = 84706, + [SMALL_STATE(2074)] = 84713, + [SMALL_STATE(2075)] = 84720, + [SMALL_STATE(2076)] = 84727, + [SMALL_STATE(2077)] = 84734, + [SMALL_STATE(2078)] = 84741, + [SMALL_STATE(2079)] = 84748, + [SMALL_STATE(2080)] = 84755, + [SMALL_STATE(2081)] = 84762, + [SMALL_STATE(2082)] = 84769, + [SMALL_STATE(2083)] = 84776, + [SMALL_STATE(2084)] = 84783, + [SMALL_STATE(2085)] = 84790, + [SMALL_STATE(2086)] = 84797, + [SMALL_STATE(2087)] = 84804, + [SMALL_STATE(2088)] = 84811, + [SMALL_STATE(2089)] = 84818, + [SMALL_STATE(2090)] = 84825, + [SMALL_STATE(2091)] = 84832, + [SMALL_STATE(2092)] = 84839, + [SMALL_STATE(2093)] = 84846, + [SMALL_STATE(2094)] = 84853, + [SMALL_STATE(2095)] = 84860, + [SMALL_STATE(2096)] = 84867, + [SMALL_STATE(2097)] = 84874, + [SMALL_STATE(2098)] = 84881, + [SMALL_STATE(2099)] = 84888, + [SMALL_STATE(2100)] = 84895, + [SMALL_STATE(2101)] = 84902, + [SMALL_STATE(2102)] = 84909, + [SMALL_STATE(2103)] = 84916, + [SMALL_STATE(2104)] = 84923, + [SMALL_STATE(2105)] = 84930, + [SMALL_STATE(2106)] = 84937, + [SMALL_STATE(2107)] = 84944, + [SMALL_STATE(2108)] = 84951, + [SMALL_STATE(2109)] = 84958, + [SMALL_STATE(2110)] = 84965, + [SMALL_STATE(2111)] = 84972, + [SMALL_STATE(2112)] = 84979, + [SMALL_STATE(2113)] = 84986, + [SMALL_STATE(2114)] = 84993, + [SMALL_STATE(2115)] = 85000, + [SMALL_STATE(2116)] = 85007, + [SMALL_STATE(2117)] = 85014, + [SMALL_STATE(2118)] = 85021, + [SMALL_STATE(2119)] = 85028, + [SMALL_STATE(2120)] = 85035, + [SMALL_STATE(2121)] = 85042, + [SMALL_STATE(2122)] = 85049, + [SMALL_STATE(2123)] = 85056, + [SMALL_STATE(2124)] = 85063, + [SMALL_STATE(2125)] = 85070, + [SMALL_STATE(2126)] = 85077, + [SMALL_STATE(2127)] = 85084, + [SMALL_STATE(2128)] = 85091, + [SMALL_STATE(2129)] = 85098, + [SMALL_STATE(2130)] = 85105, + [SMALL_STATE(2131)] = 85112, + [SMALL_STATE(2132)] = 85119, + [SMALL_STATE(2133)] = 85126, + [SMALL_STATE(2134)] = 85133, + [SMALL_STATE(2135)] = 85140, + [SMALL_STATE(2136)] = 85147, + [SMALL_STATE(2137)] = 85154, + [SMALL_STATE(2138)] = 85161, + [SMALL_STATE(2139)] = 85168, + [SMALL_STATE(2140)] = 85175, + [SMALL_STATE(2141)] = 85182, + [SMALL_STATE(2142)] = 85189, + [SMALL_STATE(2143)] = 85196, + [SMALL_STATE(2144)] = 85203, + [SMALL_STATE(2145)] = 85210, + [SMALL_STATE(2146)] = 85217, + [SMALL_STATE(2147)] = 85224, + [SMALL_STATE(2148)] = 85231, + [SMALL_STATE(2149)] = 85238, + [SMALL_STATE(2150)] = 85245, + [SMALL_STATE(2151)] = 85252, + [SMALL_STATE(2152)] = 85259, + [SMALL_STATE(2153)] = 85266, + [SMALL_STATE(2154)] = 85273, + [SMALL_STATE(2155)] = 85280, + [SMALL_STATE(2156)] = 85287, + [SMALL_STATE(2157)] = 85294, + [SMALL_STATE(2158)] = 85301, + [SMALL_STATE(2159)] = 85308, + [SMALL_STATE(2160)] = 85315, + [SMALL_STATE(2161)] = 85322, + [SMALL_STATE(2162)] = 85329, + [SMALL_STATE(2163)] = 85336, + [SMALL_STATE(2164)] = 85343, + [SMALL_STATE(2165)] = 85350, + [SMALL_STATE(2166)] = 85357, + [SMALL_STATE(2167)] = 85364, + [SMALL_STATE(2168)] = 85371, + [SMALL_STATE(2169)] = 85378, + [SMALL_STATE(2170)] = 85385, + [SMALL_STATE(2171)] = 85392, + [SMALL_STATE(2172)] = 85399, + [SMALL_STATE(2173)] = 85406, + [SMALL_STATE(2174)] = 85413, + [SMALL_STATE(2175)] = 85420, + [SMALL_STATE(2176)] = 85427, + [SMALL_STATE(2177)] = 85434, + [SMALL_STATE(2178)] = 85441, + [SMALL_STATE(2179)] = 85448, + [SMALL_STATE(2180)] = 85455, + [SMALL_STATE(2181)] = 85462, + [SMALL_STATE(2182)] = 85469, + [SMALL_STATE(2183)] = 85476, + [SMALL_STATE(2184)] = 85483, + [SMALL_STATE(2185)] = 85490, + [SMALL_STATE(2186)] = 85497, + [SMALL_STATE(2187)] = 85504, + [SMALL_STATE(2188)] = 85511, + [SMALL_STATE(2189)] = 85518, + [SMALL_STATE(2190)] = 85525, + [SMALL_STATE(2191)] = 85532, + [SMALL_STATE(2192)] = 85539, + [SMALL_STATE(2193)] = 85546, + [SMALL_STATE(2194)] = 85553, + [SMALL_STATE(2195)] = 85560, + [SMALL_STATE(2196)] = 85567, + [SMALL_STATE(2197)] = 85574, + [SMALL_STATE(2198)] = 85581, + [SMALL_STATE(2199)] = 85588, + [SMALL_STATE(2200)] = 85595, + [SMALL_STATE(2201)] = 85602, + [SMALL_STATE(2202)] = 85609, + [SMALL_STATE(2203)] = 85616, + [SMALL_STATE(2204)] = 85623, + [SMALL_STATE(2205)] = 85630, + [SMALL_STATE(2206)] = 85637, + [SMALL_STATE(2207)] = 85644, + [SMALL_STATE(2208)] = 85651, + [SMALL_STATE(2209)] = 85658, + [SMALL_STATE(2210)] = 85665, + [SMALL_STATE(2211)] = 85672, + [SMALL_STATE(2212)] = 85679, + [SMALL_STATE(2213)] = 85686, + [SMALL_STATE(2214)] = 85693, + [SMALL_STATE(2215)] = 85700, + [SMALL_STATE(2216)] = 85707, + [SMALL_STATE(2217)] = 85714, + [SMALL_STATE(2218)] = 85721, + [SMALL_STATE(2219)] = 85728, + [SMALL_STATE(2220)] = 85735, + [SMALL_STATE(2221)] = 85742, + [SMALL_STATE(2222)] = 85749, + [SMALL_STATE(2223)] = 85756, + [SMALL_STATE(2224)] = 85763, + [SMALL_STATE(2225)] = 85770, + [SMALL_STATE(2226)] = 85777, + [SMALL_STATE(2227)] = 85784, + [SMALL_STATE(2228)] = 85791, + [SMALL_STATE(2229)] = 85798, + [SMALL_STATE(2230)] = 85805, + [SMALL_STATE(2231)] = 85812, + [SMALL_STATE(2232)] = 85819, + [SMALL_STATE(2233)] = 85826, + [SMALL_STATE(2234)] = 85833, + [SMALL_STATE(2235)] = 85840, + [SMALL_STATE(2236)] = 85847, + [SMALL_STATE(2237)] = 85854, + [SMALL_STATE(2238)] = 85861, + [SMALL_STATE(2239)] = 85868, + [SMALL_STATE(2240)] = 85875, + [SMALL_STATE(2241)] = 85882, + [SMALL_STATE(2242)] = 85889, + [SMALL_STATE(2243)] = 85896, + [SMALL_STATE(2244)] = 85903, + [SMALL_STATE(2245)] = 85910, + [SMALL_STATE(2246)] = 85917, + [SMALL_STATE(2247)] = 85924, + [SMALL_STATE(2248)] = 85931, + [SMALL_STATE(2249)] = 85938, + [SMALL_STATE(2250)] = 85945, + [SMALL_STATE(2251)] = 85952, + [SMALL_STATE(2252)] = 85959, + [SMALL_STATE(2253)] = 85966, + [SMALL_STATE(2254)] = 85973, + [SMALL_STATE(2255)] = 85980, + [SMALL_STATE(2256)] = 85987, + [SMALL_STATE(2257)] = 85994, + [SMALL_STATE(2258)] = 86001, + [SMALL_STATE(2259)] = 86008, + [SMALL_STATE(2260)] = 86015, + [SMALL_STATE(2261)] = 86022, + [SMALL_STATE(2262)] = 86029, + [SMALL_STATE(2263)] = 86036, + [SMALL_STATE(2264)] = 86043, + [SMALL_STATE(2265)] = 86050, + [SMALL_STATE(2266)] = 86057, + [SMALL_STATE(2267)] = 86064, + [SMALL_STATE(2268)] = 86071, + [SMALL_STATE(2269)] = 86078, + [SMALL_STATE(2270)] = 86085, + [SMALL_STATE(2271)] = 86092, + [SMALL_STATE(2272)] = 86099, + [SMALL_STATE(2273)] = 86106, + [SMALL_STATE(2274)] = 86113, + [SMALL_STATE(2275)] = 86120, + [SMALL_STATE(2276)] = 86127, + [SMALL_STATE(2277)] = 86134, + [SMALL_STATE(2278)] = 86141, + [SMALL_STATE(2279)] = 86148, + [SMALL_STATE(2280)] = 86155, + [SMALL_STATE(2281)] = 86162, + [SMALL_STATE(2282)] = 86169, + [SMALL_STATE(2283)] = 86176, + [SMALL_STATE(2284)] = 86183, + [SMALL_STATE(2285)] = 86190, + [SMALL_STATE(2286)] = 86197, + [SMALL_STATE(2287)] = 86204, + [SMALL_STATE(2288)] = 86211, + [SMALL_STATE(2289)] = 86218, + [SMALL_STATE(2290)] = 86225, + [SMALL_STATE(2291)] = 86232, + [SMALL_STATE(2292)] = 86239, + [SMALL_STATE(2293)] = 86246, + [SMALL_STATE(2294)] = 86253, + [SMALL_STATE(2295)] = 86260, + [SMALL_STATE(2296)] = 86267, + [SMALL_STATE(2297)] = 86274, + [SMALL_STATE(2298)] = 86281, + [SMALL_STATE(2299)] = 86288, + [SMALL_STATE(2300)] = 86295, + [SMALL_STATE(2301)] = 86302, + [SMALL_STATE(2302)] = 86309, + [SMALL_STATE(2303)] = 86316, + [SMALL_STATE(2304)] = 86323, + [SMALL_STATE(2305)] = 86330, + [SMALL_STATE(2306)] = 86337, + [SMALL_STATE(2307)] = 86344, + [SMALL_STATE(2308)] = 86351, + [SMALL_STATE(2309)] = 86358, + [SMALL_STATE(2310)] = 86365, + [SMALL_STATE(2311)] = 86372, + [SMALL_STATE(2312)] = 86379, + [SMALL_STATE(2313)] = 86386, + [SMALL_STATE(2314)] = 86393, + [SMALL_STATE(2315)] = 86400, + [SMALL_STATE(2316)] = 86407, + [SMALL_STATE(2317)] = 86414, + [SMALL_STATE(2318)] = 86421, + [SMALL_STATE(2319)] = 86428, + [SMALL_STATE(2320)] = 86435, + [SMALL_STATE(2321)] = 86442, + [SMALL_STATE(2322)] = 86449, + [SMALL_STATE(2323)] = 86456, + [SMALL_STATE(2324)] = 86463, + [SMALL_STATE(2325)] = 86470, + [SMALL_STATE(2326)] = 86477, + [SMALL_STATE(2327)] = 86484, + [SMALL_STATE(2328)] = 86491, + [SMALL_STATE(2329)] = 86498, + [SMALL_STATE(2330)] = 86505, + [SMALL_STATE(2331)] = 86512, + [SMALL_STATE(2332)] = 86519, + [SMALL_STATE(2333)] = 86526, + [SMALL_STATE(2334)] = 86533, + [SMALL_STATE(2335)] = 86540, + [SMALL_STATE(2336)] = 86547, + [SMALL_STATE(2337)] = 86554, + [SMALL_STATE(2338)] = 86561, + [SMALL_STATE(2339)] = 86568, + [SMALL_STATE(2340)] = 86575, + [SMALL_STATE(2341)] = 86582, + [SMALL_STATE(2342)] = 86589, + [SMALL_STATE(2343)] = 86596, + [SMALL_STATE(2344)] = 86603, + [SMALL_STATE(2345)] = 86610, + [SMALL_STATE(2346)] = 86617, + [SMALL_STATE(2347)] = 86624, + [SMALL_STATE(2348)] = 86631, + [SMALL_STATE(2349)] = 86638, + [SMALL_STATE(2350)] = 86645, + [SMALL_STATE(2351)] = 86652, + [SMALL_STATE(2352)] = 86659, + [SMALL_STATE(2353)] = 86666, + [SMALL_STATE(2354)] = 86673, + [SMALL_STATE(2355)] = 86680, + [SMALL_STATE(2356)] = 86687, + [SMALL_STATE(2357)] = 86694, + [SMALL_STATE(2358)] = 86701, + [SMALL_STATE(2359)] = 86708, + [SMALL_STATE(2360)] = 86715, + [SMALL_STATE(2361)] = 86722, + [SMALL_STATE(2362)] = 86729, + [SMALL_STATE(2363)] = 86736, + [SMALL_STATE(2364)] = 86743, + [SMALL_STATE(2365)] = 86750, + [SMALL_STATE(2366)] = 86757, + [SMALL_STATE(2367)] = 86764, + [SMALL_STATE(2368)] = 86771, + [SMALL_STATE(2369)] = 86778, + [SMALL_STATE(2370)] = 86785, + [SMALL_STATE(2371)] = 86792, + [SMALL_STATE(2372)] = 86799, + [SMALL_STATE(2373)] = 86806, + [SMALL_STATE(2374)] = 86813, + [SMALL_STATE(2375)] = 86820, + [SMALL_STATE(2376)] = 86827, + [SMALL_STATE(2377)] = 86834, + [SMALL_STATE(2378)] = 86841, + [SMALL_STATE(2379)] = 86848, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -78797,1832 +90702,2048 @@ 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(1587), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), [31] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), [35] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), - [43] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), - [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 2), - [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 2), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), - [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1587), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2072), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(865), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2066), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1408), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2060), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2052), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1350), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1432), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1452), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1583), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(651), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1582), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1246), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(549), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(548), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(339), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(880), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1587), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2072), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(865), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2066), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1408), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2060), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1350), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1432), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(339), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1137), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2047), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1681), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2015), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1682), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1141), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2013), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1602), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1571), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1601), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1930), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1935), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1600), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1936), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1015), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1938), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1182), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2055), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 1), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1596), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1161), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2014), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 2), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(712), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1658), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(954), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1861), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1858), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1855), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1665), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1143), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2039), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1789), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1648), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(555), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1061), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 1), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 1), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(567), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(695), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1191), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2030), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(559), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1083), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(558), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1051), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1247), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1064), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1112), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1233), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1479), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1056), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1215), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(627), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 4), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(550), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 5), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 1), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(706), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1123), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1304), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1433), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1716), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1679), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(568), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1474), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1414), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1771), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1361), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1364), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(546), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1314), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1153), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(543), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1744), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(988), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1226), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1166), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), + [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 2), + [43] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 2), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), + [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 1), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_types, 1), + [75] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), + [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), + [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 2), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_types, 2), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 3), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 5), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_repeat1, 2), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2006), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2141), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 3), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 3), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 4), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 4), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 5), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 5), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1800), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1765), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(995), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2342), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1753), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2339), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2338), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1557), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1743), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1740), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1911), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(767), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1910), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1909), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1413), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(769), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(719), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(693), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(295), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1042), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2020), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1973), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2197), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2254), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2187), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2164), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1991), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2118), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2095), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1800), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1765), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(995), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2342), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1753), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2339), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2338), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1557), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1743), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1740), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(295), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1318), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2278), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1879), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2109), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1877), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1303), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2108), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1325), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2289), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1932), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1626), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1926), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2050), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2053), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1923), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2054), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1165), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2056), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1913), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1336), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2236), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(748), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1903), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1087), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2074), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2070), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2067), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1917), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1880), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1301), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2267), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 1), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 1), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(707), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1264), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2048), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(775), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(701), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1305), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2255), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1229), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(704), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(716), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1212), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1406), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1429), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1225), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1290), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1574), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1256), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(758), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1381), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 5), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(723), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 1), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 4), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 3), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(833), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1453), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1744), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1293), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1771), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1769), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(722), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(695), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1330), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(696), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 3), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 4), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 2), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3532] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1489), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1690), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1608), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1972), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1522), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(1139), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1375), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1315), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1559), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1930), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 3), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 2), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 4), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 6), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4110] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), }; #ifdef __cplusplus