diff --git a/grammar.js b/grammar.js index 7fa8a0a..99d316e 100644 --- a/grammar.js +++ b/grammar.js @@ -875,7 +875,7 @@ module.exports = grammar({ _type: ($) => seq( - choice($.predefined_types, $.identifier), + choice($.predefined_type, $.identifier), optional(choice(repeat1(seq("[", "]")), kw("%rowtype"), kw("%type"))) ), @@ -907,10 +907,16 @@ module.exports = grammar({ // | VARCHAR l = type_length? { VarChar(l) } // (* | schema_qualified_name_nontype (LEFT_PAREN vex (COMMA vex)* RIGHT_PAREN)? *) // TODO(chrde): moar types!! - predefined_types: ($) => choice(seq(kw("numeric"), optional($.precision))), + predefined_type: ($) => + choice( + seq(kw("numeric"), optional($.precision)), + seq(kw("varchar"), optional($.type_length)) + ), precision: ($) => seq("(", $.number, optional(seq(",", $.number)), ")"), + type_length: ($) => seq("(", $.number, ")"), + string: ($) => seq("'", repeat(choice(prec(1, /''/), prec(2, /[^']/))), "'"), diff --git a/src/grammar.json b/src/grammar.json index 9892ff5..4baedf3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5869,7 +5869,7 @@ "members": [ { "type": "SYMBOL", - "name": "predefined_types" + "name": "predefined_type" }, { "type": "SYMBOL", @@ -5916,7 +5916,7 @@ } ] }, - "predefined_types": { + "predefined_type": { "type": "CHOICE", "members": [ { @@ -5939,6 +5939,27 @@ ] } ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[vV][aA][rR][cC][hH][aA][rR]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_length" + }, + { + "type": "BLANK" + } + ] + } + ] } ] }, @@ -5980,6 +6001,23 @@ } ] }, + "type_length": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "string": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index b664f51..0ea9450 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -107,7 +107,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true }, { @@ -1163,7 +1163,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true }, { @@ -1770,7 +1770,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true }, { @@ -1841,7 +1841,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true } ] @@ -2577,7 +2577,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true }, { @@ -2749,7 +2749,7 @@ } }, { - "type": "predefined_types", + "type": "predefined_type", "named": true, "fields": {}, "children": { @@ -2759,6 +2759,10 @@ { "type": "precision", "named": true + }, + { + "type": "type_length", + "named": true } ] } @@ -2854,7 +2858,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true } ] @@ -3584,7 +3588,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true } ] @@ -3841,6 +3845,21 @@ "named": true, "fields": {} }, + { + "type": "type_length", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "number", + "named": true + } + ] + } + }, { "type": "update_set", "named": true, @@ -3989,7 +4008,7 @@ "named": true }, { - "type": "predefined_types", + "type": "predefined_type", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 78a8de5..d07f596 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2380 +#define STATE_COUNT 2428 #define LARGE_STATE_COUNT 5 -#define SYMBOL_COUNT 387 +#define SYMBOL_COUNT 389 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 208 +#define TOKEN_COUNT 209 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -178,240 +178,242 @@ enum { 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, - sym_and = 203, - sym_true = 204, - sym_false = 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_values = 218, - sym_insert_item = 219, - sym_insert_conflict = 220, - sym_conflict_target = 221, - sym_update_set = 222, - sym_update_value = 223, - sym_returning = 224, - sym_create_table_statement = 225, - sym_create_table_item = 226, - sym_create_schema_statement = 227, - sym_schema_role = 228, - sym_create_index_statement = 229, - sym_index_using = 230, - sym_index_col = 231, - sym_index_col_dir = 232, - sym_index_col_nulls = 233, - sym_index_includes = 234, - sym_delete_statement = 235, - sym_delete_using = 236, - sym_alter_table_statement = 237, - sym_alter_table_change = 238, - sym_alter_table_action = 239, - sym_alter_column_action = 240, - sym_table_constraint = 241, - sym_constraint_when = 242, - sym_table_constraint_ty = 243, - sym_constraint_foreign_key = 244, - sym_fk_action = 245, - sym_fk_ref_action = 246, - sym_alter_column_type = 247, - sym_alter_table_fk_ref_action = 248, - sym_table_column_item = 249, - sym_column_constraint = 250, - sym_column_constraint_ty = 251, - sym_alter_table_rename_column = 252, - sym_alter_table_rename_constraint = 253, - sym_alter_table_rename_table = 254, - sym_alter_table_change_schema = 255, - sym_grant_statement = 256, - sym_grant_roles = 257, - sym_grant_privileges = 258, - sym_grant_targets = 259, - sym_grant_function = 260, - sym_psql_statement = 261, - sym_create_sequence_statement = 262, - sym_sequence_increment = 263, - sym_sequence_min = 264, - sym_sequence_max = 265, - sym_sequence_start = 266, - sym_sequence_cache = 267, - sym_sequence_cycle = 268, - sym_sequence_owned = 269, - sym_create_trigger_statement = 270, - sym_trigger_when = 271, - sym_trigger_event = 272, - sym_trigger_scope = 273, - sym_trigger_exec = 274, - sym_trigger_cond = 275, - sym__plpgsql_statement = 276, - sym_open_cursor_statement = 277, - sym_get_diagnostics_statement = 278, - sym_for_statement = 279, - sym_raise_statement = 280, - sym_if_statement = 281, - sym_execute_statement = 282, - sym_execute_using = 283, - sym_assign_statement = 284, - sym_return_statement = 285, - sym_perform_statement = 286, - sym_do_block = 287, - sym_select_statement = 288, - sym_with_query = 289, - sym_with_query_item = 290, - sym_into = 291, - sym_select_having = 292, - sym__select_limit_offset = 293, - sym_select_limit = 294, - sym_select_offset = 295, - sym_select_group_by = 296, - sym_select_order_by = 297, - sym_order_by_item = 298, - sym_order_by_direction = 299, - sym_select_where = 300, - sym_select_item = 301, - sym_select_from = 302, - sym_from_item = 303, - sym_from_select = 304, - sym_from_table = 305, - sym_from_function = 306, - sym_join_item = 307, - sym_join_condition = 308, - sym_join_type = 309, - sym_create_function_statement = 310, - sym_function_run_as = 311, - sym_function_return = 312, - sym_return_setof = 313, - sym_return_table = 314, - sym_function_volatility = 315, - sym_block = 316, - sym_body = 317, - sym_dollar_quote = 318, - sym_declarations = 319, - sym_var_definition = 320, - sym_function_signature = 321, - sym_function_parameters = 322, - sym_var_declaration = 323, - sym_where_filter = 324, - sym_or_replace = 325, - sym_temporary = 326, - sym_if_not_exists = 327, - sym_if_exists = 328, - sym_as = 329, - sym__type = 330, - sym_predefined_types = 331, - sym_precision = 332, - sym_string = 333, - sym__value_expression = 334, - sym_array_constructor = 335, - sym_dollar_quote_string = 336, - sym_time_expression = 337, - sym__interval_fields = 338, - sym_function_call = 339, - sym_op_expression = 340, - sym__list_of_identifiers = 341, - sym_comparison_op = 342, - sym_contains_op = 343, - sym_comparison_null = 344, - sym_comparison_kw = 345, - sym_other_op = 346, - sym_minus = 347, - sym_plus = 348, - sym_not = 349, - sym_or = 350, - sym_null = 351, - sym_star = 352, - sym_identifier = 353, - aux_sym_source_file_repeat1 = 354, - aux_sym_drop_type_statement_repeat1 = 355, - aux_sym_update_statement_repeat1 = 356, - aux_sym_update_statement_repeat2 = 357, - aux_sym_drop_function_statement_repeat1 = 358, - aux_sym_drop_function_item_repeat1 = 359, - aux_sym_create_type_statement_repeat1 = 360, - aux_sym_create_type_statement_repeat2 = 361, - aux_sym_insert_items_repeat1 = 362, - aux_sym_insert_values_repeat1 = 363, - aux_sym_conflict_target_repeat1 = 364, - aux_sym_update_set_repeat1 = 365, - aux_sym_returning_repeat1 = 366, - aux_sym_create_table_statement_repeat1 = 367, - aux_sym_create_index_statement_repeat1 = 368, - aux_sym_alter_table_change_repeat1 = 369, - aux_sym_constraint_foreign_key_repeat1 = 370, - aux_sym_table_column_item_repeat1 = 371, - aux_sym_grant_roles_repeat1 = 372, - aux_sym_grant_targets_repeat1 = 373, - aux_sym_grant_function_repeat1 = 374, - aux_sym_psql_statement_repeat1 = 375, - aux_sym_create_sequence_statement_repeat1 = 376, - aux_sym_trigger_event_repeat1 = 377, - aux_sym_for_statement_repeat1 = 378, - aux_sym_if_statement_repeat1 = 379, - aux_sym_with_query_repeat1 = 380, - aux_sym_select_order_by_repeat1 = 381, - aux_sym_from_item_repeat1 = 382, - aux_sym_block_repeat1 = 383, - aux_sym_declarations_repeat1 = 384, - aux_sym__type_repeat1 = 385, - aux_sym_string_repeat1 = 386, - alias_sym_columns = 387, + aux_sym_predefined_type_token1 = 154, + aux_sym_predefined_type_token2 = 155, + anon_sym_SQUOTE = 156, + aux_sym_string_token1 = 157, + aux_sym_string_token2 = 158, + sym_comment = 159, + anon_sym_DOT = 160, + aux_sym_array_constructor_token1 = 161, + aux_sym_dollar_quote_string_token1 = 162, + aux_sym_time_expression_token1 = 163, + aux_sym_time_expression_token2 = 164, + aux_sym_time_expression_token3 = 165, + aux_sym_time_expression_token4 = 166, + aux_sym__interval_fields_token1 = 167, + aux_sym__interval_fields_token2 = 168, + aux_sym__interval_fields_token3 = 169, + aux_sym__interval_fields_token4 = 170, + aux_sym__interval_fields_token5 = 171, + aux_sym__interval_fields_token6 = 172, + anon_sym_STAR = 173, + anon_sym_SLASH = 174, + anon_sym_PERCENT = 175, + anon_sym_DASH = 176, + anon_sym_PLUS = 177, + anon_sym_LT = 178, + anon_sym_GT = 179, + anon_sym_LT_EQ = 180, + anon_sym_GT_EQ = 181, + anon_sym_LT_GT = 182, + anon_sym_BANG_EQ = 183, + aux_sym_contains_op_token1 = 184, + aux_sym_contains_op_token2 = 185, + aux_sym_contains_op_token3 = 186, + aux_sym_comparison_null_token1 = 187, + aux_sym_comparison_null_token2 = 188, + aux_sym_comparison_null_token3 = 189, + aux_sym_comparison_null_token4 = 190, + aux_sym_comparison_kw_token1 = 191, + aux_sym_comparison_kw_token2 = 192, + aux_sym_comparison_kw_token3 = 193, + anon_sym_PIPE_PIPE = 194, + anon_sym_LT_AT = 195, + anon_sym_AT_GT = 196, + anon_sym_LT_LT = 197, + anon_sym_GT_GT = 198, + anon_sym_AMP_AMP = 199, + anon_sym_AMP_LT = 200, + anon_sym_AMP_GT = 201, + anon_sym_DASH_PIPE_DASH = 202, + sym_cast = 203, + sym_and = 204, + sym_true = 205, + sym_false = 206, + sym_number = 207, + sym__identifier = 208, + sym_source_file = 209, + sym__statement = 210, + sym_drop_type_statement = 211, + sym_update_statement = 212, + sym_drop_function_statement = 213, + sym_drop_function_item = 214, + sym_create_type_statement = 215, + sym__with_query_statement = 216, + sym_insert_statement = 217, + sym_insert_items = 218, + sym_insert_values = 219, + sym_insert_item = 220, + sym_insert_conflict = 221, + sym_conflict_target = 222, + sym_update_set = 223, + sym_update_value = 224, + sym_returning = 225, + sym_create_table_statement = 226, + sym_create_table_item = 227, + sym_create_schema_statement = 228, + sym_schema_role = 229, + sym_create_index_statement = 230, + sym_index_using = 231, + sym_index_col = 232, + sym_index_col_dir = 233, + sym_index_col_nulls = 234, + sym_index_includes = 235, + sym_delete_statement = 236, + sym_delete_using = 237, + sym_alter_table_statement = 238, + sym_alter_table_change = 239, + sym_alter_table_action = 240, + sym_alter_column_action = 241, + sym_table_constraint = 242, + sym_constraint_when = 243, + sym_table_constraint_ty = 244, + sym_constraint_foreign_key = 245, + sym_fk_action = 246, + sym_fk_ref_action = 247, + sym_alter_column_type = 248, + sym_alter_table_fk_ref_action = 249, + sym_table_column_item = 250, + sym_column_constraint = 251, + sym_column_constraint_ty = 252, + sym_alter_table_rename_column = 253, + sym_alter_table_rename_constraint = 254, + sym_alter_table_rename_table = 255, + sym_alter_table_change_schema = 256, + sym_grant_statement = 257, + sym_grant_roles = 258, + sym_grant_privileges = 259, + sym_grant_targets = 260, + sym_grant_function = 261, + sym_psql_statement = 262, + sym_create_sequence_statement = 263, + sym_sequence_increment = 264, + sym_sequence_min = 265, + sym_sequence_max = 266, + sym_sequence_start = 267, + sym_sequence_cache = 268, + sym_sequence_cycle = 269, + sym_sequence_owned = 270, + sym_create_trigger_statement = 271, + sym_trigger_when = 272, + sym_trigger_event = 273, + sym_trigger_scope = 274, + sym_trigger_exec = 275, + sym_trigger_cond = 276, + sym__plpgsql_statement = 277, + sym_open_cursor_statement = 278, + sym_get_diagnostics_statement = 279, + sym_for_statement = 280, + sym_raise_statement = 281, + sym_if_statement = 282, + sym_execute_statement = 283, + sym_execute_using = 284, + sym_assign_statement = 285, + sym_return_statement = 286, + sym_perform_statement = 287, + sym_do_block = 288, + sym_select_statement = 289, + sym_with_query = 290, + sym_with_query_item = 291, + sym_into = 292, + sym_select_having = 293, + sym__select_limit_offset = 294, + sym_select_limit = 295, + sym_select_offset = 296, + sym_select_group_by = 297, + sym_select_order_by = 298, + sym_order_by_item = 299, + sym_order_by_direction = 300, + sym_select_where = 301, + sym_select_item = 302, + sym_select_from = 303, + sym_from_item = 304, + sym_from_select = 305, + sym_from_table = 306, + sym_from_function = 307, + sym_join_item = 308, + sym_join_condition = 309, + sym_join_type = 310, + sym_create_function_statement = 311, + sym_function_run_as = 312, + sym_function_return = 313, + sym_return_setof = 314, + sym_return_table = 315, + sym_function_volatility = 316, + sym_block = 317, + sym_body = 318, + sym_dollar_quote = 319, + sym_declarations = 320, + sym_var_definition = 321, + sym_function_signature = 322, + sym_function_parameters = 323, + sym_var_declaration = 324, + sym_where_filter = 325, + sym_or_replace = 326, + sym_temporary = 327, + sym_if_not_exists = 328, + sym_if_exists = 329, + sym_as = 330, + sym__type = 331, + sym_predefined_type = 332, + sym_precision = 333, + sym_type_length = 334, + sym_string = 335, + sym__value_expression = 336, + sym_array_constructor = 337, + sym_dollar_quote_string = 338, + sym_time_expression = 339, + sym__interval_fields = 340, + sym_function_call = 341, + sym_op_expression = 342, + sym__list_of_identifiers = 343, + sym_comparison_op = 344, + sym_contains_op = 345, + sym_comparison_null = 346, + sym_comparison_kw = 347, + sym_other_op = 348, + sym_minus = 349, + sym_plus = 350, + sym_not = 351, + sym_or = 352, + sym_null = 353, + sym_star = 354, + sym_identifier = 355, + aux_sym_source_file_repeat1 = 356, + aux_sym_drop_type_statement_repeat1 = 357, + aux_sym_update_statement_repeat1 = 358, + aux_sym_update_statement_repeat2 = 359, + aux_sym_drop_function_statement_repeat1 = 360, + aux_sym_drop_function_item_repeat1 = 361, + aux_sym_create_type_statement_repeat1 = 362, + aux_sym_create_type_statement_repeat2 = 363, + aux_sym_insert_items_repeat1 = 364, + aux_sym_insert_values_repeat1 = 365, + aux_sym_conflict_target_repeat1 = 366, + aux_sym_update_set_repeat1 = 367, + aux_sym_returning_repeat1 = 368, + aux_sym_create_table_statement_repeat1 = 369, + aux_sym_create_index_statement_repeat1 = 370, + aux_sym_alter_table_change_repeat1 = 371, + aux_sym_constraint_foreign_key_repeat1 = 372, + aux_sym_table_column_item_repeat1 = 373, + aux_sym_grant_roles_repeat1 = 374, + aux_sym_grant_targets_repeat1 = 375, + aux_sym_grant_function_repeat1 = 376, + aux_sym_psql_statement_repeat1 = 377, + aux_sym_create_sequence_statement_repeat1 = 378, + aux_sym_trigger_event_repeat1 = 379, + aux_sym_for_statement_repeat1 = 380, + aux_sym_if_statement_repeat1 = 381, + aux_sym_with_query_repeat1 = 382, + aux_sym_select_order_by_repeat1 = 383, + aux_sym_from_item_repeat1 = 384, + aux_sym_block_repeat1 = 385, + aux_sym_declarations_repeat1 = 386, + aux_sym__type_repeat1 = 387, + aux_sym_string_repeat1 = 388, + alias_sym_columns = 389, }; static const char * const ts_symbol_names[] = { @@ -569,7 +571,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACK] = "]", [aux_sym__type_token1] = "_type_token1", [aux_sym__type_token2] = "_type_token2", - [aux_sym_predefined_types_token1] = "predefined_types_token1", + [aux_sym_predefined_type_token1] = "predefined_type_token1", + [aux_sym_predefined_type_token2] = "predefined_type_token2", [anon_sym_SQUOTE] = "'", [aux_sym_string_token1] = "string_token1", [aux_sym_string_token2] = "string_token2", @@ -746,8 +749,9 @@ static const char * const ts_symbol_names[] = { [sym_if_exists] = "if_exists", [sym_as] = "as", [sym__type] = "_type", - [sym_predefined_types] = "predefined_types", + [sym_predefined_type] = "predefined_type", [sym_precision] = "precision", + [sym_type_length] = "type_length", [sym_string] = "string", [sym__value_expression] = "_value_expression", [sym_array_constructor] = "array_constructor", @@ -960,7 +964,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACK] = anon_sym_RBRACK, [aux_sym__type_token1] = aux_sym__type_token1, [aux_sym__type_token2] = aux_sym__type_token2, - [aux_sym_predefined_types_token1] = aux_sym_predefined_types_token1, + [aux_sym_predefined_type_token1] = aux_sym_predefined_type_token1, + [aux_sym_predefined_type_token2] = aux_sym_predefined_type_token2, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_string_token1] = aux_sym_string_token1, [aux_sym_string_token2] = aux_sym_string_token2, @@ -1137,8 +1142,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_if_exists] = sym_if_exists, [sym_as] = sym_as, [sym__type] = sym__type, - [sym_predefined_types] = sym_predefined_types, + [sym_predefined_type] = sym_predefined_type, [sym_precision] = sym_precision, + [sym_type_length] = sym_type_length, [sym_string] = sym_string, [sym__value_expression] = sym__value_expression, [sym_array_constructor] = sym_array_constructor, @@ -1813,7 +1819,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_predefined_types_token1] = { + [aux_sym_predefined_type_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_predefined_type_token2] = { .visible = false, .named = false, }, @@ -2521,7 +2531,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_predefined_types] = { + [sym_predefined_type] = { .visible = true, .named = true, }, @@ -2529,6 +2539,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_type_length] = { + .visible = true, + .named = true, + }, [sym_string] = { .visible = true, .named = true, @@ -2814,1268 +2828,1268 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 5, [8] = 8, [9] = 9, - [10] = 3, + [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, - [15] = 15, - [16] = 13, - [17] = 14, - [18] = 18, + [15] = 9, + [16] = 16, + [17] = 17, + [18] = 4, [19] = 19, [20] = 12, - [21] = 4, - [22] = 8, + [21] = 11, + [22] = 22, [23] = 23, - [24] = 11, + [24] = 10, [25] = 25, - [26] = 25, - [27] = 18, - [28] = 28, - [29] = 28, - [30] = 23, - [31] = 15, - [32] = 32, + [26] = 22, + [27] = 16, + [28] = 3, + [29] = 23, + [30] = 14, + [31] = 25, + [32] = 13, [33] = 33, - [34] = 6, - [35] = 35, - [36] = 36, - [37] = 9, + [34] = 34, + [35] = 8, + [36] = 6, + [37] = 37, [38] = 38, - [39] = 32, - [40] = 40, + [39] = 39, + [40] = 19, [41] = 41, - [42] = 2, + [42] = 38, [43] = 2, - [44] = 41, + [44] = 2, [45] = 2, [46] = 2, - [47] = 33, - [48] = 2, - [49] = 35, + [47] = 47, + [48] = 33, + [49] = 2, [50] = 50, - [51] = 5, - [52] = 36, - [53] = 53, - [54] = 38, - [55] = 5, - [56] = 28, - [57] = 12, + [51] = 34, + [52] = 37, + [53] = 47, + [54] = 54, + [55] = 39, + [56] = 41, + [57] = 5, [58] = 58, - [59] = 11, - [60] = 60, + [59] = 5, + [60] = 50, [61] = 61, - [62] = 62, - [63] = 63, - [64] = 4, - [65] = 12, - [66] = 25, - [67] = 13, - [68] = 15, - [69] = 14, - [70] = 4, - [71] = 8, - [72] = 23, - [73] = 28, - [74] = 18, - [75] = 3, - [76] = 3, - [77] = 18, - [78] = 62, - [79] = 25, - [80] = 23, - [81] = 8, - [82] = 5, - [83] = 14, - [84] = 15, + [62] = 4, + [63] = 3, + [64] = 13, + [65] = 14, + [66] = 66, + [67] = 4, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 9, + [72] = 16, + [73] = 3, + [74] = 5, + [75] = 25, + [76] = 10, + [77] = 23, + [78] = 12, + [79] = 22, + [80] = 11, + [81] = 22, + [82] = 11, + [83] = 12, + [84] = 23, [85] = 13, - [86] = 11, - [87] = 40, - [88] = 58, - [89] = 60, - [90] = 61, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 50, - [96] = 96, + [86] = 14, + [87] = 10, + [88] = 9, + [89] = 16, + [90] = 25, + [91] = 70, + [92] = 61, + [93] = 69, + [94] = 68, + [95] = 3, + [96] = 13, [97] = 97, [98] = 98, - [99] = 53, + [99] = 25, [100] = 100, [101] = 101, - [102] = 6, - [103] = 28, - [104] = 18, - [105] = 5, - [106] = 6, - [107] = 23, - [108] = 8, - [109] = 14, - [110] = 15, - [111] = 13, - [112] = 12, - [113] = 113, - [114] = 11, - [115] = 115, - [116] = 94, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 4, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 6, + [114] = 114, + [115] = 114, + [116] = 116, [117] = 98, - [118] = 118, - [119] = 119, - [120] = 118, - [121] = 121, - [122] = 97, - [123] = 25, - [124] = 124, - [125] = 125, - [126] = 101, - [127] = 93, - [128] = 115, - [129] = 3, - [130] = 4, - [131] = 131, - [132] = 5, - [133] = 91, - [134] = 124, - [135] = 135, - [136] = 125, - [137] = 96, - [138] = 119, - [139] = 19, - [140] = 131, - [141] = 135, - [142] = 113, - [143] = 121, - [144] = 4, - [145] = 3, - [146] = 3, - [147] = 15, - [148] = 13, - [149] = 12, - [150] = 11, - [151] = 5, - [152] = 8, - [153] = 23, - [154] = 25, - [155] = 11, - [156] = 9, - [157] = 12, + [118] = 107, + [119] = 54, + [120] = 17, + [121] = 8, + [122] = 105, + [123] = 16, + [124] = 5, + [125] = 104, + [126] = 9, + [127] = 127, + [128] = 14, + [129] = 127, + [130] = 58, + [131] = 5, + [132] = 103, + [133] = 102, + [134] = 111, + [135] = 110, + [136] = 116, + [137] = 109, + [138] = 106, + [139] = 101, + [140] = 112, + [141] = 100, + [142] = 12, + [143] = 6, + [144] = 144, + [145] = 8, + [146] = 11, + [147] = 10, + [148] = 22, + [149] = 23, + [150] = 14, + [151] = 17, + [152] = 22, + [153] = 12, + [154] = 23, + [155] = 12, + [156] = 4, + [157] = 25, [158] = 13, - [159] = 15, - [160] = 14, - [161] = 18, - [162] = 28, - [163] = 9, + [159] = 3, + [160] = 23, + [161] = 19, + [162] = 58, + [163] = 8, [164] = 6, [165] = 8, - [166] = 23, - [167] = 50, - [168] = 5, - [169] = 4, - [170] = 6, - [171] = 25, - [172] = 19, - [173] = 28, - [174] = 18, - [175] = 14, - [176] = 41, - [177] = 33, - [178] = 3, - [179] = 4, - [180] = 180, - [181] = 32, - [182] = 2, - [183] = 2, - [184] = 4, - [185] = 185, - [186] = 28, - [187] = 18, - [188] = 28, - [189] = 25, - [190] = 190, - [191] = 35, - [192] = 23, - [193] = 8, - [194] = 32, - [195] = 14, - [196] = 15, - [197] = 13, - [198] = 33, - [199] = 18, - [200] = 9, - [201] = 11, - [202] = 12, - [203] = 13, - [204] = 3, - [205] = 12, - [206] = 6, - [207] = 15, - [208] = 14, - [209] = 11, - [210] = 35, - [211] = 23, - [212] = 41, - [213] = 25, - [214] = 9, - [215] = 2, - [216] = 8, - [217] = 217, - [218] = 41, - [219] = 219, - [220] = 220, - [221] = 36, - [222] = 38, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 9, - [227] = 38, + [166] = 5, + [167] = 4, + [168] = 3, + [169] = 10, + [170] = 5, + [171] = 11, + [172] = 9, + [173] = 22, + [174] = 16, + [175] = 11, + [176] = 10, + [177] = 16, + [178] = 9, + [179] = 14, + [180] = 25, + [181] = 13, + [182] = 19, + [183] = 6, + [184] = 25, + [185] = 4, + [186] = 34, + [187] = 2, + [188] = 25, + [189] = 189, + [190] = 14, + [191] = 38, + [192] = 9, + [193] = 193, + [194] = 16, + [195] = 37, + [196] = 47, + [197] = 2, + [198] = 13, + [199] = 19, + [200] = 33, + [201] = 9, + [202] = 2, + [203] = 16, + [204] = 12, + [205] = 11, + [206] = 8, + [207] = 14, + [208] = 22, + [209] = 23, + [210] = 10, + [211] = 3, + [212] = 212, + [213] = 33, + [214] = 6, + [215] = 13, + [216] = 12, + [217] = 11, + [218] = 4, + [219] = 3, + [220] = 22, + [221] = 47, + [222] = 23, + [223] = 10, + [224] = 38, + [225] = 19, + [226] = 34, + [227] = 37, [228] = 228, - [229] = 2, - [230] = 230, - [231] = 231, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, + [229] = 38, + [230] = 6, + [231] = 34, + [232] = 39, + [233] = 37, + [234] = 37, + [235] = 2, + [236] = 34, + [237] = 47, + [238] = 8, + [239] = 33, [240] = 6, - [241] = 33, - [242] = 6, - [243] = 35, - [244] = 92, + [241] = 241, + [242] = 8, + [243] = 41, + [244] = 2, [245] = 245, - [246] = 2, - [247] = 247, - [248] = 33, - [249] = 35, - [250] = 36, - [251] = 32, - [252] = 32, + [246] = 246, + [247] = 41, + [248] = 248, + [249] = 33, + [250] = 38, + [251] = 251, + [252] = 252, [253] = 253, - [254] = 60, - [255] = 2, - [256] = 33, + [254] = 254, + [255] = 19, + [256] = 256, [257] = 257, - [258] = 35, - [259] = 60, - [260] = 2, + [258] = 97, + [259] = 259, + [260] = 260, [261] = 261, - [262] = 38, - [263] = 2, - [264] = 62, + [262] = 262, + [263] = 263, + [264] = 264, [265] = 265, - [266] = 36, - [267] = 61, - [268] = 58, - [269] = 9, - [270] = 40, - [271] = 41, - [272] = 272, - [273] = 32, - [274] = 38, - [275] = 58, - [276] = 36, - [277] = 62, - [278] = 61, - [279] = 9, - [280] = 40, - [281] = 41, - [282] = 2, - [283] = 91, - [284] = 35, - [285] = 40, - [286] = 93, - [287] = 115, - [288] = 96, - [289] = 2, - [290] = 94, - [291] = 2, - [292] = 98, - [293] = 2, - [294] = 2, - [295] = 58, - [296] = 60, - [297] = 61, - [298] = 118, - [299] = 121, - [300] = 62, - [301] = 4, - [302] = 53, - [303] = 35, - [304] = 32, - [305] = 53, - [306] = 119, - [307] = 96, - [308] = 101, - [309] = 97, + [266] = 266, + [267] = 267, + [268] = 39, + [269] = 2, + [270] = 270, + [271] = 68, + [272] = 69, + [273] = 61, + [274] = 274, + [275] = 47, + [276] = 70, + [277] = 39, + [278] = 39, + [279] = 41, + [280] = 2, + [281] = 50, + [282] = 47, + [283] = 38, + [284] = 34, + [285] = 37, + [286] = 19, + [287] = 2, + [288] = 50, + [289] = 33, + [290] = 70, + [291] = 61, + [292] = 69, + [293] = 68, + [294] = 19, + [295] = 2, + [296] = 296, + [297] = 297, + [298] = 41, + [299] = 2, + [300] = 106, + [301] = 101, + [302] = 98, + [303] = 127, + [304] = 116, + [305] = 112, + [306] = 4, + [307] = 2, + [308] = 50, + [309] = 106, [310] = 3, - [311] = 131, - [312] = 98, - [313] = 41, - [314] = 38, - [315] = 97, - [316] = 101, - [317] = 135, - [318] = 33, - [319] = 93, - [320] = 131, - [321] = 321, - [322] = 121, - [323] = 323, - [324] = 115, - [325] = 118, - [326] = 326, - [327] = 40, - [328] = 328, - [329] = 119, - [330] = 125, - [331] = 124, - [332] = 94, - [333] = 36, - [334] = 91, - [335] = 135, - [336] = 125, - [337] = 124, - [338] = 41, - [339] = 113, - [340] = 33, - [341] = 113, - [342] = 32, - [343] = 96, - [344] = 53, - [345] = 62, - [346] = 38, - [347] = 62, - [348] = 61, - [349] = 60, - [350] = 53, - [351] = 58, - [352] = 61, - [353] = 60, - [354] = 58, - [355] = 40, - [356] = 36, - [357] = 94, - [358] = 98, - [359] = 93, - [360] = 118, - [361] = 91, - [362] = 121, - [363] = 97, - [364] = 101, - [365] = 115, - [366] = 131, - [367] = 135, - [368] = 113, - [369] = 36, - [370] = 119, - [371] = 38, - [372] = 124, - [373] = 125, - [374] = 5, - [375] = 58, - [376] = 135, - [377] = 62, - [378] = 135, - [379] = 53, - [380] = 131, - [381] = 125, - [382] = 40, - [383] = 61, - [384] = 60, - [385] = 91, - [386] = 58, - [387] = 93, - [388] = 94, - [389] = 98, - [390] = 50, - [391] = 97, - [392] = 118, - [393] = 121, - [394] = 125, - [395] = 131, - [396] = 62, - [397] = 61, - [398] = 60, - [399] = 113, - [400] = 121, - [401] = 321, - [402] = 113, - [403] = 97, - [404] = 124, - [405] = 118, - [406] = 98, - [407] = 407, - [408] = 40, - [409] = 101, - [410] = 94, - [411] = 3, - [412] = 4, - [413] = 96, - [414] = 119, - [415] = 323, - [416] = 101, - [417] = 115, - [418] = 93, - [419] = 96, - [420] = 115, - [421] = 91, - [422] = 119, - [423] = 124, - [424] = 8, - [425] = 4, - [426] = 115, - [427] = 101, - [428] = 115, - [429] = 97, - [430] = 119, - [431] = 121, - [432] = 118, - [433] = 25, - [434] = 124, - [435] = 125, - [436] = 436, - [437] = 124, - [438] = 98, - [439] = 53, - [440] = 131, - [441] = 135, - [442] = 91, - [443] = 93, - [444] = 11, - [445] = 12, - [446] = 13, - [447] = 15, - [448] = 14, - [449] = 113, - [450] = 125, - [451] = 451, - [452] = 23, - [453] = 3, - [454] = 94, - [455] = 91, - [456] = 93, - [457] = 96, - [458] = 53, - [459] = 119, - [460] = 131, - [461] = 5, - [462] = 323, - [463] = 135, - [464] = 94, - [465] = 98, - [466] = 3, - [467] = 18, - [468] = 96, - [469] = 28, - [470] = 50, - [471] = 321, - [472] = 101, - [473] = 118, - [474] = 97, - [475] = 113, - [476] = 4, - [477] = 121, - [478] = 436, - [479] = 236, - [480] = 23, - [481] = 8, - [482] = 3, - [483] = 6, - [484] = 12, - [485] = 18, - [486] = 13, - [487] = 28, - [488] = 15, - [489] = 25, - [490] = 490, - [491] = 14, - [492] = 4, - [493] = 493, - [494] = 11, - [495] = 9, - [496] = 225, - [497] = 497, - [498] = 6, - [499] = 2, - [500] = 500, - [501] = 501, - [502] = 500, + [311] = 2, + [312] = 114, + [313] = 127, + [314] = 105, + [315] = 104, + [316] = 116, + [317] = 109, + [318] = 110, + [319] = 70, + [320] = 61, + [321] = 69, + [322] = 2, + [323] = 68, + [324] = 111, + [325] = 103, + [326] = 102, + [327] = 112, + [328] = 100, + [329] = 329, + [330] = 98, + [331] = 107, + [332] = 101, + [333] = 47, + [334] = 50, + [335] = 38, + [336] = 34, + [337] = 37, + [338] = 338, + [339] = 33, + [340] = 54, + [341] = 47, + [342] = 102, + [343] = 103, + [344] = 37, + [345] = 41, + [346] = 33, + [347] = 38, + [348] = 54, + [349] = 104, + [350] = 109, + [351] = 110, + [352] = 111, + [353] = 100, + [354] = 39, + [355] = 107, + [356] = 114, + [357] = 357, + [358] = 358, + [359] = 34, + [360] = 105, + [361] = 68, + [362] = 102, + [363] = 105, + [364] = 116, + [365] = 112, + [366] = 104, + [367] = 107, + [368] = 114, + [369] = 41, + [370] = 39, + [371] = 103, + [372] = 69, + [373] = 39, + [374] = 54, + [375] = 98, + [376] = 127, + [377] = 41, + [378] = 61, + [379] = 70, + [380] = 61, + [381] = 70, + [382] = 100, + [383] = 101, + [384] = 106, + [385] = 109, + [386] = 110, + [387] = 111, + [388] = 54, + [389] = 68, + [390] = 69, + [391] = 50, + [392] = 112, + [393] = 393, + [394] = 103, + [395] = 70, + [396] = 102, + [397] = 110, + [398] = 69, + [399] = 68, + [400] = 61, + [401] = 69, + [402] = 111, + [403] = 68, + [404] = 109, + [405] = 116, + [406] = 127, + [407] = 114, + [408] = 4, + [409] = 105, + [410] = 106, + [411] = 357, + [412] = 104, + [413] = 101, + [414] = 105, + [415] = 104, + [416] = 54, + [417] = 103, + [418] = 102, + [419] = 98, + [420] = 100, + [421] = 50, + [422] = 107, + [423] = 98, + [424] = 5, + [425] = 50, + [426] = 101, + [427] = 61, + [428] = 70, + [429] = 114, + [430] = 106, + [431] = 111, + [432] = 112, + [433] = 107, + [434] = 100, + [435] = 109, + [436] = 116, + [437] = 3, + [438] = 58, + [439] = 358, + [440] = 127, + [441] = 110, + [442] = 102, + [443] = 101, + [444] = 16, + [445] = 9, + [446] = 446, + [447] = 98, + [448] = 114, + [449] = 12, + [450] = 11, + [451] = 127, + [452] = 22, + [453] = 109, + [454] = 106, + [455] = 109, + [456] = 106, + [457] = 107, + [458] = 13, + [459] = 110, + [460] = 460, + [461] = 25, + [462] = 114, + [463] = 105, + [464] = 116, + [465] = 104, + [466] = 116, + [467] = 105, + [468] = 357, + [469] = 107, + [470] = 104, + [471] = 103, + [472] = 98, + [473] = 14, + [474] = 112, + [475] = 54, + [476] = 102, + [477] = 54, + [478] = 110, + [479] = 103, + [480] = 112, + [481] = 111, + [482] = 5, + [483] = 23, + [484] = 58, + [485] = 460, + [486] = 100, + [487] = 4, + [488] = 127, + [489] = 3, + [490] = 3, + [491] = 358, + [492] = 101, + [493] = 10, + [494] = 4, + [495] = 111, + [496] = 100, + [497] = 10, + [498] = 22, + [499] = 13, + [500] = 3, + [501] = 8, + [502] = 11, [503] = 503, - [504] = 500, - [505] = 505, - [506] = 505, - [507] = 503, - [508] = 505, - [509] = 500, - [510] = 503, - [511] = 500, - [512] = 500, - [513] = 505, - [514] = 503, - [515] = 500, - [516] = 505, - [517] = 503, - [518] = 505, + [504] = 23, + [505] = 6, + [506] = 9, + [507] = 12, + [508] = 4, + [509] = 16, + [510] = 260, + [511] = 511, + [512] = 25, + [513] = 14, + [514] = 8, + [515] = 254, + [516] = 516, + [517] = 19, + [518] = 6, [519] = 519, - [520] = 500, - [521] = 9, - [522] = 503, - [523] = 32, - [524] = 35, - [525] = 41, - [526] = 500, - [527] = 503, - [528] = 505, - [529] = 503, - [530] = 503, - [531] = 503, - [532] = 505, - [533] = 503, - [534] = 505, - [535] = 505, - [536] = 503, - [537] = 503, - [538] = 2, - [539] = 539, - [540] = 505, - [541] = 500, - [542] = 225, - [543] = 503, - [544] = 33, - [545] = 503, - [546] = 503, - [547] = 503, - [548] = 500, + [520] = 47, + [521] = 519, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 519, + [526] = 522, + [527] = 522, + [528] = 519, + [529] = 519, + [530] = 522, + [531] = 531, + [532] = 519, + [533] = 531, + [534] = 38, + [535] = 519, + [536] = 531, + [537] = 33, + [538] = 519, + [539] = 522, + [540] = 519, + [541] = 34, + [542] = 37, + [543] = 543, + [544] = 519, + [545] = 522, + [546] = 531, + [547] = 519, + [548] = 522, [549] = 549, - [550] = 550, - [551] = 32, - [552] = 35, - [553] = 41, - [554] = 2, - [555] = 38, - [556] = 556, - [557] = 557, - [558] = 33, - [559] = 36, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 2, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 58, - [570] = 570, - [571] = 571, - [572] = 36, + [550] = 519, + [551] = 522, + [552] = 522, + [553] = 519, + [554] = 531, + [555] = 531, + [556] = 2, + [557] = 519, + [558] = 531, + [559] = 254, + [560] = 522, + [561] = 531, + [562] = 19, + [563] = 519, + [564] = 519, + [565] = 531, + [566] = 531, + [567] = 531, + [568] = 519, + [569] = 522, + [570] = 2, + [571] = 41, + [572] = 572, [573] = 573, - [574] = 574, - [575] = 38, - [576] = 576, - [577] = 62, - [578] = 578, - [579] = 61, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, + [574] = 33, + [575] = 575, + [576] = 47, + [577] = 577, + [578] = 37, + [579] = 579, + [580] = 34, + [581] = 39, + [582] = 38, + [583] = 2, [584] = 584, - [585] = 60, + [585] = 2, [586] = 586, [587] = 587, - [588] = 40, - [589] = 53, - [590] = 113, - [591] = 4, - [592] = 62, - [593] = 96, - [594] = 61, - [595] = 94, - [596] = 98, - [597] = 40, - [598] = 60, - [599] = 93, - [600] = 58, - [601] = 3, - [602] = 118, - [603] = 91, - [604] = 121, - [605] = 125, - [606] = 97, - [607] = 101, - [608] = 115, - [609] = 124, - [610] = 131, - [611] = 135, - [612] = 119, - [613] = 101, - [614] = 135, - [615] = 91, - [616] = 125, - [617] = 113, - [618] = 124, - [619] = 119, - [620] = 94, - [621] = 96, - [622] = 115, - [623] = 131, - [624] = 118, - [625] = 3, - [626] = 4, - [627] = 93, - [628] = 53, - [629] = 98, - [630] = 121, - [631] = 97, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 637, - [639] = 637, - [640] = 637, - [641] = 637, - [642] = 637, - [643] = 637, - [644] = 637, - [645] = 637, - [646] = 637, - [647] = 637, - [648] = 648, - [649] = 649, - [650] = 637, - [651] = 637, - [652] = 637, - [653] = 637, - [654] = 637, - [655] = 637, + [588] = 69, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 61, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 41, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 70, + [605] = 68, + [606] = 39, + [607] = 607, + [608] = 608, + [609] = 50, + [610] = 610, + [611] = 127, + [612] = 68, + [613] = 50, + [614] = 100, + [615] = 109, + [616] = 110, + [617] = 106, + [618] = 102, + [619] = 3, + [620] = 103, + [621] = 107, + [622] = 70, + [623] = 4, + [624] = 54, + [625] = 111, + [626] = 104, + [627] = 105, + [628] = 98, + [629] = 116, + [630] = 61, + [631] = 69, + [632] = 112, + [633] = 114, + [634] = 101, + [635] = 3, + [636] = 109, + [637] = 102, + [638] = 103, + [639] = 54, + [640] = 107, + [641] = 112, + [642] = 98, + [643] = 4, + [644] = 106, + [645] = 114, + [646] = 104, + [647] = 101, + [648] = 105, + [649] = 116, + [650] = 110, + [651] = 100, + [652] = 111, + [653] = 127, + [654] = 654, + [655] = 655, [656] = 656, - [657] = 656, - [658] = 656, + [657] = 657, + [658] = 658, [659] = 659, - [660] = 656, - [661] = 656, - [662] = 656, - [663] = 656, - [664] = 656, - [665] = 656, - [666] = 656, - [667] = 656, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 670, - [674] = 674, - [675] = 675, + [660] = 659, + [661] = 659, + [662] = 659, + [663] = 659, + [664] = 659, + [665] = 659, + [666] = 659, + [667] = 659, + [668] = 659, + [669] = 659, + [670] = 659, + [671] = 659, + [672] = 659, + [673] = 673, + [674] = 659, + [675] = 659, [676] = 676, - [677] = 677, + [677] = 659, [678] = 678, - [679] = 679, - [680] = 677, - [681] = 681, - [682] = 677, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 677, - [687] = 687, - [688] = 688, - [689] = 689, + [679] = 678, + [680] = 680, + [681] = 678, + [682] = 678, + [683] = 678, + [684] = 678, + [685] = 678, + [686] = 678, + [687] = 678, + [688] = 678, + [689] = 678, [690] = 690, - [691] = 677, + [691] = 691, [692] = 692, - [693] = 677, - [694] = 677, - [695] = 688, + [693] = 691, + [694] = 694, + [695] = 695, [696] = 696, - [697] = 677, - [698] = 677, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 677, - [701] = 690, - [702] = 677, - [703] = 688, - [704] = 688, - [705] = 688, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, [706] = 706, - [707] = 707, - [708] = 708, + [707] = 704, + [708] = 705, [709] = 709, - [710] = 710, + [710] = 704, [711] = 711, - [712] = 711, - [713] = 709, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 717, - [721] = 708, + [712] = 712, + [713] = 704, + [714] = 699, + [715] = 704, + [716] = 704, + [717] = 705, + [718] = 705, + [719] = 704, + [720] = 720, + [721] = 704, [722] = 722, - [723] = 723, + [723] = 704, [724] = 724, - [725] = 725, - [726] = 710, - [727] = 711, - [728] = 725, - [729] = 724, + [725] = 704, + [726] = 705, + [727] = 727, + [728] = 704, + [729] = 729, [730] = 730, [731] = 731, - [732] = 707, - [733] = 722, + [732] = 732, + [733] = 733, [734] = 734, - [735] = 714, - [736] = 708, - [737] = 717, - [738] = 710, - [739] = 708, - [740] = 722, - [741] = 741, - [742] = 742, - [743] = 722, - [744] = 708, - [745] = 717, - [746] = 717, - [747] = 714, - [748] = 724, - [749] = 725, - [750] = 734, - [751] = 714, - [752] = 707, - [753] = 731, - [754] = 734, - [755] = 724, - [756] = 707, - [757] = 725, - [758] = 731, + [735] = 735, + [736] = 729, + [737] = 737, + [738] = 732, + [739] = 730, + [740] = 730, + [741] = 732, + [742] = 735, + [743] = 743, + [744] = 733, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 746, + [749] = 747, + [750] = 735, + [751] = 745, + [752] = 732, + [753] = 730, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 733, [759] = 759, [760] = 760, - [761] = 731, - [762] = 707, - [763] = 734, - [764] = 714, - [765] = 765, - [766] = 710, - [767] = 731, - [768] = 707, - [769] = 708, - [770] = 722, - [771] = 724, - [772] = 725, - [773] = 710, - [774] = 734, - [775] = 775, - [776] = 714, - [777] = 717, + [761] = 759, + [762] = 747, + [763] = 759, + [764] = 759, + [765] = 760, + [766] = 766, + [767] = 729, + [768] = 746, + [769] = 760, + [770] = 759, + [771] = 730, + [772] = 729, + [773] = 773, + [774] = 774, + [775] = 760, + [776] = 745, + [777] = 729, [778] = 778, - [779] = 731, - [780] = 707, - [781] = 709, - [782] = 710, - [783] = 734, - [784] = 784, - [785] = 714, - [786] = 786, - [787] = 787, - [788] = 717, - [789] = 708, - [790] = 722, - [791] = 724, - [792] = 708, - [793] = 725, - [794] = 725, - [795] = 724, - [796] = 722, - [797] = 797, - [798] = 710, - [799] = 722, - [800] = 800, - [801] = 717, - [802] = 714, - [803] = 803, - [804] = 734, - [805] = 724, - [806] = 707, - [807] = 731, - [808] = 808, - [809] = 731, - [810] = 707, + [779] = 779, + [780] = 747, + [781] = 781, + [782] = 782, + [783] = 733, + [784] = 729, + [785] = 734, + [786] = 735, + [787] = 760, + [788] = 759, + [789] = 755, + [790] = 790, + [791] = 755, + [792] = 792, + [793] = 732, + [794] = 729, + [795] = 745, + [796] = 760, + [797] = 730, + [798] = 735, + [799] = 730, + [800] = 759, + [801] = 729, + [802] = 760, + [803] = 759, + [804] = 745, + [805] = 732, + [806] = 735, + [807] = 729, + [808] = 747, + [809] = 734, + [810] = 733, [811] = 811, - [812] = 734, - [813] = 714, - [814] = 717, - [815] = 815, - [816] = 708, - [817] = 722, - [818] = 725, - [819] = 710, - [820] = 820, - [821] = 800, - [822] = 822, - [823] = 731, - [824] = 824, - [825] = 707, - [826] = 731, - [827] = 734, - [828] = 828, - [829] = 714, - [830] = 717, - [831] = 724, - [832] = 725, - [833] = 708, - [834] = 731, - [835] = 722, - [836] = 707, - [837] = 724, - [838] = 725, - [839] = 710, - [840] = 734, - [841] = 710, - [842] = 725, - [843] = 724, - [844] = 710, - [845] = 845, - [846] = 722, - [847] = 708, - [848] = 848, - [849] = 717, - [850] = 714, - [851] = 734, - [852] = 852, - [853] = 853, + [812] = 760, + [813] = 730, + [814] = 733, + [815] = 746, + [816] = 745, + [817] = 730, + [818] = 732, + [819] = 732, + [820] = 733, + [821] = 821, + [822] = 745, + [823] = 732, + [824] = 746, + [825] = 733, + [826] = 735, + [827] = 827, + [828] = 735, + [829] = 747, + [830] = 746, + [831] = 747, + [832] = 747, + [833] = 735, + [834] = 746, + [835] = 745, + [836] = 745, + [837] = 759, + [838] = 733, + [839] = 745, + [840] = 733, + [841] = 746, + [842] = 766, + [843] = 843, + [844] = 747, + [845] = 732, + [846] = 729, + [847] = 730, + [848] = 735, + [849] = 735, + [850] = 850, + [851] = 747, + [852] = 732, + [853] = 729, [854] = 854, - [855] = 855, - [856] = 856, + [855] = 759, + [856] = 760, [857] = 857, [858] = 858, [859] = 859, - [860] = 852, + [860] = 746, [861] = 861, - [862] = 862, - [863] = 863, + [862] = 760, + [863] = 746, [864] = 864, - [865] = 861, - [866] = 853, - [867] = 867, + [865] = 760, + [866] = 759, + [867] = 733, [868] = 868, - [869] = 869, - [870] = 863, - [871] = 856, - [872] = 872, - [873] = 2, - [874] = 855, + [869] = 745, + [870] = 746, + [871] = 871, + [872] = 730, + [873] = 747, + [874] = 874, [875] = 875, [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 852, - [881] = 856, - [882] = 882, - [883] = 113, - [884] = 135, + [880] = 880, + [881] = 881, + [882] = 2, + [883] = 883, + [884] = 875, [885] = 885, - [886] = 854, - [887] = 131, - [888] = 855, - [889] = 889, - [890] = 853, + [886] = 886, + [887] = 887, + [888] = 874, + [889] = 877, + [890] = 876, [891] = 891, - [892] = 858, + [892] = 891, [893] = 893, - [894] = 869, + [894] = 886, [895] = 895, - [896] = 861, - [897] = 897, - [898] = 872, - [899] = 862, - [900] = 864, - [901] = 863, - [902] = 861, - [903] = 863, - [904] = 904, - [905] = 2, - [906] = 867, - [907] = 868, - [908] = 858, - [909] = 909, - [910] = 135, - [911] = 862, - [912] = 863, - [913] = 864, - [914] = 868, - [915] = 863, - [916] = 861, - [917] = 917, + [896] = 896, + [897] = 875, + [898] = 898, + [899] = 874, + [900] = 112, + [901] = 901, + [902] = 877, + [903] = 903, + [904] = 116, + [905] = 905, + [906] = 881, + [907] = 907, + [908] = 908, + [909] = 127, + [910] = 910, + [911] = 911, + [912] = 878, + [913] = 876, + [914] = 914, + [915] = 887, + [916] = 883, + [917] = 2, [918] = 918, - [919] = 2, - [920] = 920, - [921] = 113, - [922] = 922, - [923] = 879, - [924] = 131, - [925] = 869, - [926] = 872, - [927] = 927, - [928] = 928, - [929] = 861, - [930] = 867, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 897, + [919] = 896, + [920] = 891, + [921] = 895, + [922] = 886, + [923] = 885, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 881, + [928] = 893, + [929] = 886, + [930] = 930, + [931] = 891, + [932] = 2, + [933] = 112, + [934] = 934, [935] = 893, - [936] = 113, - [937] = 135, - [938] = 904, - [939] = 879, - [940] = 909, - [941] = 895, - [942] = 131, + [936] = 936, + [937] = 937, + [938] = 883, + [939] = 939, + [940] = 940, + [941] = 891, + [942] = 887, [943] = 943, - [944] = 909, - [945] = 904, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 897, - [952] = 952, - [953] = 895, - [954] = 858, - [955] = 893, - [956] = 864, - [957] = 861, - [958] = 861, - [959] = 863, - [960] = 960, - [961] = 961, - [962] = 858, - [963] = 963, - [964] = 964, - [965] = 2, - [966] = 6, - [967] = 868, - [968] = 863, - [969] = 879, - [970] = 948, + [944] = 885, + [945] = 945, + [946] = 895, + [947] = 116, + [948] = 886, + [949] = 896, + [950] = 127, + [951] = 908, + [952] = 891, + [953] = 886, + [954] = 954, + [955] = 955, + [956] = 918, + [957] = 926, + [958] = 908, + [959] = 116, + [960] = 127, + [961] = 925, + [962] = 112, + [963] = 930, + [964] = 924, + [965] = 930, + [966] = 925, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 924, [971] = 971, - [972] = 972, - [973] = 952, + [972] = 926, + [973] = 973, [974] = 974, [975] = 975, - [976] = 868, - [977] = 977, - [978] = 978, - [979] = 947, - [980] = 980, + [976] = 881, + [977] = 918, + [978] = 8, + [979] = 883, + [980] = 891, [981] = 981, - [982] = 982, + [982] = 891, [983] = 983, [984] = 984, - [985] = 943, - [986] = 986, - [987] = 9, - [988] = 988, - [989] = 863, - [990] = 990, - [991] = 864, - [992] = 113, + [985] = 881, + [986] = 6, + [987] = 987, + [988] = 886, + [989] = 886, + [990] = 896, + [991] = 2, + [992] = 992, [993] = 993, - [994] = 863, - [995] = 995, - [996] = 996, - [997] = 135, - [998] = 946, - [999] = 949, - [1000] = 2, - [1001] = 861, - [1002] = 861, - [1003] = 131, + [994] = 969, + [995] = 886, + [996] = 886, + [997] = 896, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 1006, - [1007] = 1007, + [1006] = 883, + [1007] = 971, [1008] = 1008, - [1009] = 35, - [1010] = 33, - [1011] = 879, - [1012] = 943, - [1013] = 2, - [1014] = 1014, - [1015] = 1015, - [1016] = 946, - [1017] = 947, - [1018] = 131, - [1019] = 1019, - [1020] = 949, - [1021] = 1021, + [1009] = 974, + [1010] = 127, + [1011] = 116, + [1012] = 908, + [1013] = 1013, + [1014] = 112, + [1015] = 973, + [1016] = 19, + [1017] = 1017, + [1018] = 1018, + [1019] = 891, + [1020] = 891, + [1021] = 2, [1022] = 1022, [1023] = 1023, - [1024] = 952, - [1025] = 948, - [1026] = 1026, - [1027] = 113, - [1028] = 135, - [1029] = 32, - [1030] = 1030, + [1024] = 968, + [1025] = 1025, + [1026] = 975, + [1027] = 1027, + [1028] = 908, + [1029] = 973, + [1030] = 971, [1031] = 1031, [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 36, - [1036] = 1036, - [1037] = 1037, + [1033] = 116, + [1034] = 112, + [1035] = 1035, + [1036] = 968, + [1037] = 127, [1038] = 1038, - [1039] = 38, - [1040] = 983, - [1041] = 1041, - [1042] = 995, + [1039] = 974, + [1040] = 969, + [1041] = 33, + [1042] = 1042, [1043] = 1043, - [1044] = 975, + [1044] = 2, [1045] = 1045, - [1046] = 990, - [1047] = 993, - [1048] = 1048, - [1049] = 972, - [1050] = 1050, - [1051] = 1051, - [1052] = 858, + [1046] = 37, + [1047] = 1047, + [1048] = 38, + [1049] = 1049, + [1050] = 34, + [1051] = 975, + [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 39, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 982, - [1059] = 981, + [1058] = 1000, + [1059] = 881, [1060] = 1060, - [1061] = 1061, - [1062] = 864, - [1063] = 982, - [1064] = 993, - [1065] = 863, - [1066] = 990, + [1061] = 1022, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, [1067] = 1067, - [1068] = 1068, - [1069] = 1069, + [1068] = 992, + [1069] = 1008, [1070] = 1070, - [1071] = 863, + [1071] = 1001, [1072] = 1072, [1073] = 1073, - [1074] = 975, + [1074] = 1023, [1075] = 1075, - [1076] = 40, + [1076] = 41, [1077] = 1077, - [1078] = 1007, - [1079] = 972, - [1080] = 1080, - [1081] = 981, - [1082] = 2, - [1083] = 995, + [1078] = 1005, + [1079] = 1079, + [1080] = 1017, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 861, - [1087] = 868, + [1086] = 1086, + [1087] = 1023, [1088] = 1088, - [1089] = 861, - [1090] = 983, - [1091] = 131, + [1089] = 1089, + [1090] = 1090, + [1091] = 886, [1092] = 1092, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, + [1094] = 896, + [1095] = 886, [1096] = 1096, - [1097] = 1033, - [1098] = 1041, - [1099] = 1099, + [1097] = 992, + [1098] = 1000, + [1099] = 50, [1100] = 1100, [1101] = 1101, - [1102] = 879, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 135, - [1108] = 1007, - [1109] = 113, - [1110] = 1038, - [1111] = 1031, + [1102] = 883, + [1103] = 2, + [1104] = 1008, + [1105] = 891, + [1106] = 1017, + [1107] = 1107, + [1108] = 1108, + [1109] = 1022, + [1110] = 891, + [1111] = 1047, [1112] = 1112, [1113] = 1113, - [1114] = 1057, - [1115] = 1115, - [1116] = 1116, + [1114] = 1114, + [1115] = 1001, + [1116] = 1005, [1117] = 1117, - [1118] = 1045, + [1118] = 1056, [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1051, - [1123] = 1050, - [1124] = 1124, - [1125] = 1125, + [1120] = 1057, + [1121] = 1047, + [1122] = 127, + [1123] = 116, + [1124] = 1083, + [1125] = 54, [1126] = 1126, - [1127] = 1127, - [1128] = 53, + [1127] = 112, + [1128] = 1128, [1129] = 1129, - [1130] = 1056, - [1131] = 1131, - [1132] = 1030, - [1133] = 1054, + [1130] = 1130, + [1131] = 1066, + [1132] = 1132, + [1133] = 908, [1134] = 1134, - [1135] = 1031, - [1136] = 1054, + [1135] = 1135, + [1136] = 1067, [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1057, - [1142] = 1056, + [1138] = 1060, + [1139] = 1075, + [1140] = 1064, + [1141] = 1141, + [1142] = 1142, [1143] = 1143, - [1144] = 1144, - [1145] = 1030, + [1144] = 1082, + [1145] = 1145, [1146] = 1146, - [1147] = 1050, + [1147] = 1147, [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1051, - [1152] = 1045, + [1151] = 1072, + [1152] = 1152, [1153] = 1153, - [1154] = 1041, - [1155] = 1033, + [1154] = 1154, + [1155] = 1155, [1156] = 1156, - [1157] = 1038, + [1157] = 1070, [1158] = 1158, - [1159] = 1159, + [1159] = 1060, [1160] = 1160, - [1161] = 1117, - [1162] = 1162, + [1161] = 1161, + [1162] = 1072, [1163] = 1163, - [1164] = 1164, + [1164] = 1056, [1165] = 1165, [1166] = 1166, - [1167] = 1167, - [1168] = 1168, + [1167] = 1083, + [1168] = 1064, [1169] = 1169, [1170] = 1170, - [1171] = 1092, - [1172] = 1121, - [1173] = 1112, - [1174] = 1174, - [1175] = 1101, - [1176] = 1127, + [1171] = 1171, + [1172] = 1067, + [1173] = 1173, + [1174] = 1075, + [1175] = 1175, + [1176] = 1176, [1177] = 1177, - [1178] = 1178, + [1178] = 1066, [1179] = 1179, - [1180] = 1180, - [1181] = 1116, - [1182] = 1103, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1126, + [1180] = 1070, + [1181] = 1181, + [1182] = 1182, + [1183] = 1057, + [1184] = 1082, + [1185] = 1132, + [1186] = 1135, [1187] = 1187, [1188] = 1188, [1189] = 1189, [1190] = 1190, [1191] = 1191, - [1192] = 2, - [1193] = 1193, + [1192] = 1192, + [1193] = 1154, [1194] = 1194, [1195] = 1195, [1196] = 1196, - [1197] = 1197, - [1198] = 1197, + [1197] = 1128, + [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1190, + [1201] = 1129, [1202] = 1202, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1194, - [1207] = 1116, - [1208] = 1208, + [1206] = 1134, + [1207] = 1137, + [1208] = 1147, [1209] = 1209, - [1210] = 1210, + [1210] = 1150, [1211] = 1211, - [1212] = 1127, + [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1126, - [1216] = 1101, - [1217] = 1121, - [1218] = 1199, + [1215] = 1213, + [1216] = 1216, + [1217] = 1217, + [1218] = 1132, [1219] = 1219, - [1220] = 1199, - [1221] = 1117, - [1222] = 1199, - [1223] = 1197, - [1224] = 1112, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, [1225] = 1225, - [1226] = 1197, + [1226] = 1150, [1227] = 1227, - [1228] = 1103, - [1229] = 1229, - [1230] = 1194, + [1228] = 1228, + [1229] = 1213, + [1230] = 1128, [1231] = 1231, [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1197, + [1235] = 1235, [1236] = 1236, - [1237] = 1237, - [1238] = 1199, - [1239] = 1092, + [1237] = 1137, + [1238] = 1238, + [1239] = 1239, [1240] = 1240, - [1241] = 1241, + [1241] = 1236, [1242] = 1242, - [1243] = 1190, - [1244] = 1199, - [1245] = 1245, - [1246] = 1246, + [1243] = 1243, + [1244] = 1135, + [1245] = 1134, + [1246] = 1236, [1247] = 1247, - [1248] = 1248, - [1249] = 1249, + [1248] = 1224, + [1249] = 1232, [1250] = 1250, [1251] = 1251, - [1252] = 1252, - [1253] = 1253, + [1252] = 1129, + [1253] = 1236, [1254] = 1254, - [1255] = 1255, + [1255] = 1213, [1256] = 1256, [1257] = 1257, - [1258] = 2, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, + [1258] = 1258, + [1259] = 1213, + [1260] = 1224, + [1261] = 1236, + [1262] = 1147, + [1263] = 2, [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, + [1265] = 2, + [1266] = 1154, + [1267] = 1213, [1268] = 1268, [1269] = 1269, - [1270] = 1251, - [1271] = 1050, + [1270] = 1232, + [1271] = 1271, [1272] = 1272, [1273] = 1273, [1274] = 1274, @@ -4083,7 +4097,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1276] = 1276, [1277] = 1277, [1278] = 1278, - [1279] = 982, + [1279] = 1279, [1280] = 1280, [1281] = 1281, [1282] = 1282, @@ -4094,26 +4108,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 1281, + [1290] = 1290, [1291] = 1291, - [1292] = 1292, + [1292] = 1281, [1293] = 1293, [1294] = 1294, [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1298, + [1298] = 1060, [1299] = 1299, [1300] = 1300, [1301] = 1301, - [1302] = 1281, + [1302] = 1302, [1303] = 1303, - [1304] = 1077, + [1304] = 1304, [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1281, + [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, @@ -4123,12 +4137,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 1319, + [1319] = 1306, [1320] = 1320, [1321] = 1321, - [1322] = 1281, + [1322] = 1322, [1323] = 1323, - [1324] = 1050, + [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, @@ -4138,72 +4152,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 1334, - [1335] = 1335, + [1334] = 992, + [1335] = 1306, [1336] = 1336, [1337] = 1337, [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1281, + [1341] = 1328, [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1344, + [1345] = 1345, [1346] = 1346, - [1347] = 1347, + [1347] = 1325, [1348] = 1348, [1349] = 1349, - [1350] = 1344, - [1351] = 1007, + [1350] = 1096, + [1351] = 1351, [1352] = 1352, - [1353] = 1353, - [1354] = 1344, - [1355] = 1355, + [1353] = 1306, + [1354] = 1354, + [1355] = 1306, [1356] = 1356, - [1357] = 1357, + [1357] = 1306, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, + [1361] = 1060, + [1362] = 1328, [1363] = 1363, - [1364] = 1344, + [1364] = 1364, [1365] = 1365, - [1366] = 1344, - [1367] = 982, + [1366] = 1306, + [1367] = 1367, [1368] = 1368, - [1369] = 1369, - [1370] = 1370, + [1369] = 1328, + [1370] = 1306, [1371] = 1371, - [1372] = 1372, + [1372] = 1328, [1373] = 1373, - [1374] = 1344, - [1375] = 1375, - [1376] = 1376, + [1374] = 1374, + [1375] = 1306, + [1376] = 1306, [1377] = 1377, [1378] = 1378, [1379] = 1379, [1380] = 1380, [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1382] = 1306, + [1383] = 1328, [1384] = 1384, - [1385] = 1344, + [1385] = 1385, [1386] = 1386, - [1387] = 1344, + [1387] = 1387, [1388] = 1388, [1389] = 1389, [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1344, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1398, - [1399] = 1391, + [1398] = 1047, + [1399] = 1399, [1400] = 1400, [1401] = 1401, [1402] = 1402, @@ -4223,140 +4237,140 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1416] = 1416, [1417] = 1417, [1418] = 1418, - [1419] = 1410, + [1419] = 1419, [1420] = 1420, [1421] = 1421, - [1422] = 1344, + [1422] = 1422, [1423] = 1423, [1424] = 1424, [1425] = 1425, - [1426] = 1426, - [1427] = 1300, + [1426] = 992, + [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 1431, + [1431] = 1430, [1432] = 1432, [1433] = 1433, - [1434] = 917, - [1435] = 1291, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, - [1437] = 1286, - [1438] = 964, + [1437] = 1437, + [1438] = 1438, [1439] = 1439, - [1440] = 963, + [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1426, + [1444] = 1444, [1445] = 1445, [1446] = 1446, - [1447] = 1426, - [1448] = 1426, - [1449] = 1446, - [1450] = 1426, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 936, [1451] = 1451, - [1452] = 1446, + [1452] = 1452, [1453] = 1453, - [1454] = 1299, + [1454] = 1454, [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1426, + [1458] = 1458, [1459] = 1459, - [1460] = 1446, - [1461] = 1446, - [1462] = 1007, - [1463] = 1463, - [1464] = 1426, - [1465] = 1446, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, + [1460] = 1460, + [1461] = 1365, + [1462] = 1462, + [1463] = 1460, + [1464] = 1462, + [1465] = 1460, + [1466] = 1462, + [1467] = 1460, + [1468] = 981, [1469] = 1469, - [1470] = 1470, - [1471] = 1426, - [1472] = 1472, - [1473] = 1473, - [1474] = 1474, - [1475] = 1446, - [1476] = 1476, - [1477] = 1426, - [1478] = 1478, + [1470] = 984, + [1471] = 983, + [1472] = 1462, + [1473] = 1460, + [1474] = 987, + [1475] = 1475, + [1476] = 1462, + [1477] = 1460, + [1478] = 1462, [1479] = 1479, - [1480] = 1480, - [1481] = 1362, - [1482] = 1426, - [1483] = 1483, + [1480] = 1460, + [1481] = 1481, + [1482] = 1482, + [1483] = 1462, [1484] = 1484, - [1485] = 960, - [1486] = 1486, - [1487] = 1446, - [1488] = 1446, - [1489] = 1489, + [1485] = 1460, + [1486] = 1462, + [1487] = 1460, + [1488] = 1488, + [1489] = 1462, [1490] = 1490, - [1491] = 1491, - [1492] = 1282, - [1493] = 1493, - [1494] = 1426, - [1495] = 1495, - [1496] = 961, - [1497] = 1446, + [1491] = 1460, + [1492] = 1492, + [1493] = 1462, + [1494] = 1462, + [1495] = 1352, + [1496] = 1496, + [1497] = 1460, [1498] = 1498, - [1499] = 1499, + [1499] = 1462, [1500] = 1500, - [1501] = 1501, - [1502] = 1426, - [1503] = 1503, - [1504] = 1504, - [1505] = 1446, - [1506] = 1506, - [1507] = 1507, + [1501] = 1460, + [1502] = 1502, + [1503] = 1462, + [1504] = 1460, + [1505] = 1308, + [1506] = 1462, + [1507] = 1460, [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1446, - [1512] = 1512, - [1513] = 1446, + [1509] = 1462, + [1510] = 1460, + [1511] = 1511, + [1512] = 1047, + [1513] = 1513, [1514] = 1514, - [1515] = 1515, - [1516] = 1426, - [1517] = 1446, - [1518] = 1426, - [1519] = 1327, + [1515] = 1462, + [1516] = 1460, + [1517] = 1517, + [1518] = 1518, + [1519] = 1343, [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 1293, - [1525] = 1423, + [1524] = 1377, + [1525] = 1525, [1526] = 1526, - [1527] = 1426, + [1527] = 1527, [1528] = 1528, - [1529] = 1426, - [1530] = 1321, - [1531] = 1531, + [1529] = 1529, + [1530] = 1530, + [1531] = 1321, [1532] = 1532, - [1533] = 1533, - [1534] = 1446, - [1535] = 1446, + [1533] = 1449, + [1534] = 1534, + [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1288, + [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, - [1544] = 1544, - [1545] = 1328, - [1546] = 1546, + [1544] = 1313, + [1545] = 1545, + [1546] = 1448, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1552, + [1552] = 1309, [1553] = 1553, [1554] = 1554, [1555] = 1555, @@ -4364,7 +4378,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, + [1560] = 1312, [1561] = 1561, [1562] = 1562, [1563] = 1563, @@ -4372,192 +4386,192 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1566, + [1568] = 1568, [1569] = 1569, [1570] = 1570, - [1571] = 1571, + [1571] = 1307, [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 1566, + [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1560, + [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1560, + [1582] = 1582, [1583] = 1583, - [1584] = 1584, + [1584] = 1308, [1585] = 1585, - [1586] = 1586, - [1587] = 1560, + [1586] = 1313, + [1587] = 1309, [1588] = 1588, - [1589] = 1560, - [1590] = 1590, - [1591] = 1560, + [1589] = 1321, + [1590] = 1307, + [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, - [1595] = 1560, + [1595] = 1312, [1596] = 1596, [1597] = 1597, - [1598] = 1560, + [1598] = 1598, [1599] = 1599, - [1600] = 1565, - [1601] = 1557, + [1600] = 1600, + [1601] = 1601, [1602] = 1602, - [1603] = 1553, - [1604] = 1604, + [1603] = 1343, + [1604] = 936, [1605] = 1605, - [1606] = 1560, - [1607] = 1565, - [1608] = 1557, - [1609] = 1609, + [1606] = 1598, + [1607] = 1607, + [1608] = 1607, + [1609] = 1352, [1610] = 1610, [1611] = 1611, - [1612] = 1553, - [1613] = 1613, - [1614] = 1614, + [1612] = 1607, + [1613] = 1365, + [1614] = 1607, [1615] = 1615, - [1616] = 1560, - [1617] = 1565, - [1618] = 1618, - [1619] = 1557, - [1620] = 1553, + [1616] = 1616, + [1617] = 1607, + [1618] = 1607, + [1619] = 1602, + [1620] = 1607, [1621] = 1621, [1622] = 1622, [1623] = 1623, - [1624] = 1624, + [1624] = 1577, [1625] = 1625, - [1626] = 1560, - [1627] = 1565, - [1628] = 1628, - [1629] = 1557, + [1626] = 1626, + [1627] = 1607, + [1628] = 1621, + [1629] = 1622, [1630] = 1630, - [1631] = 1631, - [1632] = 1553, - [1633] = 1633, - [1634] = 1634, - [1635] = 1560, - [1636] = 1565, - [1637] = 1557, + [1631] = 1577, + [1632] = 1632, + [1633] = 1607, + [1634] = 1621, + [1635] = 1622, + [1636] = 1636, + [1637] = 1577, [1638] = 1638, - [1639] = 1553, + [1639] = 1639, [1640] = 1640, [1641] = 1641, [1642] = 1642, - [1643] = 1643, - [1644] = 1560, - [1645] = 1565, - [1646] = 1557, + [1643] = 1607, + [1644] = 1621, + [1645] = 1645, + [1646] = 1622, [1647] = 1647, - [1648] = 1648, - [1649] = 1553, + [1648] = 1577, + [1649] = 1649, [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1653, - [1654] = 1560, - [1655] = 1655, - [1656] = 1565, + [1653] = 1607, + [1654] = 1654, + [1655] = 1621, + [1656] = 1622, [1657] = 1657, - [1658] = 1557, - [1659] = 1553, + [1658] = 1658, + [1659] = 1577, [1660] = 1660, - [1661] = 1661, - [1662] = 1662, + [1661] = 1607, + [1662] = 1621, [1663] = 1663, - [1664] = 1560, - [1665] = 1565, - [1666] = 1557, + [1664] = 1622, + [1665] = 1665, + [1666] = 1577, [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, - [1671] = 1560, - [1672] = 1565, - [1673] = 1557, - [1674] = 1553, - [1675] = 1503, - [1676] = 1599, - [1677] = 1560, - [1678] = 1565, - [1679] = 1557, + [1671] = 1607, + [1672] = 1672, + [1673] = 1621, + [1674] = 1622, + [1675] = 1577, + [1676] = 1607, + [1677] = 1677, + [1678] = 1678, + [1679] = 1621, [1680] = 1680, - [1681] = 1681, + [1681] = 1622, [1682] = 1682, - [1683] = 1553, + [1683] = 1683, [1684] = 1684, - [1685] = 1685, + [1685] = 1577, [1686] = 1686, [1687] = 1687, [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1692, + [1689] = 1607, + [1690] = 1621, + [1691] = 1622, + [1692] = 1577, [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1696, + [1696] = 1549, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, + [1698] = 1607, + [1699] = 1621, + [1700] = 1622, [1701] = 1701, - [1702] = 1702, + [1702] = 1577, [1703] = 1703, [1704] = 1704, [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 1633, + [1708] = 1708, [1709] = 1709, [1710] = 1710, - [1711] = 1293, - [1712] = 1291, + [1711] = 1711, + [1712] = 1712, [1713] = 1713, - [1714] = 1288, + [1714] = 1377, [1715] = 1715, - [1716] = 1286, + [1716] = 1716, [1717] = 1717, [1718] = 1718, - [1719] = 1282, + [1719] = 1719, [1720] = 1720, - [1721] = 1553, + [1721] = 1721, [1722] = 1722, [1723] = 1723, - [1724] = 1299, + [1724] = 1724, [1725] = 1725, [1726] = 1726, [1727] = 1727, [1728] = 1728, [1729] = 1729, - [1730] = 1328, + [1730] = 1730, [1731] = 1731, [1732] = 1732, [1733] = 1733, [1734] = 1734, - [1735] = 1321, + [1735] = 1735, [1736] = 1736, [1737] = 1737, [1738] = 1738, [1739] = 1739, [1740] = 1740, - [1741] = 1300, + [1741] = 1598, [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1747, - [1748] = 917, - [1749] = 1749, + [1747] = 1622, + [1748] = 1621, + [1749] = 1607, [1750] = 1750, [1751] = 1751, [1752] = 1752, - [1753] = 1327, + [1753] = 1753, [1754] = 1754, [1755] = 1755, [1756] = 1756, @@ -4571,7 +4585,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1764] = 1764, [1765] = 1765, [1766] = 1766, - [1767] = 1767, + [1767] = 1697, [1768] = 1768, [1769] = 1769, [1770] = 1770, @@ -4587,7 +4601,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1780] = 1780, [1781] = 1781, [1782] = 1782, - [1783] = 1766, + [1783] = 1783, [1784] = 1784, [1785] = 1785, [1786] = 1786, @@ -4597,7 +4611,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1790] = 1790, [1791] = 1791, [1792] = 1792, - [1793] = 2, + [1793] = 1793, [1794] = 1794, [1795] = 1795, [1796] = 1796, @@ -4610,17 +4624,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1803] = 1803, [1804] = 1804, [1805] = 1805, - [1806] = 1806, + [1806] = 2, [1807] = 1807, [1808] = 1808, [1809] = 1809, - [1810] = 1810, + [1810] = 1782, [1811] = 1811, [1812] = 1812, [1813] = 1813, - [1814] = 1766, + [1814] = 1814, [1815] = 1815, - [1816] = 1758, + [1816] = 1816, [1817] = 1817, [1818] = 1818, [1819] = 1819, @@ -4634,164 +4648,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1827] = 1827, [1828] = 1828, [1829] = 1829, - [1830] = 1766, - [1831] = 1819, + [1830] = 1830, + [1831] = 1831, [1832] = 1832, [1833] = 1833, [1834] = 1834, [1835] = 1835, - [1836] = 1819, - [1837] = 1772, + [1836] = 1836, + [1837] = 1837, [1838] = 1838, [1839] = 1839, [1840] = 1840, - [1841] = 1766, + [1841] = 1841, [1842] = 1842, - [1843] = 1843, - [1844] = 1844, + [1843] = 1833, + [1844] = 955, [1845] = 1845, [1846] = 1846, - [1847] = 1847, + [1847] = 1782, [1848] = 1848, - [1849] = 933, + [1849] = 1781, [1850] = 1850, [1851] = 1851, - [1852] = 1819, + [1852] = 1782, [1853] = 1853, - [1854] = 1766, - [1855] = 1766, + [1854] = 1854, + [1855] = 1781, [1856] = 1856, - [1857] = 1772, + [1857] = 1845, [1858] = 1858, - [1859] = 1859, - [1860] = 1860, + [1859] = 1782, + [1860] = 1782, [1861] = 1861, [1862] = 1862, - [1863] = 1766, + [1863] = 1863, [1864] = 1864, [1865] = 1865, - [1866] = 1866, + [1866] = 1819, [1867] = 1867, [1868] = 1868, [1869] = 1869, - [1870] = 1870, + [1870] = 1781, [1871] = 1871, [1872] = 1872, [1873] = 1873, - [1874] = 1846, - [1875] = 1819, - [1876] = 1772, + [1874] = 1874, + [1875] = 1875, + [1876] = 1845, [1877] = 1877, - [1878] = 1766, - [1879] = 1869, + [1878] = 1878, + [1879] = 1879, [1880] = 1880, - [1881] = 1846, + [1881] = 1881, [1882] = 1882, - [1883] = 1819, + [1883] = 1883, [1884] = 1884, - [1885] = 1772, + [1885] = 1885, [1886] = 1886, - [1887] = 1887, + [1887] = 1819, [1888] = 1888, - [1889] = 1889, + [1889] = 1781, [1890] = 1890, [1891] = 1891, - [1892] = 1846, + [1892] = 1845, [1893] = 1893, [1894] = 1894, [1895] = 1895, - [1896] = 1819, - [1897] = 1772, + [1896] = 1896, + [1897] = 1897, [1898] = 1898, - [1899] = 1871, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, + [1899] = 1899, + [1900] = 1850, + [1901] = 1819, + [1902] = 1781, [1903] = 1903, [1904] = 1904, - [1905] = 1905, + [1905] = 1845, [1906] = 1906, [1907] = 1907, [1908] = 1908, - [1909] = 1846, - [1910] = 1846, + [1909] = 1909, + [1910] = 1910, [1911] = 1911, - [1912] = 1819, - [1913] = 1772, - [1914] = 1914, + [1912] = 1912, + [1913] = 1913, + [1914] = 1819, [1915] = 1915, [1916] = 1916, - [1917] = 1917, - [1918] = 1918, + [1917] = 1782, + [1918] = 1781, [1919] = 1919, - [1920] = 1920, - [1921] = 1921, + [1920] = 1845, + [1921] = 1782, [1922] = 1922, - [1923] = 1923, + [1923] = 1848, [1924] = 1924, [1925] = 1925, - [1926] = 1766, + [1926] = 1926, [1927] = 1927, - [1928] = 1846, - [1929] = 1846, - [1930] = 1871, - [1931] = 1819, - [1932] = 1932, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 1819, [1933] = 1933, - [1934] = 1772, - [1935] = 1935, + [1934] = 1781, + [1935] = 1845, [1936] = 1936, [1937] = 1937, - [1938] = 1938, + [1938] = 1782, [1939] = 1939, [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1846, - [1944] = 1944, + [1943] = 1943, + [1944] = 1819, [1945] = 1945, - [1946] = 1819, + [1946] = 1946, [1947] = 1947, - [1948] = 1948, - [1949] = 1766, - [1950] = 1772, + [1948] = 1781, + [1949] = 1845, + [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, - [1954] = 1954, - [1955] = 1772, - [1956] = 1956, - [1957] = 1957, - [1958] = 1958, - [1959] = 1959, + [1954] = 1819, + [1955] = 1955, + [1956] = 1850, + [1957] = 1819, + [1958] = 1782, + [1959] = 1781, [1960] = 1960, - [1961] = 1819, - [1962] = 1962, - [1963] = 1772, + [1961] = 1845, + [1962] = 1782, + [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, [1967] = 1967, - [1968] = 1846, + [1968] = 1968, [1969] = 1969, - [1970] = 1846, + [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1819, + [1973] = 1973, [1974] = 1974, [1975] = 1975, [1976] = 1976, [1977] = 1977, [1978] = 1978, - [1979] = 1979, + [1979] = 1845, [1980] = 1980, - [1981] = 1981, + [1981] = 1845, [1982] = 1982, - [1983] = 1983, + [1983] = 1819, [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1987, + [1987] = 1781, [1988] = 1988, [1989] = 1989, [1990] = 1990, @@ -4799,15 +4813,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1992] = 1992, [1993] = 1993, [1994] = 1994, - [1995] = 1976, - [1996] = 1977, - [1997] = 1997, - [1998] = 1981, - [1999] = 1982, + [1995] = 1781, + [1996] = 1996, + [1997] = 1819, + [1998] = 1998, + [1999] = 1999, [2000] = 2000, [2001] = 2001, - [2002] = 1758, - [2003] = 1986, + [2002] = 2002, + [2003] = 2003, [2004] = 2004, [2005] = 2005, [2006] = 2006, @@ -4815,375 +4829,423 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2008] = 2008, [2009] = 2009, [2010] = 2010, - [2011] = 1989, - [2012] = 1990, + [2011] = 2011, + [2012] = 2012, [2013] = 2013, [2014] = 2014, - [2015] = 1994, - [2016] = 1994, + [2015] = 2015, + [2016] = 2016, [2017] = 2017, - [2018] = 1989, - [2019] = 1976, - [2020] = 1977, + [2018] = 2018, + [2019] = 2019, + [2020] = 2000, [2021] = 2021, [2022] = 2022, - [2023] = 1981, - [2024] = 1982, - [2025] = 1990, - [2026] = 2026, - [2027] = 2027, - [2028] = 1989, - [2029] = 1986, + [2023] = 2002, + [2024] = 2003, + [2025] = 2004, + [2026] = 2006, + [2027] = 2008, + [2028] = 2009, + [2029] = 2029, [2030] = 2030, [2031] = 2031, - [2032] = 2032, + [2032] = 2013, [2033] = 2033, [2034] = 2034, [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 1989, + [2038] = 2018, [2039] = 2039, - [2040] = 1990, + [2040] = 2000, [2041] = 2041, - [2042] = 1988, - [2043] = 2043, - [2044] = 1994, - [2045] = 2045, + [2042] = 2042, + [2043] = 2001, + [2044] = 2002, + [2045] = 2017, [2046] = 2046, - [2047] = 1976, - [2048] = 1977, + [2047] = 2003, + [2048] = 2004, [2049] = 2049, [2050] = 2050, - [2051] = 1981, - [2052] = 1982, - [2053] = 2053, - [2054] = 1986, - [2055] = 1986, + [2051] = 2006, + [2052] = 2008, + [2053] = 2009, + [2054] = 2054, + [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2060, + [2058] = 2013, + [2059] = 2017, + [2060] = 2013, [2061] = 2061, [2062] = 2062, - [2063] = 1989, + [2063] = 2063, [2064] = 2064, - [2065] = 1990, + [2065] = 2065, [2066] = 2066, - [2067] = 2067, - [2068] = 1994, - [2069] = 2069, + [2067] = 2018, + [2068] = 2068, + [2069] = 2000, [2070] = 2070, - [2071] = 1976, - [2072] = 1977, - [2073] = 2073, + [2071] = 2071, + [2072] = 2008, + [2073] = 2002, [2074] = 2074, - [2075] = 1981, - [2076] = 1982, - [2077] = 2077, + [2075] = 2075, + [2076] = 2003, + [2077] = 2004, [2078] = 2078, - [2079] = 1986, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, + [2079] = 2079, + [2080] = 2006, + [2081] = 2008, + [2082] = 2009, [2083] = 2083, [2084] = 2084, - [2085] = 2085, + [2085] = 2013, [2086] = 2086, - [2087] = 1989, + [2087] = 2087, [2088] = 2088, - [2089] = 1990, + [2089] = 2089, [2090] = 2090, - [2091] = 1994, + [2091] = 2091, [2092] = 2092, - [2093] = 2093, - [2094] = 1976, - [2095] = 1977, + [2093] = 2018, + [2094] = 2094, + [2095] = 2000, [2096] = 2096, [2097] = 2097, - [2098] = 1981, - [2099] = 1982, + [2098] = 2002, + [2099] = 2099, [2100] = 2100, - [2101] = 2101, - [2102] = 1986, + [2101] = 2003, + [2102] = 2004, [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 1990, - [2107] = 2107, + [2104] = 2018, + [2105] = 2006, + [2106] = 2008, + [2107] = 2009, [2108] = 2108, - [2109] = 2109, - [2110] = 1989, + [2109] = 2000, + [2110] = 2013, [2111] = 2111, - [2112] = 1990, + [2112] = 2112, [2113] = 2113, - [2114] = 1994, + [2114] = 2114, [2115] = 2115, [2116] = 2116, - [2117] = 1976, - [2118] = 1977, - [2119] = 2119, - [2120] = 2120, - [2121] = 1981, - [2122] = 1982, + [2117] = 2117, + [2118] = 2018, + [2119] = 2013, + [2120] = 2000, + [2121] = 2121, + [2122] = 2002, [2123] = 2123, - [2124] = 1986, - [2125] = 1986, - [2126] = 2126, + [2124] = 2124, + [2125] = 2003, + [2126] = 2004, [2127] = 2127, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 1989, - [2134] = 2134, - [2135] = 1990, + [2129] = 2006, + [2130] = 2008, + [2131] = 2009, + [2132] = 1833, + [2133] = 2133, + [2134] = 2013, + [2135] = 2135, [2136] = 2136, - [2137] = 1994, + [2137] = 2137, [2138] = 2138, [2139] = 2139, - [2140] = 1976, - [2141] = 1977, - [2142] = 2142, + [2140] = 2140, + [2141] = 2141, + [2142] = 2018, [2143] = 2143, - [2144] = 1981, - [2145] = 1982, - [2146] = 2146, + [2144] = 2000, + [2145] = 2145, + [2146] = 2002, [2147] = 2147, - [2148] = 1986, - [2149] = 2149, - [2150] = 2150, + [2148] = 2148, + [2149] = 2003, + [2150] = 2004, [2151] = 2151, [2152] = 2152, - [2153] = 2131, - [2154] = 1981, - [2155] = 2155, - [2156] = 1989, + [2153] = 2006, + [2154] = 2008, + [2155] = 2009, + [2156] = 2156, [2157] = 2157, - [2158] = 1990, + [2158] = 2013, [2159] = 2159, - [2160] = 1994, + [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 1976, - [2164] = 1977, + [2163] = 2163, + [2164] = 2164, [2165] = 2165, - [2166] = 2166, - [2167] = 1981, - [2168] = 1982, + [2166] = 2018, + [2167] = 2167, + [2168] = 2000, [2169] = 2169, - [2170] = 2170, - [2171] = 1986, + [2170] = 2002, + [2171] = 2171, [2172] = 2172, - [2173] = 2173, - [2174] = 2174, + [2173] = 2003, + [2174] = 2004, [2175] = 2175, [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 1989, + [2177] = 2006, + [2178] = 2008, + [2179] = 2009, [2180] = 2180, - [2181] = 1990, - [2182] = 2182, - [2183] = 1994, + [2181] = 2181, + [2182] = 2013, + [2183] = 2183, [2184] = 2184, [2185] = 2185, - [2186] = 1976, - [2187] = 1977, + [2186] = 2186, + [2187] = 2187, [2188] = 2188, [2189] = 2189, - [2190] = 1981, - [2191] = 1982, - [2192] = 2192, + [2190] = 2018, + [2191] = 2191, + [2192] = 2000, [2193] = 2193, - [2194] = 2194, - [2195] = 1989, + [2194] = 2002, + [2195] = 2195, [2196] = 2196, - [2197] = 1977, - [2198] = 2198, + [2197] = 2003, + [2198] = 2004, [2199] = 2199, - [2200] = 1982, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 1989, + [2200] = 2200, + [2201] = 2006, + [2202] = 2008, + [2203] = 2009, + [2204] = 2204, [2205] = 2205, - [2206] = 1988, + [2206] = 2013, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 1989, + [2210] = 2210, [2211] = 2211, [2212] = 2212, - [2213] = 2213, - [2214] = 2214, + [2213] = 2018, + [2214] = 2018, [2215] = 2215, - [2216] = 1989, + [2216] = 2000, [2217] = 2217, - [2218] = 2218, + [2218] = 2002, [2219] = 2219, [2220] = 2220, - [2221] = 2221, - [2222] = 1989, + [2221] = 2003, + [2222] = 2004, [2223] = 2223, [2224] = 2224, - [2225] = 2225, - [2226] = 1989, - [2227] = 2227, + [2225] = 2006, + [2226] = 2008, + [2227] = 2009, [2228] = 2228, [2229] = 2229, - [2230] = 2082, - [2231] = 2030, + [2230] = 2117, + [2231] = 2018, [2232] = 2232, - [2233] = 2166, - [2234] = 2192, + [2233] = 2004, + [2234] = 2234, [2235] = 2235, - [2236] = 2215, - [2237] = 2237, + [2236] = 2006, + [2237] = 2009, [2238] = 2238, [2239] = 2239, - [2240] = 2240, - [2241] = 2218, + [2240] = 2002, + [2241] = 2018, [2242] = 2242, - [2243] = 1982, - [2244] = 2120, + [2243] = 2243, + [2244] = 2003, [2245] = 2245, - [2246] = 2152, - [2247] = 2247, + [2246] = 2246, + [2247] = 2018, [2248] = 2248, [2249] = 2249, - [2250] = 2082, - [2251] = 2030, + [2250] = 2250, + [2251] = 2117, [2252] = 2252, - [2253] = 2166, - [2254] = 2254, - [2255] = 2215, + [2253] = 2018, + [2254] = 2004, + [2255] = 2255, [2256] = 2256, [2257] = 2257, - [2258] = 2041, - [2259] = 2218, - [2260] = 2120, - [2261] = 2152, + [2258] = 2258, + [2259] = 2018, + [2260] = 2260, + [2261] = 2261, [2262] = 2262, - [2263] = 2263, - [2264] = 2082, - [2265] = 2166, + [2263] = 2018, + [2264] = 2264, + [2265] = 2006, [2266] = 2266, - [2267] = 2215, - [2268] = 2131, + [2267] = 2267, + [2268] = 2248, [2269] = 2269, - [2270] = 2218, - [2271] = 2120, - [2272] = 2152, - [2273] = 2273, + [2270] = 2094, + [2271] = 2066, + [2272] = 2272, + [2273] = 2089, [2274] = 2274, - [2275] = 2082, - [2276] = 2166, + [2275] = 2275, + [2276] = 2009, [2277] = 2277, - [2278] = 2215, - [2279] = 2279, + [2278] = 2249, + [2279] = 2252, [2280] = 2280, - [2281] = 2218, - [2282] = 2120, - [2283] = 2152, - [2284] = 2284, - [2285] = 1976, - [2286] = 2082, - [2287] = 2166, - [2288] = 2288, - [2289] = 2215, + [2281] = 2281, + [2282] = 2282, + [2283] = 2267, + [2284] = 2078, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 2267, + [2289] = 2248, [2290] = 2290, - [2291] = 2291, - [2292] = 2218, - [2293] = 2120, - [2294] = 2152, - [2295] = 1977, + [2291] = 2094, + [2292] = 2292, + [2293] = 2089, + [2294] = 2294, + [2295] = 2295, [2296] = 2296, - [2297] = 2082, - [2298] = 2166, - [2299] = 2218, - [2300] = 2120, - [2301] = 2152, + [2297] = 2249, + [2298] = 2252, + [2299] = 2282, + [2300] = 2078, + [2301] = 2301, [2302] = 2302, - [2303] = 2082, - [2304] = 2166, - [2305] = 2218, - [2306] = 2120, - [2307] = 2152, + [2303] = 2267, + [2304] = 2094, + [2305] = 2305, + [2306] = 2089, + [2307] = 2307, [2308] = 2308, - [2309] = 2082, - [2310] = 2166, - [2311] = 2218, - [2312] = 2120, - [2313] = 2152, + [2309] = 2249, + [2310] = 2252, + [2311] = 2282, + [2312] = 2078, + [2313] = 2313, [2314] = 2314, - [2315] = 2082, - [2316] = 2166, - [2317] = 2218, - [2318] = 2120, - [2319] = 2152, + [2315] = 2267, + [2316] = 2094, + [2317] = 2317, + [2318] = 2089, + [2319] = 2319, [2320] = 2320, - [2321] = 2082, - [2322] = 2166, - [2323] = 2218, - [2324] = 2120, - [2325] = 2152, - [2326] = 2218, - [2327] = 2152, - [2328] = 2328, + [2321] = 2249, + [2322] = 2252, + [2323] = 2282, + [2324] = 2078, + [2325] = 2325, + [2326] = 2326, + [2327] = 2267, + [2328] = 2094, [2329] = 2329, - [2330] = 2330, - [2331] = 2330, + [2330] = 2089, + [2331] = 2331, [2332] = 2332, - [2333] = 2333, - [2334] = 2330, - [2335] = 2335, - [2336] = 2336, - [2337] = 2330, + [2333] = 2249, + [2334] = 2252, + [2335] = 2282, + [2336] = 2078, + [2337] = 2337, [2338] = 2338, - [2339] = 2339, - [2340] = 2330, - [2341] = 2341, - [2342] = 2342, - [2343] = 2330, - [2344] = 1994, - [2345] = 2330, - [2346] = 2330, - [2347] = 2330, - [2348] = 2330, - [2349] = 2330, - [2350] = 2161, - [2351] = 2161, - [2352] = 2161, - [2353] = 2161, - [2354] = 2161, - [2355] = 2161, - [2356] = 2161, - [2357] = 2161, - [2358] = 2161, - [2359] = 2161, - [2360] = 2143, - [2361] = 2143, - [2362] = 2143, - [2363] = 2143, - [2364] = 2143, - [2365] = 2143, - [2366] = 2143, - [2367] = 2143, - [2368] = 2143, - [2369] = 2143, - [2370] = 1979, - [2371] = 1979, - [2372] = 1979, - [2373] = 1979, - [2374] = 1979, - [2375] = 1979, - [2376] = 1979, - [2377] = 1979, - [2378] = 1979, - [2379] = 1979, + [2339] = 2267, + [2340] = 2094, + [2341] = 2249, + [2342] = 2252, + [2343] = 2282, + [2344] = 2078, + [2345] = 2345, + [2346] = 2267, + [2347] = 2094, + [2348] = 2249, + [2349] = 2252, + [2350] = 2282, + [2351] = 2078, + [2352] = 2352, + [2353] = 2267, + [2354] = 2094, + [2355] = 2249, + [2356] = 2252, + [2357] = 2282, + [2358] = 2078, + [2359] = 2359, + [2360] = 2267, + [2361] = 2094, + [2362] = 2249, + [2363] = 2252, + [2364] = 2282, + [2365] = 2078, + [2366] = 2366, + [2367] = 2267, + [2368] = 2094, + [2369] = 2249, + [2370] = 2252, + [2371] = 2282, + [2372] = 2078, + [2373] = 2249, + [2374] = 2252, + [2375] = 2078, + [2376] = 2376, + [2377] = 2377, + [2378] = 2308, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2308, + [2383] = 2383, + [2384] = 2282, + [2385] = 2308, + [2386] = 2386, + [2387] = 2387, + [2388] = 2308, + [2389] = 2389, + [2390] = 2390, + [2391] = 2308, + [2392] = 2392, + [2393] = 2308, + [2394] = 2308, + [2395] = 2308, + [2396] = 2308, + [2397] = 2308, + [2398] = 2097, + [2399] = 2097, + [2400] = 2097, + [2401] = 2097, + [2402] = 2097, + [2403] = 2097, + [2404] = 2097, + [2405] = 2097, + [2406] = 2097, + [2407] = 2097, + [2408] = 2114, + [2409] = 2114, + [2410] = 2114, + [2411] = 2114, + [2412] = 2114, + [2413] = 2114, + [2414] = 2114, + [2415] = 2114, + [2416] = 2114, + [2417] = 2114, + [2418] = 2286, + [2419] = 2286, + [2420] = 2286, + [2421] = 2286, + [2422] = 2286, + [2423] = 2286, + [2424] = 2286, + [2425] = 2286, + [2426] = 2286, + [2427] = 2286, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5191,80 +5253,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(858); + if (eof) ADVANCE(864); if (lookahead == '!') ADVANCE(114); - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '%') ADVANCE(1158); 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(1107); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1160); + if (lookahead == '.') ADVANCE(1123); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); - if (lookahead == '\\') ADVANCE(980); - if (lookahead == ']') ADVANCE(1093); + if (lookahead == '[') ADVANCE(1098); + if (lookahead == '\\') ADVANCE(986); + if (lookahead == ']') ADVANCE(1099); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(191); + lookahead == 'a') ADVANCE(193); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(245); + lookahead == 'b') ADVANCE(248); if (lookahead == 'C' || lookahead == 'c') ADVANCE(119); if (lookahead == 'D' || lookahead == 'd') ADVANCE(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(132); + lookahead == 'e') ADVANCE(133); if (lookahead == 'F' || lookahead == 'f') ADVANCE(123); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(299); + lookahead == 'g') ADVANCE(302); if (lookahead == 'H' || lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(366); + lookahead == 'i') ADVANCE(369); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(296); + lookahead == 'k') ADVANCE(299); if (lookahead == 'L' || lookahead == 'l') ADVANCE(126); if (lookahead == 'M' || lookahead == 'm') ADVANCE(127); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(139); + lookahead == 'n') ADVANCE(138); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(370); + lookahead == 'o') ADVANCE(373); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(304); + lookahead == 'p') ADVANCE(307); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(799); + lookahead == 'q') ADVANCE(805); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(138); + lookahead == 'r') ADVANCE(137); if (lookahead == 'S' || - lookahead == 's') ADVANCE(192); + lookahead == 's') ADVANCE(194); if (lookahead == 'T' || - lookahead == 't') ADVANCE(157); + lookahead == 't') ADVANCE(158); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(541); + lookahead == 'u') ADVANCE(546); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(134); + lookahead == 'v') ADVANCE(128); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(408); + lookahead == 'w') ADVANCE(411); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(630); + lookahead == 'z') ADVANCE(635); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5273,69 +5335,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(244); + if (lookahead == ' ') ADVANCE(247); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(380); + if (lookahead == ' ') ADVANCE(383); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(613); + if (lookahead == ' ') ADVANCE(618); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(387); + if (lookahead == ' ') ADVANCE(390); END_STATE(); case 5: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); if (lookahead == '.') ADVANCE(111); - if (lookahead == '/') ADVANCE(1148); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); - if (lookahead == ']') ADVANCE(1093); + if (lookahead == '[') ADVANCE(1098); + if (lookahead == ']') ADVANCE(1099); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(560); + lookahead == 'a') ADVANCE(565); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(346); + lookahead == 'b') ADVANCE(348); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(406); + lookahead == 'c') ADVANCE(409); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(312); + lookahead == 'd') ADVANCE(315); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(666); + lookahead == 'f') ADVANCE(672); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(473); + lookahead == 'i') ADVANCE(477); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(449); + lookahead == 'l') ADVANCE(452); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(626); + lookahead == 'n') ADVANCE(631); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(659); + lookahead == 'o') ADVANCE(665); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(674); + lookahead == 'p') ADVANCE(679); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(294); + lookahead == 'r') ADVANCE(297); if (lookahead == 'T' || - lookahead == 't') ADVANCE(413); + lookahead == 't') ADVANCE(416); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(577); + lookahead == 'u') ADVANCE(582); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5347,43 +5409,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 6: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5395,49 +5457,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 7: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1305); + lookahead == 'o') ADVANCE(1316); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5449,39 +5511,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 8: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5493,39 +5555,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 9: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1384); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5537,47 +5599,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 10: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(562); + lookahead == 'a') ADVANCE(567); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(333); + lookahead == 'd') ADVANCE(337); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(474); + lookahead == 'i') ADVANCE(478); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(418); + lookahead == 'l') ADVANCE(422); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(627); + lookahead == 'n') ADVANCE(632); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(372); + lookahead == 'o') ADVANCE(375); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(349); + lookahead == 'r') ADVANCE(352); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(734); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5589,49 +5651,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 11: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(559); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(678); + lookahead == 'g') ADVANCE(683); if (lookahead == 'H' || lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); + lookahead == 'i') ADVANCE(476); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(246); + lookahead == 'l') ADVANCE(249); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(371); + lookahead == 'o') ADVANCE(374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5643,45 +5705,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(559); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); + lookahead == 'i') ADVANCE(476); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); + lookahead == 'l') ADVANCE(251); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(659); + lookahead == 'o') ADVANCE(665); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5693,47 +5755,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(559); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(475); + lookahead == 'i') ADVANCE(479); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); + lookahead == 'l') ADVANCE(251); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(539); + lookahead == 'o') ADVANCE(544); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(734); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5745,41 +5807,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 14: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(559); + lookahead == 'a') ADVANCE(564); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(678); + lookahead == 'g') ADVANCE(683); if (lookahead == 'H' || lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(474); + lookahead == 'i') ADVANCE(478); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(418); + lookahead == 'l') ADVANCE(422); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(627); + lookahead == 'n') ADVANCE(632); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(371); + lookahead == 'o') ADVANCE(374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(347); + lookahead == 'r') ADVANCE(350); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5791,41 +5853,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 15: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1150); + if (lookahead == '%') ADVANCE(1158); 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(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); + lookahead == 'l') ADVANCE(1344); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5837,67 +5899,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 16: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1123); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); - if (lookahead == ']') ADVANCE(1093); + if (lookahead == '[') ADVANCE(1098); + if (lookahead == ']') ADVANCE(1099); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(561); + lookahead == 'a') ADVANCE(566); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(346); + lookahead == 'b') ADVANCE(348); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(406); + lookahead == 'c') ADVANCE(409); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(146); + lookahead == 'd') ADVANCE(145); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(634); + lookahead == 'f') ADVANCE(639); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(604); + lookahead == 'h') ADVANCE(609); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(471); + lookahead == 'i') ADVANCE(475); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(154); + lookahead == 'l') ADVANCE(155); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(626); + lookahead == 'n') ADVANCE(631); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(539); + lookahead == 'o') ADVANCE(544); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(674); + lookahead == 'p') ADVANCE(679); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(294); + lookahead == 'r') ADVANCE(297); if (lookahead == 'S' || - lookahead == 's') ADVANCE(324); + lookahead == 's') ADVANCE(327); if (lookahead == 'T' || - lookahead == 't') ADVANCE(414); + lookahead == 't') ADVANCE(417); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(577); + lookahead == 'u') ADVANCE(582); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(608); + lookahead == 'v') ADVANCE(611); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5909,58 +5971,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 17: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); + lookahead == 'a') ADVANCE(569); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(145); + lookahead == 'd') ADVANCE(144); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(604); + lookahead == 'h') ADVANCE(609); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); + lookahead == 'i') ADVANCE(476); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); + lookahead == 'l') ADVANCE(251); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(659); + lookahead == 'o') ADVANCE(665); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); + lookahead == 's') ADVANCE(332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(605); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5972,60 +6034,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); + lookahead == 'a') ADVANCE(569); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(145); + lookahead == 'd') ADVANCE(144); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(604); + lookahead == 'h') ADVANCE(609); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(475); + lookahead == 'i') ADVANCE(479); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); + lookahead == 'l') ADVANCE(251); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(539); + lookahead == 'o') ADVANCE(544); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); + lookahead == 's') ADVANCE(332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(605); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(728); + lookahead == 'u') ADVANCE(734); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6037,52 +6099,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 19: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); + lookahead == 'a') ADVANCE(569); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(145); + lookahead == 'd') ADVANCE(144); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(678); + lookahead == 'g') ADVANCE(683); if (lookahead == 'H' || lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(474); + lookahead == 'i') ADVANCE(478); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(418); + lookahead == 'l') ADVANCE(422); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(627); + lookahead == 'n') ADVANCE(632); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(371); + lookahead == 'o') ADVANCE(374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(347); + lookahead == 'r') ADVANCE(350); if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); + lookahead == 's') ADVANCE(332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(605); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6094,62 +6156,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 20: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(563); + lookahead == 'a') ADVANCE(568); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(677); + lookahead == 'c') ADVANCE(682); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(147); + lookahead == 'd') ADVANCE(146); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(678); + lookahead == 'g') ADVANCE(683); if (lookahead == 'H' || lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); + lookahead == 'i') ADVANCE(476); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(246); + lookahead == 'l') ADVANCE(249); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); + lookahead == 'n') ADVANCE(140); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(371); + lookahead == 'o') ADVANCE(374); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(348); + lookahead == 'r') ADVANCE(351); if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); + lookahead == 's') ADVANCE(332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(605); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(640); + lookahead == 'u') ADVANCE(645); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6161,60 +6223,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 21: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(563); + lookahead == 'a') ADVANCE(568); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(345); + lookahead == 'b') ADVANCE(347); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(405); + lookahead == 'c') ADVANCE(408); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(147); + lookahead == 'd') ADVANCE(146); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(633); + lookahead == 'f') ADVANCE(638); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(604); + lookahead == 'h') ADVANCE(609); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(474); + lookahead == 'i') ADVANCE(478); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(418); + lookahead == 'l') ADVANCE(422); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(443); + lookahead == 'm') ADVANCE(447); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(628); + lookahead == 'n') ADVANCE(633); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(372); + lookahead == 'o') ADVANCE(375); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(674); + lookahead == 'p') ADVANCE(679); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(349); + lookahead == 'r') ADVANCE(352); if (lookahead == 'S' || - lookahead == 's') ADVANCE(329); + lookahead == 's') ADVANCE(332); if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(605); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(577); + lookahead == 'u') ADVANCE(582); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(416); + lookahead == 'w') ADVANCE(420); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(297); + lookahead == 'y') ADVANCE(300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6226,45 +6288,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 22: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); + lookahead == 'a') ADVANCE(1410); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1305); + lookahead == 'o') ADVANCE(1316); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6276,47 +6338,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 23: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); + lookahead == 'a') ADVANCE(1410); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6328,39 +6390,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 24: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); + lookahead == 'a') ADVANCE(1410); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6372,39 +6434,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 25: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); + lookahead == 'a') ADVANCE(1410); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1384); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6416,45 +6478,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 26: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); + lookahead == 'a') ADVANCE(1410); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); + lookahead == 'l') ADVANCE(1344); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6466,46 +6528,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 27: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6517,48 +6579,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 28: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1305); + lookahead == 'o') ADVANCE(1316); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6570,38 +6632,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 29: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6613,38 +6675,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 30: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1384); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6656,55 +6718,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 31: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1207); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1197); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1354); + lookahead == 'm') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1305); + lookahead == 'o') ADVANCE(1316); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1254); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1264); + lookahead == 'y') ADVANCE(1275); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6716,53 +6778,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 32: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1207); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1197); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1354); + lookahead == 'm') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1254); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1264); + lookahead == 'y') ADVANCE(1275); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6774,47 +6836,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 33: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1207); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1459); + lookahead == 'h') ADVANCE(1471); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1354); + lookahead == 'm') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1254); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1264); + lookahead == 'y') ADVANCE(1275); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6826,47 +6888,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 34: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1207); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1459); + lookahead == 'h') ADVANCE(1471); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1384); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1354); + lookahead == 'm') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1254); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1264); + lookahead == 'y') ADVANCE(1275); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6878,49 +6940,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 35: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1305); + lookahead == 'o') ADVANCE(1316); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6932,47 +6994,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 36: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1333); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6984,39 +7046,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 37: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7028,39 +7090,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 38: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1384); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1353); + lookahead == 'l') ADVANCE(1365); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1488); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7072,44 +7134,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 39: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); + lookahead == 'l') ADVANCE(1344); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7121,51 +7183,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 40: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1199); + lookahead == 'd') ADVANCE(1207); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1197); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); + lookahead == 'l') ADVANCE(1344); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1354); + lookahead == 'm') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1254); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1264); + lookahead == 'y') ADVANCE(1275); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7177,45 +7239,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 41: if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1149); + if (lookahead == '%') ADVANCE(1157); 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(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == ',') ADVANCE(869); + if (lookahead == '-') ADVANCE(1159); + if (lookahead == '/') ADVANCE(1156); if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1155); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '>') ADVANCE(1156); + if (lookahead == '<') ADVANCE(1163); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '>') ADVANCE(1164); if (lookahead == '@') ADVANCE(116); if (lookahead == '|') ADVANCE(118); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1239); + lookahead == 'b') ADVANCE(1250); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1371); + lookahead == 'i') ADVANCE(1383); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1332); + lookahead == 'l') ADVANCE(1344); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1443); + lookahead == 'n') ADVANCE(1455); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1307); + lookahead == 'o') ADVANCE(1318); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7227,25 +7289,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 42: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '%') ADVANCE(662); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '%') ADVANCE(668); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == ':') ADVANCE(115); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '[') ADVANCE(1098); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1295); + lookahead == 's') ADVANCE(1306); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7257,29 +7319,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 43: - if (lookahead == '$') ADVANCE(1082); - 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(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); - if (lookahead == ']') ADVANCE(1093); + if (lookahead == ';') ADVANCE(865); + if (lookahead == ']') ADVANCE(1099); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7288,43 +7350,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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 44: - if (lookahead == '$') ADVANCE(1082); - 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(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1206); + lookahead == 'f') ADVANCE(1214); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1422); + lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1339); + lookahead == 'l') ADVANCE(1351); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1306); + lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7333,41 +7395,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 45: - if (lookahead == '$') ADVANCE(1082); - 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(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1206); + lookahead == 'f') ADVANCE(1214); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1422); + lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1339); + lookahead == 'l') ADVANCE(1351); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7376,32 +7438,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(45) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 46: - if (lookahead == '$') ADVANCE(1082); - 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(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1273); + lookahead == 'd') ADVANCE(1284); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7410,34 +7472,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(46) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 47: - if (lookahead == '$') ADVANCE(1082); - 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(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7446,20 +7508,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(47) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 48: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7471,26 +7533,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 49: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == '*') ADVANCE(1147); - if (lookahead == '+') ADVANCE(1154); - if (lookahead == '-') ADVANCE(1153); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1381); + lookahead == 'a') ADVANCE(1393); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7499,37 +7561,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 50: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == '*') ADVANCE(1147); - if (lookahead == '+') ADVANCE(1154); - if (lookahead == '-') ADVANCE(1153); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1594); + lookahead == 'e') ADVANCE(1608); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1267); + lookahead == 'r') ADVANCE(1278); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7538,39 +7600,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 51: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == '*') ADVANCE(1147); - if (lookahead == '+') ADVANCE(1154); - if (lookahead == '-') ADVANCE(1153); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1206); + lookahead == 'f') ADVANCE(1214); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1422); + lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1338); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7579,31 +7641,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 52: - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == '*') ADVANCE(1147); - if (lookahead == '+') ADVANCE(1154); - if (lookahead == '-') ADVANCE(1153); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == '*') ADVANCE(1155); + if (lookahead == '+') ADVANCE(1162); + if (lookahead == '-') ADVANCE(1161); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1512); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1207); + lookahead == 'f') ADVANCE(1215); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); + lookahead == 'i') ADVANCE(1448); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1452); + lookahead == 'n') ADVANCE(1464); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1586); + lookahead == 'q') ADVANCE(1600); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1488); + lookahead == 't') ADVANCE(1501); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7612,16 +7674,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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 53: - if (lookahead == '$') ADVANCE(855); - if (lookahead == '%') ADVANCE(1121); - if (lookahead == '-') ADVANCE(1120); - if (lookahead == '/') ADVANCE(1118); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead == '-') ADVANCE(1128); + if (lookahead == '/') ADVANCE(1126); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7629,55 +7691,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1119); - if (lookahead != 0) ADVANCE(1123); + lookahead == 65279) ADVANCE(1127); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 54: - if (lookahead == '%') ADVANCE(662); - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '%') ADVANCE(668); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '=') ADVANCE(896); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '=') ADVANCE(902); + if (lookahead == '[') ADVANCE(1098); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(706); + lookahead == 'a') ADVANCE(712); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(407); + lookahead == 'c') ADVANCE(410); if (lookahead == 'D' || lookahead == 'd') ADVANCE(156); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(808); + lookahead == 'f') ADVANCE(814); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(678); + lookahead == 'g') ADVANCE(683); if (lookahead == 'H' || lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(562); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(247); + lookahead == 'l') ADVANCE(250); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(180); + lookahead == 'm') ADVANCE(182); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(143); + lookahead == 'n') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(373); + lookahead == 'o') ADVANCE(376); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(674); + lookahead == 'p') ADVANCE(679); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(295); + lookahead == 'r') ADVANCE(298); if (lookahead == 'S' || - lookahead == 's') ADVANCE(338); + lookahead == 's') ADVANCE(341); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(577); + lookahead == 'u') ADVANCE(582); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(133); + lookahead == 'v') ADVANCE(178); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(417); + lookahead == 'w') ADVANCE(421); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7688,14 +7750,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(54) END_STATE(); case 55: - if (lookahead == '%') ADVANCE(662); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '%') ADVANCE(668); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == '[') ADVANCE(1092); + if (lookahead == '[') ADVANCE(1098); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1569); + lookahead == 'n') ADVANCE(1583); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7707,17 +7771,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 56: - if (lookahead == '&') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1183); - if (lookahead == '>') ADVANCE(1184); + if (lookahead == '&') ADVANCE(1190); + if (lookahead == '<') ADVANCE(1191); + if (lookahead == '>') ADVANCE(1192); END_STATE(); case 57: - if (lookahead == '\'') ADVANCE(1099); - if (lookahead == '-') ADVANCE(1103); - if (lookahead == '/') ADVANCE(1102); + if (lookahead == '\'') ADVANCE(1107); + if (lookahead == '-') ADVANCE(1111); + if (lookahead == '/') ADVANCE(1110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7725,40 +7789,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1104); - if (lookahead != 0) ADVANCE(1101); + lookahead == 65279) ADVANCE(1112); + if (lookahead != 0) ADVANCE(1109); END_STATE(); case 58: - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1277); + lookahead == 'l') ADVANCE(1288); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1306); + lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7770,39 +7834,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1277); + lookahead == 'l') ADVANCE(1288); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7814,33 +7878,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 60: - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7852,33 +7916,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 61: - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(1435); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7890,37 +7954,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 62: - if (lookahead == '(') ADVANCE(876); - if (lookahead == ',') ADVANCE(863); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1276); + lookahead == 'l') ADVANCE(1287); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7932,41 +7996,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 63: - if (lookahead == '(') ADVANCE(876); + if (lookahead == '(') ADVANCE(882); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(706); + lookahead == 'a') ADVANCE(712); if (lookahead == 'C' || lookahead == 'c') ADVANCE(121); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(315); + lookahead == 'd') ADVANCE(318); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); + lookahead == 'f') ADVANCE(820); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); + lookahead == 'i') ADVANCE(563); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(136); + lookahead == 'm') ADVANCE(135); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(603); + lookahead == 'n') ADVANCE(608); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(660); + lookahead == 'o') ADVANCE(666); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(357); + lookahead == 'r') ADVANCE(360); if (lookahead == 'S' || - lookahead == 's') ADVANCE(193); + lookahead == 's') ADVANCE(195); if (lookahead == 'T' || - lookahead == 't') ADVANCE(158); + lookahead == 't') ADVANCE(159); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(540); + lookahead == 'u') ADVANCE(545); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(133); + lookahead == 'v') ADVANCE(178); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(428); + lookahead == 'w') ADVANCE(432); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7977,29 +8041,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(63) END_STATE(); case 64: - if (lookahead == '(') ADVANCE(876); + if (lookahead == '(') ADVANCE(882); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(1435); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'o') ADVANCE(1412); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + lookahead == 'u') ADVANCE(1535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8011,36 +8075,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 65: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1277); + lookahead == 'l') ADVANCE(1288); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1306); + lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8052,36 +8116,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 66: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1277); + lookahead == 'l') ADVANCE(1288); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8093,30 +8157,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 67: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8128,30 +8192,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 68: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(1435); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1265); + lookahead == 'r') ADVANCE(1276); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8163,30 +8227,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 69: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1339); + lookahead == 'l') ADVANCE(1351); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1306); + lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8198,28 +8262,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 70: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1339); + lookahead == 'l') ADVANCE(1351); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8231,16 +8295,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 71: - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8252,23 +8316,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 72: - if (lookahead == ')') ADVANCE(877); + if (lookahead == ')') ADVANCE(883); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + lookahead == 'u') ADVANCE(1535); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8280,21 +8344,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 73: - if (lookahead == ')') ADVANCE(877); + if (lookahead == ')') ADVANCE(883); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); + if (lookahead == ';') ADVANCE(865); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1266); + lookahead == 'r') ADVANCE(1277); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + lookahead == 'u') ADVANCE(1535); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8306,20 +8370,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 74: - if (lookahead == ')') ADVANCE(877); + if (lookahead == ')') ADVANCE(883); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1329); + lookahead == 'c') ADVANCE(1340); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1463); + lookahead == 'f') ADVANCE(1475); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1491); + lookahead == 'p') ADVANCE(1505); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1420); + lookahead == 'u') ADVANCE(1432); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8331,14 +8395,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 75: - if (lookahead == ')') ADVANCE(877); + if (lookahead == ')') ADVANCE(883); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1273); + lookahead == 'd') ADVANCE(1284); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8350,16 +8414,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 76: - if (lookahead == ')') ADVANCE(877); + if (lookahead == ')') ADVANCE(883); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8371,26 +8435,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 77: if (lookahead == '*') ADVANCE(81); END_STATE(); case 78: if (lookahead == '*') ADVANCE(78); - if (lookahead == '/') ADVANCE(1105); + if (lookahead == '/') ADVANCE(1113); if (lookahead != 0) ADVANCE(81); END_STATE(); case 79: if (lookahead == '*') ADVANCE(78); if (lookahead == 'I' || - lookahead == 's') ADVANCE(1128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + lookahead == 's') ADVANCE(1136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); if (lookahead != 0) ADVANCE(81); END_STATE(); case 80: if (lookahead == '*') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); if (lookahead != 0) ADVANCE(81); END_STATE(); case 81: @@ -8398,31 +8462,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(81); END_STATE(); case 82: - if (lookahead == ',') ADVANCE(863); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); + lookahead == 'i') ADVANCE(1417); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1276); + lookahead == 'l') ADVANCE(1287); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8434,26 +8498,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 83: - if (lookahead == ',') ADVANCE(863); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1480); + lookahead == 'f') ADVANCE(1493); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1484); + lookahead == 'g') ADVANCE(1497); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1198); + lookahead == 'h') ADVANCE(1206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1424); + lookahead == 'i') ADVANCE(1436); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1338); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1308); + lookahead == 'o') ADVANCE(1319); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1326); + lookahead == 'w') ADVANCE(1337); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8465,44 +8529,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 84: - if (lookahead == '-') ADVANCE(1113); + if (lookahead == '-') ADVANCE(1121); END_STATE(); case 85: - if (lookahead == '-') ADVANCE(1185); + if (lookahead == '-') ADVANCE(1193); END_STATE(); case 86: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(980); + if (lookahead == '\\') ADVANCE(986); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1377); + lookahead == 'a') ADVANCE(1389); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1494); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); + lookahead == 'd') ADVANCE(1285); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1373); + lookahead == 'e') ADVANCE(1385); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1448); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1286); + lookahead == 'g') ADVANCE(1297); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1310); + lookahead == 'i') ADVANCE(1321); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1468); + lookahead == 'o') ADVANCE(1480); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1283); + lookahead == 'p') ADVANCE(1294); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1204); + lookahead == 'r') ADVANCE(1212); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1467); + lookahead == 'u') ADVANCE(1479); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8514,38 +8578,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 87: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(980); + if (lookahead == '\\') ADVANCE(986); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1377); + lookahead == 'a') ADVANCE(1389); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1494); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); + lookahead == 'd') ADVANCE(1285); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1414); + lookahead == 'e') ADVANCE(1426); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1448); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1286); + lookahead == 'g') ADVANCE(1297); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1310); + lookahead == 'i') ADVANCE(1321); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1468); + lookahead == 'o') ADVANCE(1480); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1283); + lookahead == 'p') ADVANCE(1294); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1204); + lookahead == 'r') ADVANCE(1212); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1467); + lookahead == 'u') ADVANCE(1479); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8557,38 +8621,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 88: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(980); + if (lookahead == '\\') ADVANCE(986); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1377); + lookahead == 'a') ADVANCE(1389); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1494); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); + lookahead == 'd') ADVANCE(1285); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1594); + lookahead == 'e') ADVANCE(1608); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1448); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1286); + lookahead == 'g') ADVANCE(1297); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1310); + lookahead == 'i') ADVANCE(1321); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1468); + lookahead == 'o') ADVANCE(1480); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1283); + lookahead == 'p') ADVANCE(1294); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1204); + lookahead == 'r') ADVANCE(1212); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1290); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1467); + lookahead == 'u') ADVANCE(1479); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1348); + lookahead == 'w') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8600,13 +8664,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 89: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(981); + lookahead == '\r') ADVANCE(987); if (lookahead == '\t' || lookahead == ' ' || lookahead == 160 || @@ -8616,13 +8680,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 90: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1511); + lookahead == 'a') ADVANCE(1525); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8634,15 +8698,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 91: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); + lookahead == 'a') ADVANCE(1591); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1322); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8654,13 +8718,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 92: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); + lookahead == 'a') ADVANCE(1591); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8672,23 +8736,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 93: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1382); + lookahead == 'a') ADVANCE(1394); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1574); + lookahead == 'f') ADVANCE(1588); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1500); + lookahead == 'p') ADVANCE(1514); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1460); + lookahead == 'r') ADVANCE(1472); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1230); + lookahead == 's') ADVANCE(1241); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1200); + lookahead == 't') ADVANCE(1208); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8700,13 +8764,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 94: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1382); + lookahead == 'a') ADVANCE(1394); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8718,15 +8782,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 95: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1280); + lookahead == 'b') ADVANCE(1291); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1284); + lookahead == 'd') ADVANCE(1295); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8738,21 +8802,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 96: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1328); + lookahead == 'c') ADVANCE(1339); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1463); + lookahead == 'f') ADVANCE(1475); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1322); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1491); + lookahead == 'p') ADVANCE(1505); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1420); + lookahead == 'u') ADVANCE(1432); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8764,15 +8828,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 97: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1442); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1322); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8784,15 +8848,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 98: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1442); + lookahead == 'c') ADVANCE(1454); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1441); + lookahead == 't') ADVANCE(1453); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8804,13 +8868,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 99: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1453); + lookahead == 'c') ADVANCE(1465); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8822,29 +8886,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 100: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1496); + lookahead == 'c') ADVANCE(1510); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1583); + lookahead == 'f') ADVANCE(1597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(1435); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1461); + lookahead == 'j') ADVANCE(1473); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1278); + lookahead == 'l') ADVANCE(1289); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1217); + lookahead == 'n') ADVANCE(1227); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'o') ADVANCE(1412); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1340); + lookahead == 'r') ADVANCE(1352); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + lookahead == 'u') ADVANCE(1535); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8856,19 +8920,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 101: 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); + lookahead == 'c') ADVANCE(1468); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1322); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1412); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8880,15 +8942,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 102: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1576); + lookahead == 'c') ADVANCE(1590); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1497); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1595); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1301); + lookahead == 's') ADVANCE(1312); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8900,17 +8966,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 103: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1457); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'c') ADVANCE(1590); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1312); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8922,15 +8986,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 104: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1574); + lookahead == 'f') ADVANCE(1588); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1500); + lookahead == 'p') ADVANCE(1514); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8942,15 +9006,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 105: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1322); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'o') ADVANCE(1412); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8962,13 +9026,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 106: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1322); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8980,17 +9044,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 107: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1569); + lookahead == 'n') ADVANCE(1583); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1298); + lookahead == 's') ADVANCE(1308); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1200); + lookahead == 't') ADVANCE(1208); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9002,13 +9068,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 108: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1474); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9020,13 +9086,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 109: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'o') ADVANCE(1412); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9038,13 +9104,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 110: if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1557); + lookahead == 's') ADVANCE(1571); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9056,1160 +9122,1162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 111: - if (lookahead == '.') ADVANCE(1019); + if (lookahead == '.') ADVANCE(1025); END_STATE(); case 112: - if (lookahead == ':') ADVANCE(1186); + if (lookahead == ':') ADVANCE(1194); END_STATE(); case 113: - if (lookahead == ':') ADVANCE(1186); - if (lookahead == '=') ADVANCE(1035); + if (lookahead == ':') ADVANCE(1194); + if (lookahead == '=') ADVANCE(1041); END_STATE(); case 114: - if (lookahead == '=') ADVANCE(1160); + if (lookahead == '=') ADVANCE(1168); END_STATE(); case 115: - if (lookahead == '=') ADVANCE(1035); + if (lookahead == '=') ADVANCE(1041); END_STATE(); case 116: - if (lookahead == '>') ADVANCE(1179); + if (lookahead == '>') ADVANCE(1187); END_STATE(); case 117: - if (lookahead == '_') ADVANCE(829); + if (lookahead == '_') ADVANCE(835); END_STATE(); case 118: - if (lookahead == '|') ADVANCE(1177); + if (lookahead == '|') ADVANCE(1185); END_STATE(); case 119: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(218); + lookahead == 'a') ADVANCE(221); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(301); + lookahead == 'h') ADVANCE(304); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(484); + lookahead == 'o') ADVANCE(488); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(302); + lookahead == 'r') ADVANCE(305); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(668); + lookahead == 'u') ADVANCE(674); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(203); + lookahead == 'y') ADVANCE(204); END_STATE(); case 120: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(218); + lookahead == 'a') ADVANCE(221); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(301); + lookahead == 'h') ADVANCE(304); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); + lookahead == 'o') ADVANCE(594); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(302); + lookahead == 'r') ADVANCE(305); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(704); + lookahead == 'u') ADVANCE(710); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(203); + lookahead == 'y') ADVANCE(204); END_STATE(); case 121: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(218); + lookahead == 'a') ADVANCE(221); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(589); + lookahead == 'o') ADVANCE(594); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(203); + lookahead == 'y') ADVANCE(204); END_STATE(); case 122: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(764); + lookahead == 'a') ADVANCE(770); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(204); + lookahead == 'e') ADVANCE(206); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(135); + lookahead == 'i') ADVANCE(134); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(891); + lookahead == 'o') ADVANCE(897); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(607); + lookahead == 'r') ADVANCE(613); END_STATE(); case 123: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(485); + lookahead == 'a') ADVANCE(489); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(690); + lookahead == 'i') ADVANCE(695); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(645); + lookahead == 'o') ADVANCE(650); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(612); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(487); - END_STATE(); - case 124: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(833); - END_STATE(); - case 125: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(833); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(802); - END_STATE(); - case 126: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(566); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(468); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(609); - END_STATE(); - case 127: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(788); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(571); - END_STATE(); - case 128: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(187); - END_STATE(); - case 129: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(187); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(447); - END_STATE(); - case 130: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(936); - END_STATE(); - case 131: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(903); - END_STATE(); - case 132: - if (lookahead == 'A' || - 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(517); - END_STATE(); - case 134: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(517); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(489); - END_STATE(); - case 135: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(396); - END_STATE(); - case 136: - if (lookahead == 'A' || - 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(950); + lookahead == 'r') ADVANCE(617); if (lookahead == 'U' || lookahead == 'u') ADVANCE(491); END_STATE(); - case 140: + case 124: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(766); + lookahead == 'a') ADVANCE(839); + END_STATE(); + case 125: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(839); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(951); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(490); + lookahead == 'o') ADVANCE(808); END_STATE(); - case 141: + case 126: 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); + lookahead == 'a') ADVANCE(571); 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); + lookahead == 'e') ADVANCE(381); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(467); + lookahead == 'i') ADVANCE(472); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(609); + lookahead == 'o') ADVANCE(614); END_STATE(); - case 155: + case 127: 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); + lookahead == 'a') ADVANCE(794); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(531); + lookahead == 'i') ADVANCE(547); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(954); + lookahead == 'o') ADVANCE(576); + END_STATE(); + case 128: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(522); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(495); + END_STATE(); + case 129: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(189); + END_STATE(); + case 130: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(189); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(427); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(641); + lookahead == 'r') ADVANCE(451); END_STATE(); - case 158: + case 131: 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); + lookahead == 'a') ADVANCE(942); END_STATE(); - case 159: + case 132: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); + lookahead == 'a') ADVANCE(909); END_STATE(); - case 160: + case 133: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(580); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(800); + lookahead == 'a') ADVANCE(205); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(723); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(233); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(310); END_STATE(); - case 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: + case 134: if (lookahead == 'A' || lookahead == 'a') ADVANCE(399); END_STATE(); - case 168: + case 135: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(793); + lookahead == 'a') ADVANCE(846); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(603); END_STATE(); - case 169: + case 136: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(687); + lookahead == 'a') ADVANCE(850); END_STATE(); - case 170: + case 137: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(776); + lookahead == 'a') ADVANCE(454); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(387); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(395); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(823); END_STATE(); - case 171: + case 138: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(503); + lookahead == 'a') ADVANCE(772); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(956); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(494); END_STATE(); - case 172: + case 139: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(461); + lookahead == 'a') ADVANCE(772); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(957); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(493); END_STATE(); - case 173: + case 140: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + lookahead == 'a') ADVANCE(772); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(764); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(516); END_STATE(); - case 174: + case 141: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(772); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(782); + END_STATE(); + case 142: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(772); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(760); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(493); + END_STATE(); + case 143: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(241); + END_STATE(); + case 144: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(848); + END_STATE(); + case 145: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(848); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + END_STATE(); + case 146: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(848); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(724); + END_STATE(); + case 147: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(652); + END_STATE(); + case 148: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(523); + END_STATE(); + case 149: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(239); + END_STATE(); + case 150: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(485); + END_STATE(); + case 151: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(500); + END_STATE(); + case 152: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(673); + END_STATE(); + case 153: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(661); + END_STATE(); + case 154: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(675); + END_STATE(); + case 155: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(570); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(471); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(614); + END_STATE(); + case 156: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(769); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(378); + END_STATE(); + case 157: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(685); + END_STATE(); + case 158: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(187); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(532); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(311); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(537); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(960); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(431); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(646); + END_STATE(); + case 159: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(187); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(532); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(430); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(646); + END_STATE(); + case 160: if (lookahead == 'A' || lookahead == 'a') ADVANCE(779); END_STATE(); + case 161: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(585); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(806); + END_STATE(); + case 162: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(539); + END_STATE(); + case 163: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(810); + END_STATE(); + case 164: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(810); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(702); + END_STATE(); + case 165: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(810); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(702); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(600); + END_STATE(); + case 166: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(810); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(686); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(600); + END_STATE(); + case 167: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(217); + END_STATE(); + case 168: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(402); + END_STATE(); + case 169: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(799); + END_STATE(); + case 170: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(692); + END_STATE(); + case 171: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(783); + END_STATE(); + case 172: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(507); + END_STATE(); + case 173: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(465); + END_STATE(); + case 174: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(785); + END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(518); + lookahead == 'a') ADVANCE(786); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(188); + lookahead == 'a') ADVANCE(524); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(519); + lookahead == 'a') ADVANCE(190); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(189); + lookahead == 'a') ADVANCE(521); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(189); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(233); + lookahead == 'a') ADVANCE(521); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(495); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(787); + lookahead == 'a') ADVANCE(191); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(190); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(954); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(809); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(641); + lookahead == 'a') ADVANCE(191); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(236); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(186); + lookahead == 'a') ADVANCE(793); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(795); + lookahead == 'a') ADVANCE(192); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(960); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(815); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(646); END_STATE(); case 184: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(516); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(188); END_STATE(); case 185: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(505); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(801); END_STATE(); case 186: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(506); + lookahead == 'b') ADVANCE(520); 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); + lookahead == 'b') ADVANCE(509); END_STATE(); case 188: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(509); + lookahead == 'b') ADVANCE(510); END_STATE(); case 189: if (lookahead == 'B' || lookahead == 'b') ADVANCE(510); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(749); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(357); END_STATE(); case 190: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(511); + lookahead == 'b') ADVANCE(513); 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); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(514); 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); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(515); END_STATE(); case 193: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(410); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(515); + lookahead == 'c') ADVANCE(768); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(231); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(787); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(480); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(669); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(874); if (lookahead == 'T' || - lookahead == 't') ADVANCE(155); + lookahead == 't') ADVANCE(1138); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(765); END_STATE(); case 194: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(617); + lookahead == 'c') ADVANCE(413); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(197); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(130); END_STATE(); case 195: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(617); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(821); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(732); + lookahead == 'c') ADVANCE(413); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(519); if (lookahead == 'T' || - lookahead == 't') ADVANCE(870); + lookahead == 't') ADVANCE(157); END_STATE(); case 196: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(919); + lookahead == 'c') ADVANCE(622); END_STATE(); case 197: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(958); + lookahead == 'c') ADVANCE(622); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(316); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(827); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(738); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(876); END_STATE(); case 198: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1096); + lookahead == 'c') ADVANCE(925); 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); + lookahead == 'c') ADVANCE(964); END_STATE(); case 200: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(918); + lookahead == 'c') ADVANCE(1102); END_STATE(); case 201: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(466); + lookahead == 'c') ADVANCE(924); END_STATE(); case 202: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(402); + lookahead == 'c') ADVANCE(501); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(301); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(325); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(346); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(607); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(634); END_STATE(); case 203: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(502); + lookahead == 'c') ADVANCE(470); 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); + lookahead == 'c') ADVANCE(506); END_STATE(); case 205: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(828); + lookahead == 'c') ADVANCE(405); END_STATE(); case 206: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(144); + lookahead == 'c') ADVANCE(517); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(166); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(355); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(198); END_STATE(); case 207: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(712); + lookahead == 'c') ADVANCE(834); END_STATE(); case 208: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(746); + lookahead == 'c') ADVANCE(418); END_STATE(); case 209: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(747); + lookahead == 'c') ADVANCE(143); END_STATE(); case 210: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(309); + lookahead == 'c') ADVANCE(718); END_STATE(); case 211: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(750); + lookahead == 'c') ADVANCE(752); END_STATE(); case 212: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(751); + lookahead == 'c') ADVANCE(753); END_STATE(); case 213: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(761); + lookahead == 'c') ADVANCE(312); END_STATE(); case 214: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(276); + lookahead == 'c') ADVANCE(756); END_STATE(); case 215: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(283); + lookahead == 'c') ADVANCE(757); END_STATE(); case 216: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(321); + lookahead == 'c') ADVANCE(767); END_STATE(); case 217: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(330); + lookahead == 'c') ADVANCE(279); END_STATE(); case 218: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(411); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(206); + lookahead == 'c') ADVANCE(286); 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); + lookahead == 'c') ADVANCE(324); 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); + lookahead == 'c') ADVANCE(333); END_STATE(); case 221: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(616); + lookahead == 'c') ADVANCE(414); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(209); END_STATE(); case 222: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(705); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(298); + lookahead == 'c') ADVANCE(837); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(525); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(789); END_STATE(); case 223: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(173); + lookahead == 'c') ADVANCE(813); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(316); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(836); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(876); END_STATE(); case 224: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(794); + lookahead == 'c') ADVANCE(621); END_STATE(); case 225: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(796); + lookahead == 'c') ADVANCE(711); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(301); END_STATE(); case 226: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(797); + lookahead == 'c') ADVANCE(174); 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); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(800); END_STATE(); case 228: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(928); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(802); END_STATE(); case 229: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1187); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(803); END_STATE(); case 230: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1022); + lookahead == 'd') ADVANCE(231); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(787); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(790); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(874); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(522); + lookahead == 'u') ADVANCE(765); END_STATE(); case 231: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(991); + lookahead == 'd') ADVANCE(934); END_STATE(); case 232: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1145); + lookahead == 'd') ADVANCE(1195); END_STATE(); case 233: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(940); + lookahead == 'd') ADVANCE(1028); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(527); END_STATE(); case 234: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1090); + lookahead == 'd') ADVANCE(997); END_STATE(); case 235: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1044); + lookahead == 'd') ADVANCE(1153); END_STATE(); case 236: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(3); + lookahead == 'd') ADVANCE(946); END_STATE(); case 237: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(462); + lookahead == 'd') ADVANCE(1096); END_STATE(); case 238: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(273); + lookahead == 'd') ADVANCE(1050); END_STATE(); case 239: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(293); + lookahead == 'd') ADVANCE(3); END_STATE(); case 240: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(430); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(621); + lookahead == 'd') ADVANCE(466); END_STATE(); case 241: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(825); + lookahead == 'd') ADVANCE(276); END_STATE(); case 242: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(328); + lookahead == 'd') ADVANCE(296); END_STATE(); case 243: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(170); + lookahead == 'd') ADVANCE(434); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(626); END_STATE(); case 244: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(464); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(826); + lookahead == 'd') ADVANCE(831); END_STATE(); case 245: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(377); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(983); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(331); 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); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(171); 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); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(468); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(832); END_STATE(); case 248: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(467); + lookahead == 'e') ADVANCE(380); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(989); END_STATE(); case 249: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(546); + lookahead == 'e') ADVANCE(381); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(472); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(614); END_STATE(); case 250: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1034); + lookahead == 'e') ADVANCE(381); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(367); + lookahead == 'i') ADVANCE(533); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(614); END_STATE(); case 251: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1163); + lookahead == 'e') ADVANCE(381); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(471); END_STATE(); case 252: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(992); + lookahead == 'e') ADVANCE(551); END_STATE(); case 253: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1132); + lookahead == 'e') ADVANCE(1040); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(370); END_STATE(); case 254: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1189); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); + lookahead == 'e') ADVANCE(1171); END_STATE(); case 255: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(862); + lookahead == 'e') ADVANCE(998); END_STATE(); case 256: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1133); + lookahead == 'e') ADVANCE(1140); END_STATE(); case 257: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1095); + lookahead == 'e') ADVANCE(1197); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(226); END_STATE(); case 258: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(989); + lookahead == 'e') ADVANCE(868); END_STATE(); case 259: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(990); + lookahead == 'e') ADVANCE(1141); END_STATE(); case 260: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1191); + lookahead == 'e') ADVANCE(1101); END_STATE(); case 261: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1165); + lookahead == 'e') ADVANCE(995); END_STATE(); case 262: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1024); + lookahead == 'e') ADVANCE(996); END_STATE(); case 263: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); + lookahead == 'e') ADVANCE(1199); END_STATE(); case 264: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1085); + lookahead == 'e') ADVANCE(1173); END_STATE(); case 265: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(995); + lookahead == 'e') ADVANCE(1030); END_STATE(); case 266: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(878); + lookahead == 'e') ADVANCE(907); END_STATE(); case 267: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(924); + lookahead == 'e') ADVANCE(1091); END_STATE(); case 268: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1143); + lookahead == 'e') ADVANCE(1001); END_STATE(); case 269: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(953); + lookahead == 'e') ADVANCE(884); END_STATE(); case 270: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1078); + lookahead == 'e') ADVANCE(930); END_STATE(); case 271: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(911); + lookahead == 'e') ADVANCE(1151); END_STATE(); case 272: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(866); + lookahead == 'e') ADVANCE(959); END_STATE(); case 273: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); + lookahead == 'e') ADVANCE(1084); END_STATE(); case 274: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1083); + lookahead == 'e') ADVANCE(917); END_STATE(); case 275: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1007); + lookahead == 'e') ADVANCE(872); END_STATE(); case 276: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1087); + lookahead == 'e') ADVANCE(870); END_STATE(); case 277: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1017); + lookahead == 'e') ADVANCE(1089); END_STATE(); case 278: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(978); + lookahead == 'e') ADVANCE(1013); END_STATE(); case 279: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1094); + lookahead == 'e') ADVANCE(1093); END_STATE(); case 280: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1071); + lookahead == 'e') ADVANCE(1023); END_STATE(); case 281: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(985); + lookahead == 'e') ADVANCE(984); END_STATE(); case 282: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(984); + lookahead == 'e') ADVANCE(1100); END_STATE(); case 283: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(974); + lookahead == 'e') ADVANCE(1077); END_STATE(); case 284: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(998); + lookahead == 'e') ADVANCE(991); END_STATE(); case 285: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1079); + lookahead == 'e') ADVANCE(990); END_STATE(); case 286: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(939); + lookahead == 'e') ADVANCE(980); END_STATE(); case 287: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1077); + lookahead == 'e') ADVANCE(1004); END_STATE(); case 288: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(976); + lookahead == 'e') ADVANCE(1085); END_STATE(); case 289: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(937); + lookahead == 'e') ADVANCE(945); 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); + lookahead == 'e') ADVANCE(1083); 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); + lookahead == 'e') ADVANCE(982); END_STATE(); case 292: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(220); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(128); + lookahead == 'e') ADVANCE(943); END_STATE(); case 293: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(923); + lookahead == 'e') ADVANCE(384); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(134); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(897); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(613); END_STATE(); case 294: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(386); + lookahead == 'e') ADVANCE(388); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(395); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(842); END_STATE(); case 295: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(386); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(392); + lookahead == 'e') ADVANCE(223); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(129); END_STATE(); case 296: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(843); + lookahead == 'e') ADVANCE(929); END_STATE(); case 297: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(148); + lookahead == 'e') ADVANCE(389); END_STATE(); case 298: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(839); + lookahead == 'e') ADVANCE(389); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(395); END_STATE(); case 299: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(735); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(160); + lookahead == 'e') ADVANCE(849); END_STATE(); case 300: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(237); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(770); + lookahead == 'e') ADVANCE(147); END_STATE(); case 301: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(201); + lookahead == 'e') ADVANCE(845); END_STATE(); case 302: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(159); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(719); + lookahead == 'e') ADVANCE(741); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(161); END_STATE(); case 303: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(231); + lookahead == 'e') ADVANCE(240); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(776); 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); + lookahead == 'e') ADVANCE(203); END_STATE(); case 305: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(544); + lookahead == 'e') ADVANCE(160); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(725); END_STATE(); case 306: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(234); END_STATE(); case 307: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(722); + lookahead == 'e') ADVANCE(670); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(424); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(186); END_STATE(); case 308: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(545); + lookahead == 'e') ADVANCE(549); END_STATE(); case 309: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(241); + lookahead == 'e') ADVANCE(207); END_STATE(); case 310: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(532); + lookahead == 'e') ADVANCE(207); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(728); END_STATE(); case 311: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(665); + lookahead == 'e') ADVANCE(550); END_STATE(); case 312: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(375); + lookahead == 'e') ADVANCE(244); END_STATE(); case 313: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(208); + lookahead == 'e') ADVANCE(536); END_STATE(); case 314: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(709); + lookahead == 'e') ADVANCE(671); END_STATE(); case 315: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(379); + lookahead == 'e') ADVANCE(378); END_STATE(); case 316: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(234); + lookahead == 'e') ADVANCE(211); END_STATE(); case 317: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(648); + lookahead == 'e') ADVANCE(715); END_STATE(); case 318: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(382); END_STATE(); case 319: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(235); + lookahead == 'e') ADVANCE(237); END_STATE(); case 320: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(649); + lookahead == 'e') ADVANCE(653); END_STATE(); case 321: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(711); + lookahead == 'e') ADVANCE(716); END_STATE(); case 322: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(650); + lookahead == 'e') ADVANCE(238); END_STATE(); case 323: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(671); + lookahead == 'e') ADVANCE(654); END_STATE(); case 324: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(194); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(182); + lookahead == 'e') ADVANCE(717); END_STATE(); case 325: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(713); + lookahead == 'e') ADVANCE(655); END_STATE(); case 326: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(694); + lookahead == 'e') ADVANCE(677); END_STATE(); case 327: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(446); + lookahead == 'e') ADVANCE(196); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(184); END_STATE(); case 328: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(651); + lookahead == 'e') ADVANCE(719); END_STATE(); case 329: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(221); + lookahead == 'e') ADVANCE(700); END_STATE(); case 330: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(715); + lookahead == 'e') ADVANCE(450); END_STATE(); case 331: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(590); + lookahead == 'e') ADVANCE(656); END_STATE(); case 332: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(652); + lookahead == 'e') ADVANCE(224); END_STATE(); case 333: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(718); + lookahead == 'e') ADVANCE(721); END_STATE(); case 334: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(551); + lookahead == 'e') ADVANCE(595); END_STATE(); case 335: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(698); + lookahead == 'e') ADVANCE(657); END_STATE(); case 336: if (lookahead == 'E' || @@ -10217,2341 +10285,2367 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 337: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(745); + lookahead == 'e') ADVANCE(724); END_STATE(); case 338: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(514); + lookahead == 'e') ADVANCE(556); END_STATE(); case 339: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(654); + lookahead == 'e') ADVANCE(704); END_STATE(); case 340: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(655); + lookahead == 'e') ADVANCE(751); END_STATE(); case 341: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(656); + lookahead == 'e') ADVANCE(518); END_STATE(); case 342: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(657); + lookahead == 'e') ADVANCE(659); END_STATE(); case 343: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(686); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(336); + lookahead == 'e') ADVANCE(660); END_STATE(); case 344: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(658); + lookahead == 'e') ADVANCE(662); END_STATE(); case 345: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(760); + lookahead == 'e') ADVANCE(663); END_STATE(); case 346: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(760); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(983); + lookahead == 'e') ADVANCE(691); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(336); END_STATE(); case 347: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(789); + lookahead == 'e') ADVANCE(766); END_STATE(); case 348: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(789); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(392); + lookahead == 'e') ADVANCE(766); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(989); END_STATE(); case 349: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(789); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(835); + lookahead == 'e') ADVANCE(664); END_STATE(); case 350: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(696); + lookahead == 'e') ADVANCE(795); END_STATE(); case 351: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(376); + lookahead == 'e') ADVANCE(795); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(395); END_STATE(); case 352: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(773); + lookahead == 'e') ADVANCE(795); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(841); END_STATE(); case 353: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(581); + lookahead == 'e') ADVANCE(701); END_STATE(); case 354: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(537); + lookahead == 'e') ADVANCE(379); END_STATE(); case 355: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(400); + lookahead == 'e') ADVANCE(780); END_STATE(); case 356: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(582); + lookahead == 'e') ADVANCE(586); END_STATE(); case 357: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(720); + lookahead == 'e') ADVANCE(542); END_STATE(); case 358: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(334); + lookahead == 'e') ADVANCE(403); END_STATE(); case 359: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(583); + lookahead == 'e') ADVANCE(587); END_STATE(); case 360: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(683); + lookahead == 'e') ADVANCE(726); END_STATE(); case 361: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(585); + lookahead == 'e') ADVANCE(338); END_STATE(); case 362: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(586); + lookahead == 'e') ADVANCE(588); END_STATE(); case 363: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(591); + lookahead == 'e') ADVANCE(688); END_STATE(); case 364: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(592); + lookahead == 'e') ADVANCE(590); END_STATE(); case 365: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(538); + lookahead == 'e') ADVANCE(591); END_STATE(); case 366: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1026); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(521); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(972); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(596); END_STATE(); case 367: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1029); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(597); END_STATE(); case 368: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1031); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(543); END_STATE(); case 369: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(997); + lookahead == 'f') ADVANCE(1032); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(978); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); END_STATE(); case 370: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(305); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1002); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(791); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(573); + lookahead == 'f') ADVANCE(1035); END_STATE(); case 371: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1002); + lookahead == 'f') ADVANCE(1037); END_STATE(); case 372: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); + lookahead == 'f') ADVANCE(1003); END_STATE(); case 373: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); + lookahead == 'f') ADVANCE(385); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); + lookahead == 'n') ADVANCE(894); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(308); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(242); + lookahead == 'r') ADVANCE(1008); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(797); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(578); END_STATE(); case 374: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); + lookahead == 'f') ADVANCE(385); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); + lookahead == 'n') ADVANCE(894); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(242); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(573); + lookahead == 'r') ADVANCE(1008); END_STATE(); case 375: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(163); + lookahead == 'f') ADVANCE(385); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(894); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1005); END_STATE(); case 376: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(632); + lookahead == 'f') ADVANCE(385); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(894); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(245); END_STATE(); case 377: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(632); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(431); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(838); + lookahead == 'f') ADVANCE(385); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(894); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(245); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(578); END_STATE(); case 378: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(738); + lookahead == 'f') ADVANCE(164); END_STATE(); case 379: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(162); + lookahead == 'f') ADVANCE(637); END_STATE(); case 380: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(691); + lookahead == 'f') ADVANCE(637); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(435); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(844); END_STATE(); case 381: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(164); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(352); + lookahead == 'f') ADVANCE(744); END_STATE(); case 382: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(725); + lookahead == 'f') ADVANCE(163); END_STATE(); case 383: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(624); + lookahead == 'f') ADVANCE(696); 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(916); - END_STATE(); - case 389: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1047); - 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(1005); - END_STATE(); - case 403: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(987); - 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(954); - 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(569); - END_STATE(); - case 434: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(198); - END_STATE(); - case 435: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(207); - END_STATE(); - case 436: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(535); - END_STATE(); - case 437: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(741); - END_STATE(); - case 438: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(171); - END_STATE(); - case 439: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(593); - END_STATE(); - case 440: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(767); - END_STATE(); - case 441: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); - END_STATE(); - case 442: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1075); - END_STATE(); - case 443: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(597); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(571); - END_STATE(); - case 444: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(574); - END_STATE(); - case 445: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(618); - END_STATE(); - case 446: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(397); - END_STATE(); - case 447: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(209); - END_STATE(); - case 448: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(151); - END_STATE(); - case 449: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(467); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(609); - END_STATE(); - case 450: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(619); - END_STATE(); - case 451: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(726); - END_STATE(); - case 452: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(211); - END_STATE(); - case 453: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(620); - END_STATE(); - case 454: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(587); - END_STATE(); - case 455: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(507); - END_STATE(); - case 456: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(212); - END_STATE(); - case 457: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(781); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(322); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(602); - END_STATE(); - case 458: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(623); - END_STATE(); - case 459: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(508); - END_STATE(); - case 460: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(625); - END_STATE(); - case 461: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(584); - END_STATE(); - case 462: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(174); - END_STATE(); - case 463: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(599); - END_STATE(); - case 464: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(734); - END_STATE(); - case 465: - if (lookahead == 'I' || - lookahead == 's') ADVANCE(1123); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1122); - END_STATE(); - case 466: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(941); - END_STATE(); - case 467: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(251); - END_STATE(); - case 468: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(251); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(437); - END_STATE(); - case 469: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(261); - END_STATE(); - case 470: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(344); - END_STATE(); - case 471: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(529); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(968); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); - END_STATE(); - case 472: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(972); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); - END_STATE(); - case 473: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(968); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); - END_STATE(); - case 474: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(973); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); - END_STATE(); - case 475: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(419); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(971); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1174); - END_STATE(); - case 476: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(962); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); - END_STATE(); - case 477: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1069); - END_STATE(); - case 478: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(934); - END_STATE(); - case 479: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1168); - END_STATE(); - case 480: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1167); - END_STATE(); - case 481: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1056); - END_STATE(); - case 482: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1171); - END_STATE(); - case 483: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1170); - END_STATE(); - case 484: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(801); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(219); - END_STATE(); - case 485: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(724); - END_STATE(); - case 486: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(477); - END_STATE(); - case 487: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(477); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(224); - END_STATE(); - case 488: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(477); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(225); - END_STATE(); - case 489: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(168); - END_STATE(); - case 490: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(478); - END_STATE(); - case 491: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(478); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(326); - END_STATE(); - case 492: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(849); - END_STATE(); - case 493: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(850); - END_STATE(); - case 494: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(166); - END_STATE(); - case 495: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(479); - END_STATE(); - case 496: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(424); - END_STATE(); - case 497: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(820); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(365); - END_STATE(); - case 498: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(480); - END_STATE(); - case 499: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(482); - END_STATE(); - case 500: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(716); - END_STATE(); - case 501: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(483); - END_STATE(); - case 502: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(259); - END_STATE(); - case 503: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(493); - END_STATE(); - case 504: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(749); - END_STATE(); - case 505: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(263); - END_STATE(); - case 506: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(270); - END_STATE(); - case 507: + lookahead == 'f') ADVANCE(165); if (lookahead == 'L' || lookahead == 'l') ADVANCE(355); END_STATE(); - case 508: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(285); + case 385: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(731); END_STATE(); - case 509: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(287); + case 386: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(629); END_STATE(); - case 510: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(289); - END_STATE(); - case 511: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(325); - END_STATE(); - case 512: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(500); - END_STATE(); - case 513: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(169); - END_STATE(); - case 514: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - END_STATE(); - case 515: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(821); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(870); - END_STATE(); - 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(1040); - 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); + case 387: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(339); 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); + lookahead == 'n') ADVANCE(162); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(498); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(788); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(812); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(455); + lookahead == 'v') ADVANCE(353); 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: + case 388: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(339); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); - 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); + lookahead == 'n') ADVANCE(162); 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(1060); - END_STATE(); - case 544: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1010); - END_STATE(); - case 545: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1028); - END_STATE(); - case 546: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1009); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); - END_STATE(); - case 547: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1080); - END_STATE(); - case 548: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(952); - END_STATE(); - case 549: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(929); - END_STATE(); - case 550: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1036); - 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(905); - END_STATE(); - case 555: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(442); - END_STATE(); - case 556: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(946); - 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); + lookahead == 's') ADVANCE(788); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1130); + lookahead == 't') ADVANCE(817); 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); + case 389: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(339); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1130); + lookahead == 't') ADVANCE(819); END_STATE(); - case 564: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(229); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1130); + case 390: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(699); END_STATE(); - case 565: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(394); + case 391: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(922); END_STATE(); - case 566: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(394); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(737); + case 392: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1053); END_STATE(); - case 567: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(388); + case 393: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(905); END_STATE(); - case 568: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(224); + case 394: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(899); END_STATE(); - case 569: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(389); + case 395: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(415); END_STATE(); - case 570: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); + case 396: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(404); END_STATE(); - case 571: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(768); + case 397: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(825); END_STATE(); - case 572: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(390); + case 398: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(401); END_STATE(); - case 573: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(303); + case 399: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(580); END_STATE(); - case 574: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(391); + case 400: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(561); END_STATE(); - case 575: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(635); + case 401: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(319); 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); + case 402: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(283); END_STATE(); - case 577: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(421); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(429); + case 403: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(321); END_STATE(); - case 578: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(714); + case 404: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(343); END_STATE(); - case 579: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(256); + case 405: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1011); END_STATE(); - case 580: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(740); + case 406: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(993); END_STATE(); - case 581: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(748); + case 407: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1145); END_STATE(); - case 582: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(752); + case 408: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(304); 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: + case 409: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(304); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(954); + lookahead == 'o') ADVANCE(594); END_STATE(); - case 601: + case 410: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(304); 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(949); - 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(1020); - END_STATE(); - case 638: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1088); - END_STATE(); - case 639: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(960); - 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(1003); - 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(996); - END_STATE(); - case 649: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(926); - END_STATE(); - case 650: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1062); - END_STATE(); - case 651: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1054); - END_STATE(); - case 652: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1066); - END_STATE(); - case 653: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(179); - END_STATE(); - case 654: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1074); - END_STATE(); - case 655: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(994); - END_STATE(); - case 656: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(907); - END_STATE(); - case 657: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(909); - END_STATE(); - case 658: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1073); - END_STATE(); - case 659: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); - END_STATE(); - case 660: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); - 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: + lookahead == 'o') ADVANCE(594); if (lookahead == 'R' || lookahead == 'r') ADVANCE(610); END_STATE(); - case 679: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(353); + case 411: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(252); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(771); END_STATE(); - case 680: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(743); + case 412: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(627); END_STATE(); - case 681: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(653); + case 413: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(313); END_STATE(); - case 682: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(555); + case 414: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(261); END_STATE(); - case 683: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); + case 415: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(748); END_STATE(); - case 684: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(594); + case 416: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(311); END_STATE(); - case 685: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(265); + case 417: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(311); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(960); END_STATE(); - case 686: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(755); + case 418: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(153); END_STATE(); - case 687: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(274); + case 419: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(448); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(828); END_STATE(); - case 688: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(288); + case 420: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(363); END_STATE(); - case 689: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(327); + case 421: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(363); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(771); END_STATE(); - case 690: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(723); + case 422: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(472); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(614); END_STATE(); - case 691: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(614); + case 423: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(473); END_STATE(); - case 692: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(440); + case 424: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(213); END_STATE(); - case 693: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(615); + case 425: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(649); END_STATE(); - case 694: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(434); + case 426: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(649); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(636); END_STATE(); - case 695: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(153); + case 427: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(860); END_STATE(); - case 696: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(727); + case 428: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(859); END_STATE(); - case 697: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(703); + case 429: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(548); END_STATE(); - case 698: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(363); + case 430: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(396); END_STATE(); - case 699: + case 431: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(396); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(257); + END_STATE(); + case 432: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(771); + END_STATE(); + case 433: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(572); + END_STATE(); + case 434: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(739); + END_STATE(); + case 435: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(552); + END_STATE(); + case 436: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(199); + END_STATE(); + case 437: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(574); + END_STATE(); + case 438: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(200); + END_STATE(); + case 439: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(210); + END_STATE(); + case 440: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); + END_STATE(); + case 441: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(747); + END_STATE(); + case 442: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(172); + END_STATE(); + case 443: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(598); + END_STATE(); + case 444: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(773); + END_STATE(); + case 445: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(577); + END_STATE(); + case 446: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(577); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1081); + END_STATE(); + case 447: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(602); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(576); + END_STATE(); + case 448: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(579); + END_STATE(); + case 449: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(623); + END_STATE(); + case 450: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(400); + END_STATE(); + case 451: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(212); + END_STATE(); + case 452: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(471); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(614); + END_STATE(); + case 453: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(624); + END_STATE(); + case 454: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(732); + END_STATE(); + case 455: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(214); + END_STATE(); + case 456: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(151); + END_STATE(); + case 457: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(625); + END_STATE(); + case 458: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(511); + END_STATE(); + case 459: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(592); + END_STATE(); + case 460: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(215); + END_STATE(); + case 461: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(777); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(325); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(607); + END_STATE(); + case 462: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(628); + END_STATE(); + case 463: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(512); + END_STATE(); + case 464: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(630); + END_STATE(); + case 465: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(589); + END_STATE(); + case 466: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(175); + END_STATE(); + case 467: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(604); + END_STATE(); + case 468: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(740); + END_STATE(); + case 469: + if (lookahead == 'I' || + lookahead == 's') ADVANCE(1131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); + END_STATE(); + case 470: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(947); + END_STATE(); + case 471: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(254); + END_STATE(); + case 472: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(254); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(441); + END_STATE(); + case 473: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(264); + END_STATE(); + case 474: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(349); + END_STATE(); + case 475: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(534); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(974); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); + END_STATE(); + case 476: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(978); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); + END_STATE(); + case 477: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(974); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); + END_STATE(); + case 478: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(979); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); + END_STATE(); + case 479: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(423); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(977); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1182); + END_STATE(); + case 480: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(968); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(323); + END_STATE(); + case 481: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1075); + END_STATE(); + case 482: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(940); + END_STATE(); + case 483: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1176); + END_STATE(); + case 484: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1175); + END_STATE(); + case 485: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1062); + END_STATE(); + case 486: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1179); + END_STATE(); + case 487: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1178); + END_STATE(); + case 488: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(807); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(222); + END_STATE(); + case 489: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(730); + END_STATE(); + case 490: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(481); + END_STATE(); + case 491: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(481); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(227); + END_STATE(); + case 492: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(481); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(228); + END_STATE(); + case 493: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(482); + END_STATE(); + case 494: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(482); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(329); + END_STATE(); + case 495: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(169); + END_STATE(); + case 496: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(855); + END_STATE(); + case 497: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(856); + END_STATE(); + case 498: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(167); + END_STATE(); + case 499: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(483); + END_STATE(); + case 500: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(428); + END_STATE(); + case 501: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(826); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(368); + END_STATE(); + case 502: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(484); + END_STATE(); + case 503: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(486); + END_STATE(); + case 504: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(722); + END_STATE(); + case 505: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(487); + END_STATE(); + case 506: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(262); + END_STATE(); + case 507: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(497); + END_STATE(); + case 508: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(755); + END_STATE(); + case 509: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(266); + END_STATE(); + case 510: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(273); + END_STATE(); + case 511: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(358); + END_STATE(); + case 512: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(288); + END_STATE(); + case 513: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(290); + END_STATE(); + case 514: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(292); + END_STATE(); + case 515: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(328); + END_STATE(); + case 516: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(504); + END_STATE(); + case 517: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(170); + END_STATE(); + case 518: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(316); + END_STATE(); + case 519: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(316); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(827); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(876); + END_STATE(); + case 520: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(436); + END_STATE(); + case 521: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(816); + END_STATE(); + case 522: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(816); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(208); + END_STATE(); + case 523: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(821); + END_STATE(); + case 524: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(822); + END_STATE(); + case 525: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(455); + END_STATE(); + case 526: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(303); + END_STATE(); + case 527: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(886); + END_STATE(); + case 528: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(878); + END_STATE(); + case 529: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1046); + END_STATE(); + case 530: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1183); + END_STATE(); + case 531: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1184); + END_STATE(); + case 532: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(643); + END_STATE(); + case 533: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(441); + END_STATE(); + case 534: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(811); + END_STATE(); + case 535: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(534); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(202); + END_STATE(); + case 536: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(132); + END_STATE(); + case 537: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(256); + END_STATE(); + case 538: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(554); + END_STATE(); + case 539: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(272); + END_STATE(); + case 540: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(152); + END_STATE(); + case 541: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(152); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(458); + END_STATE(); + case 542: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(359); + END_STATE(); + case 543: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(365); + END_STATE(); + case 544: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(894); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1005); + END_STATE(); + case 545: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(426); + END_STATE(); + case 546: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(426); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(246); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(433); + END_STATE(); + case 547: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(830); + END_STATE(); + case 548: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1066); + END_STATE(); + case 549: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1016); + END_STATE(); + case 550: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1034); + END_STATE(); + case 551: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1015); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(267); + END_STATE(); + case 552: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1086); + END_STATE(); + case 553: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(958); + END_STATE(); + case 554: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(935); + END_STATE(); + case 555: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1042); + END_STATE(); + case 556: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1169); + END_STATE(); + case 557: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(117); + END_STATE(); + case 558: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(880); + END_STATE(); + case 559: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(911); + END_STATE(); + case 560: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(446); + END_STATE(); + case 561: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(952); + END_STATE(); + case 562: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(461); + END_STATE(); + case 563: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(225); + END_STATE(); + case 564: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + END_STATE(); + case 565: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(874); + END_STATE(); + case 566: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(874); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1138); + END_STATE(); + case 567: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(201); + END_STATE(); + case 568: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(201); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1138); + END_STATE(); + case 569: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(232); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1138); + END_STATE(); + case 570: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(397); + END_STATE(); + case 571: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(397); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(743); + END_STATE(); + case 572: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(391); + END_STATE(); + case 573: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(227); + END_STATE(); + case 574: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(392); + END_STATE(); + case 575: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(235); + END_STATE(); + case 576: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(774); + END_STATE(); + case 577: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(393); + END_STATE(); + case 578: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(306); + END_STATE(); + case 579: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(394); + END_STATE(); + case 580: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(640); + END_STATE(); + case 581: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(425); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(246); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(433); + END_STATE(); + case 582: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(425); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(433); + END_STATE(); + case 583: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(720); + END_STATE(); + case 584: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(259); + END_STATE(); + case 585: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(746); + END_STATE(); + case 586: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(754); + END_STATE(); + case 587: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(758); + END_STATE(); + case 588: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(778); + END_STATE(); + case 589: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(759); + END_STATE(); + case 590: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(762); + END_STATE(); + case 591: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(763); + END_STATE(); + case 592: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(281); + END_STATE(); + case 593: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(226); + END_STATE(); + case 594: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(727); + END_STATE(); + case 595: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(218); + END_STATE(); + case 596: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(219); + END_STATE(); + case 597: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(220); + END_STATE(); + case 598: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(216); + END_STATE(); + case 599: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(445); + END_STATE(); + case 600: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(342); + END_STATE(); + case 601: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(828); + END_STATE(); + case 602: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(829); + END_STATE(); + case 603: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(840); + END_STATE(); + case 604: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(229); + END_STATE(); + case 605: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(960); + END_STATE(); + case 606: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(843); + END_STATE(); + case 607: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(889); + END_STATE(); + case 608: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); + END_STATE(); + case 609: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(808); + END_STATE(); + case 610: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(725); + END_STATE(); + case 611: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(495); + END_STATE(); + case 612: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(429); + END_STATE(); + case 613: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(641); + END_STATE(); + case 614: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(642); + END_STATE(); + case 615: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(806); + END_STATE(); + case 616: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(650); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(617); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(492); + END_STATE(); + case 617: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(528); + END_STATE(); + case 618: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(372); + END_STATE(); + case 619: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(530); + END_STATE(); + case 620: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(531); + END_STATE(); + case 621: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(575); + END_STATE(); + case 622: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(575); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(697); + END_STATE(); + case 623: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(553); + END_STATE(); + case 624: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(557); + END_STATE(); + case 625: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(558); + END_STATE(); + case 626: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(750); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(502); + END_STATE(); + case 627: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(678); + END_STATE(); + case 628: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(559); + END_STATE(); + case 629: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(676); + END_STATE(); + case 630: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(583); + END_STATE(); + case 631: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(742); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(493); + END_STATE(); + case 632: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(782); + END_STATE(); + case 633: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(782); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(516); + END_STATE(); + case 634: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(474); + END_STATE(); + case 635: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(584); + END_STATE(); + case 636: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(398); + END_STATE(); + case 637: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(690); + END_STATE(); + case 638: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(694); + END_STATE(); + case 639: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(694); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(617); + END_STATE(); + case 640: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(735); + END_STATE(); + case 641: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(866); + END_STATE(); + case 642: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1026); + END_STATE(); + case 643: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1094); + END_STATE(); + case 644: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(966); + END_STATE(); + case 645: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(246); + END_STATE(); + case 646: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(258); + END_STATE(); + case 647: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(260); + END_STATE(); + case 648: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(282); + END_STATE(); + case 649: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(818); + END_STATE(); + case 650: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1009); + END_STATE(); + case 651: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1149); + END_STATE(); + case 652: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1143); + END_STATE(); + case 653: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1002); + END_STATE(); + case 654: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(932); + END_STATE(); + case 655: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1068); + END_STATE(); + case 656: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1060); + END_STATE(); + case 657: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1072); + END_STATE(); + case 658: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(181); + END_STATE(); + case 659: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1080); + END_STATE(); + case 660: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1000); + END_STATE(); + case 661: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1104); + END_STATE(); + case 662: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(913); + END_STATE(); + case 663: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(915); + END_STATE(); + case 664: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1079); + END_STATE(); + case 665: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1005); + END_STATE(); + case 666: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1005); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(578); + END_STATE(); + case 667: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(161); + END_STATE(); + case 668: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(606); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(857); + END_STATE(); + case 669: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(136); + END_STATE(); + case 670: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(386); + END_STATE(); + case 671: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(851); + END_STATE(); + case 672: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(617); + END_STATE(); + case 673: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(852); + END_STATE(); + case 674: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(684); + END_STATE(); + case 675: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(854); + END_STATE(); + case 676: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(529); + END_STATE(); + case 677: if (lookahead == 'R' || lookahead == 'r') ADVANCE(456); END_STATE(); + case 678: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(427); + END_STATE(); + case 679: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(440); + END_STATE(); + case 680: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(173); + END_STATE(); + case 681: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(555); + END_STATE(); + case 682: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(610); + END_STATE(); + case 683: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(615); + END_STATE(); + case 684: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(356); + END_STATE(); + case 685: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(749); + END_STATE(); + case 686: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(658); + END_STATE(); + case 687: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(560); + END_STATE(); + case 688: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(267); + END_STATE(); + case 689: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(599); + END_STATE(); + case 690: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(268); + END_STATE(); + case 691: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(761); + END_STATE(); + case 692: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(277); + END_STATE(); + case 693: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(291); + END_STATE(); + case 694: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(330); + END_STATE(); + case 695: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(729); + END_STATE(); + case 696: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(619); + END_STATE(); + case 697: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(444); + END_STATE(); + case 698: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(150); + END_STATE(); + case 699: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(620); + END_STATE(); case 700: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(359); + lookahead == 'r') ADVANCE(438); END_STATE(); case 701: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(361); + lookahead == 'r') ADVANCE(733); END_STATE(); case 702: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(700); + lookahead == 'r') ADVANCE(709); END_STATE(); case 703: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(178); + lookahead == 'r') ADVANCE(154); END_STATE(); case 704: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(701); + lookahead == 'r') ADVANCE(366); END_STATE(); case 705: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(365); + lookahead == 'r') ADVANCE(460); END_STATE(); case 706: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(868); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(362); END_STATE(); case 707: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1058); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(364); END_STATE(); case 708: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1091); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(706); END_STATE(); case 709: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(887); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(180); END_STATE(); case 710: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(964); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(707); END_STATE(); case 711: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(948); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(368); END_STATE(); case 712: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1016); + lookahead == 's') ADVANCE(874); END_STATE(); case 713: if (lookahead == 'S' || - lookahead == 's') ADVANCE(965); + lookahead == 's') ADVANCE(1064); END_STATE(); case 714: if (lookahead == 'S' || - lookahead == 's') ADVANCE(967); + lookahead == 's') ADVANCE(1097); END_STATE(); case 715: if (lookahead == 'S' || - lookahead == 's') ADVANCE(966); + lookahead == 's') ADVANCE(893); END_STATE(); case 716: if (lookahead == 'S' || - lookahead == 's') ADVANCE(920); + lookahead == 's') ADVANCE(970); END_STATE(); case 717: if (lookahead == 'S' || - lookahead == 's') ADVANCE(250); + lookahead == 's') ADVANCE(954); END_STATE(); case 718: if (lookahead == 'S' || - lookahead == 's') ADVANCE(196); + lookahead == 's') ADVANCE(1022); END_STATE(); case 719: if (lookahead == 'S' || - lookahead == 's') ADVANCE(707); + lookahead == 's') ADVANCE(971); END_STATE(); case 720: if (lookahead == 'S' || - lookahead == 's') ADVANCE(782); + lookahead == 's') ADVANCE(973); END_STATE(); case 721: if (lookahead == 'S' || - lookahead == 's') ADVANCE(783); + lookahead == 's') ADVANCE(972); END_STATE(); case 722: if (lookahead == 'S' || - lookahead == 's') ADVANCE(769); + lookahead == 's') ADVANCE(926); END_STATE(); case 723: if (lookahead == 'S' || - lookahead == 's') ADVANCE(739); + lookahead == 's') ADVANCE(253); END_STATE(); case 724: if (lookahead == 'S' || - lookahead == 's') ADVANCE(260); + lookahead == 's') ADVANCE(198); END_STATE(); case 725: if (lookahead == 'S' || - lookahead == 's') ADVANCE(337); + lookahead == 's') ADVANCE(713); END_STATE(); case 726: if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(788); END_STATE(); case 727: if (lookahead == 'S' || - lookahead == 's') ADVANCE(277); + lookahead == 's') ADVANCE(789); END_STATE(); case 728: if (lookahead == 'S' || - lookahead == 's') ADVANCE(429); + lookahead == 's') ADVANCE(775); END_STATE(); case 729: if (lookahead == 'S' || - lookahead == 's') ADVANCE(785); + lookahead == 's') ADVANCE(745); END_STATE(); case 730: if (lookahead == 'S' || - lookahead == 's') ADVANCE(341); + lookahead == 's') ADVANCE(263); END_STATE(); case 731: if (lookahead == 'S' || - lookahead == 's') ADVANCE(342); + lookahead == 's') ADVANCE(340); END_STATE(); case 732: if (lookahead == 'S' || - lookahead == 's') ADVANCE(450); + lookahead == 's') ADVANCE(265); END_STATE(); case 733: if (lookahead == 'S' || - lookahead == 's') ADVANCE(790); + lookahead == 's') ADVANCE(280); END_STATE(); case 734: if (lookahead == 'S' || - lookahead == 's') ADVANCE(798); + lookahead == 's') ADVANCE(433); END_STATE(); case 735: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1012); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(791); END_STATE(); case 736: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(933); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(344); END_STATE(); case 737: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(922); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(345); END_STATE(); case 738: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1064); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(453); END_STATE(); case 739: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(921); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(796); END_STATE(); case 740: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(956); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(804); END_STATE(); case 741: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1049); + lookahead == 't') ADVANCE(1018); END_STATE(); case 742: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1067); + lookahead == 't') ADVANCE(939); END_STATE(); case 743: if (lookahead == 'T' || - lookahead == 't') ADVANCE(986); + lookahead == 't') ADVANCE(928); END_STATE(); case 744: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1); + lookahead == 't') ADVANCE(1070); END_STATE(); case 745: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1051); + lookahead == 't') ADVANCE(927); END_STATE(); case 746: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1042); + lookahead == 't') ADVANCE(962); END_STATE(); case 747: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1045); + lookahead == 't') ADVANCE(1055); END_STATE(); case 748: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1015); + lookahead == 't') ADVANCE(1073); END_STATE(); case 749: if (lookahead == 'T' || - lookahead == 't') ADVANCE(885); + lookahead == 't') ADVANCE(992); END_STATE(); case 750: if (lookahead == 'T' || - lookahead == 't') ADVANCE(890); + lookahead == 't') ADVANCE(1); END_STATE(); case 751: if (lookahead == 'T' || - lookahead == 't') ADVANCE(865); + lookahead == 't') ADVANCE(1057); END_STATE(); case 752: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1006); + lookahead == 't') ADVANCE(1048); END_STATE(); case 753: if (lookahead == 'T' || - lookahead == 't') ADVANCE(894); + lookahead == 't') ADVANCE(1051); END_STATE(); case 754: if (lookahead == 'T' || - lookahead == 't') ADVANCE(931); + lookahead == 't') ADVANCE(1021); END_STATE(); case 755: if (lookahead == 'T' || - lookahead == 't') ADVANCE(881); + lookahead == 't') ADVANCE(891); END_STATE(); case 756: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1014); + lookahead == 't') ADVANCE(896); END_STATE(); case 757: if (lookahead == 'T' || - lookahead == 't') ADVANCE(982); + lookahead == 't') ADVANCE(871); END_STATE(); case 758: if (lookahead == 'T' || - lookahead == 't') ADVANCE(415); + lookahead == 't') ADVANCE(1012); END_STATE(); case 759: if (lookahead == 'T' || - lookahead == 't') ADVANCE(409); + lookahead == 't') ADVANCE(900); END_STATE(); case 760: if (lookahead == 'T' || - lookahead == 't') ADVANCE(838); + lookahead == 't') ADVANCE(937); END_STATE(); case 761: if (lookahead == 'T' || - lookahead == 't') ADVANCE(2); + lookahead == 't') ADVANCE(887); END_STATE(); case 762: if (lookahead == 'T' || - lookahead == 't') ADVANCE(445); + lookahead == 't') ADVANCE(1020); END_STATE(); case 763: if (lookahead == 'T' || - lookahead == 't') ADVANCE(130); + lookahead == 't') ADVANCE(988); END_STATE(); case 764: if (lookahead == 'T' || - lookahead == 't') ADVANCE(130); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1139); + lookahead == 't') ADVANCE(419); END_STATE(); case 765: if (lookahead == 'T' || - lookahead == 't') ADVANCE(403); + lookahead == 't') ADVANCE(412); END_STATE(); case 766: if (lookahead == 'T' || - lookahead == 't') ADVANCE(818); + lookahead == 't') ADVANCE(844); END_STATE(); case 767: if (lookahead == 'T' || - lookahead == 't') ADVANCE(847); + lookahead == 't') ADVANCE(2); END_STATE(); case 768: if (lookahead == 'T' || - lookahead == 't') ADVANCE(404); + lookahead == 't') ADVANCE(449); END_STATE(); case 769: if (lookahead == 'T' || - lookahead == 't') ADVANCE(708); + lookahead == 't') ADVANCE(131); END_STATE(); case 770: if (lookahead == 'T' || - lookahead == 't') ADVANCE(176); + lookahead == 't') ADVANCE(131); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1147); END_STATE(); case 771: if (lookahead == 'T' || - lookahead == 't') ADVANCE(492); + lookahead == 't') ADVANCE(406); END_STATE(); case 772: if (lookahead == 'T' || - lookahead == 't') ADVANCE(266); + lookahead == 't') ADVANCE(824); END_STATE(); case 773: if (lookahead == 'T' || - lookahead == 't') ADVANCE(267); + lookahead == 't') ADVANCE(853); END_STATE(); case 774: if (lookahead == 'T' || - lookahead == 't') ADVANCE(268); + lookahead == 't') ADVANCE(407); END_STATE(); case 775: if (lookahead == 'T' || - lookahead == 't') ADVANCE(596); + lookahead == 't') ADVANCE(714); END_STATE(); case 776: if (lookahead == 'T' || - lookahead == 't') ADVANCE(272); + lookahead == 't') ADVANCE(177); END_STATE(); case 777: if (lookahead == 'T' || - lookahead == 't') ADVANCE(275); + lookahead == 't') ADVANCE(442); END_STATE(); case 778: if (lookahead == 'T' || - lookahead == 't') ADVANCE(284); + lookahead == 't') ADVANCE(496); END_STATE(); case 779: if (lookahead == 'T' || - lookahead == 't') ADVANCE(286); + lookahead == 't') ADVANCE(269); END_STATE(); case 780: if (lookahead == 'T' || - lookahead == 't') ADVANCE(317); + lookahead == 't') ADVANCE(270); END_STATE(); case 781: if (lookahead == 'T' || - lookahead == 't') ADVANCE(438); + lookahead == 't') ADVANCE(271); END_STATE(); case 782: if (lookahead == 'T' || - lookahead == 't') ADVANCE(699); + lookahead == 't') ADVANCE(601); END_STATE(); case 783: if (lookahead == 'T' || - lookahead == 't') ADVANCE(675); + lookahead == 't') ADVANCE(275); END_STATE(); case 784: if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); + lookahead == 't') ADVANCE(278); END_STATE(); case 785: if (lookahead == 'T' || - lookahead == 't') ADVANCE(435); + lookahead == 't') ADVANCE(287); END_STATE(); case 786: if (lookahead == 'T' || - lookahead == 't') ADVANCE(454); + lookahead == 't') ADVANCE(289); END_STATE(); case 787: if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); + lookahead == 't') ADVANCE(320); END_STATE(); case 788: if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(832); + lookahead == 't') ADVANCE(705); END_STATE(); case 789: if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); + lookahead == 't') ADVANCE(680); END_STATE(); case 790: if (lookahead == 'T' || - lookahead == 't') ADVANCE(439); + lookahead == 't') ADVANCE(323); END_STATE(); case 791: if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); + lookahead == 't') ADVANCE(439); END_STATE(); case 792: if (lookahead == 'T' || - lookahead == 't') ADVANCE(852); + lookahead == 't') ADVANCE(459); END_STATE(); case 793: if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); + lookahead == 't') ADVANCE(326); END_STATE(); case 794: if (lookahead == 'T' || - lookahead == 't') ADVANCE(453); + lookahead == 't') ADVANCE(326); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(838); END_STATE(); case 795: if (lookahead == 'T' || - lookahead == 't') ADVANCE(458); + lookahead == 't') ADVANCE(819); END_STATE(); case 796: if (lookahead == 'T' || - lookahead == 't') ADVANCE(460); + lookahead == 't') ADVANCE(443); END_STATE(); case 797: if (lookahead == 'T' || - lookahead == 't') ADVANCE(4); + lookahead == 't') ADVANCE(335); END_STATE(); case 798: if (lookahead == 'T' || - lookahead == 't') ADVANCE(463); + lookahead == 't') ADVANCE(858); END_STATE(); case 799: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(311); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(463); END_STATE(); case 800: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(639); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(457); END_STATE(); case 801: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(533); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(462); END_STATE(); case 802: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(646); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(464); END_STATE(); case 803: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(495); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4); END_STATE(); case 804: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(504); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(467); END_STATE(); case 805: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(770); + lookahead == 'u') ADVANCE(314); END_STATE(); case 806: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(676); + lookahead == 'u') ADVANCE(644); END_STATE(); case 807: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(692); + lookahead == 'u') ADVANCE(538); END_STATE(); case 808: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(486); + lookahead == 'u') ADVANCE(651); END_STATE(); case 809: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(588); + lookahead == 'u') ADVANCE(499); END_STATE(); case 810: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(314); + lookahead == 'u') ADVANCE(508); END_STATE(); case 811: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(682); + lookahead == 'u') ADVANCE(776); END_STATE(); case 812: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(271); + lookahead == 'u') ADVANCE(681); END_STATE(); case 813: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(684); + lookahead == 'u') ADVANCE(697); END_STATE(); case 814: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(568); + lookahead == 'u') ADVANCE(490); END_STATE(); case 815: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(281); + lookahead == 'u') ADVANCE(593); END_STATE(); case 816: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(282); + lookahead == 'u') ADVANCE(317); END_STATE(); case 817: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(786); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(898); + lookahead == 'u') ADVANCE(687); END_STATE(); case 818: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(673); + lookahead == 'u') ADVANCE(274); END_STATE(); case 819: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(167); + lookahead == 'u') ADVANCE(689); END_STATE(); case 820: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(239); + lookahead == 'u') ADVANCE(573); END_STATE(); case 821: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(331); + lookahead == 'u') ADVANCE(284); END_STATE(); case 822: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(499); + lookahead == 'u') ADVANCE(285); END_STATE(); case 823: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(774); + lookahead == 'u') ADVANCE(792); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(904); END_STATE(); case 824: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(774); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(177); + lookahead == 'u') ADVANCE(698); END_STATE(); case 825: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(688); + lookahead == 'u') ADVANCE(168); END_STATE(); case 826: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(501); + lookahead == 'u') ADVANCE(242); END_STATE(); case 827: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(730); + lookahead == 'u') ADVANCE(334); END_STATE(); case 828: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(777); + lookahead == 'u') ADVANCE(503); END_STATE(); case 829: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(731); + lookahead == 'u') ADVANCE(781); END_STATE(); case 830: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(364); + lookahead == 'u') ADVANCE(781); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(176); END_STATE(); case 831: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(702); + lookahead == 'u') ADVANCE(693); END_STATE(); case 832: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(175); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(505); END_STATE(); case 833: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(433); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(736); END_STATE(); case 834: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(177); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(784); END_STATE(); case 835: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(898); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(737); END_STATE(); case 836: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(897); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(367); END_STATE(); case 837: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(792); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(708); END_STATE(); case 838: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(358); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(148); END_STATE(); case 839: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(913); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(437); END_STATE(); case 840: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(832); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(176); END_STATE(); case 841: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(306); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(904); END_STATE(); case 842: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1139); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(903); END_STATE(); case 843: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(945); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(798); END_STATE(); case 844: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1116); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(361); END_STATE(); case 845: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1038); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(919); END_STATE(); case 846: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(943); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(838); END_STATE(); case 847: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1072); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(309); END_STATE(); case 848: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1089); + lookahead == 'y') ADVANCE(1147); END_STATE(); case 849: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(914); + lookahead == 'y') ADVANCE(951); END_STATE(); case 850: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(938); + lookahead == 'y') ADVANCE(1124); END_STATE(); case 851: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(642); + lookahead == 'y') ADVANCE(1044); END_STATE(); case 852: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(643); + lookahead == 'y') ADVANCE(949); END_STATE(); case 853: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(319); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1078); END_STATE(); case 854: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(183); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); END_STATE(); case 855: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1122); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(920); END_STATE(); case 856: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(944); + END_STATE(); + case 857: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(647); + END_STATE(); + case 858: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(648); + END_STATE(); + case 859: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(322); + END_STATE(); + case 860: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(185); + END_STATE(); + case 861: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); + END_STATE(); + case 862: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 857: - if (eof) ADVANCE(858); - if (lookahead == '$') ADVANCE(1082); - if (lookahead == '%') ADVANCE(662); - if (lookahead == '\'') ADVANCE(1098); - if (lookahead == '(') ADVANCE(876); - if (lookahead == ')') ADVANCE(877); - if (lookahead == ',') ADVANCE(863); + case 863: + if (eof) ADVANCE(864); + if (lookahead == '$') ADVANCE(1088); + if (lookahead == '%') ADVANCE(668); + if (lookahead == '\'') ADVANCE(1106); + if (lookahead == '(') ADVANCE(882); + if (lookahead == ')') ADVANCE(883); + if (lookahead == ',') ADVANCE(869); if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(859); - if (lookahead == '[') ADVANCE(1092); - if (lookahead == '\\') ADVANCE(980); + if (lookahead == ';') ADVANCE(865); + if (lookahead == '[') ADVANCE(1098); + if (lookahead == '\\') ADVANCE(986); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); + lookahead == 'a') ADVANCE(230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(351); + lookahead == 'b') ADVANCE(354); if (lookahead == 'C' || lookahead == 'c') ADVANCE(120); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(290); + lookahead == 'd') ADVANCE(293); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(841); + lookahead == 'e') ADVANCE(847); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(611); + lookahead == 'f') ADVANCE(616); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(661); + lookahead == 'g') ADVANCE(667); if (lookahead == 'H' || lookahead == 'h') ADVANCE(124); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(530); + lookahead == 'i') ADVANCE(535); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(606); + lookahead == 'j') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(247); + lookahead == 'l') ADVANCE(250); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(136); + lookahead == 'm') ADVANCE(135); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(140); + lookahead == 'n') ADVANCE(139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(374); + lookahead == 'o') ADVANCE(377); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(674); + lookahead == 'p') ADVANCE(679); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(291); + lookahead == 'r') ADVANCE(294); if (lookahead == 'S' || - lookahead == 's') ADVANCE(292); + lookahead == 's') ADVANCE(295); if (lookahead == 'T' || - lookahead == 't') ADVANCE(181); + lookahead == 't') ADVANCE(183); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(576); + lookahead == 'u') ADVANCE(581); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(134); + lookahead == 'v') ADVANCE(179); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(408); + lookahead == 'w') ADVANCE(411); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -12559,1171 +12653,1182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(857) - END_STATE(); - case 858: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 859: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 860: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); - END_STATE(); - case 861: - 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_drop_type_statement_token2); - END_STATE(); - case 863: - ACCEPT_TOKEN(anon_sym_COMMA); + lookahead == 65279) SKIP(863) END_STATE(); case 864: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token3); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 865: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token4); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 866: - ACCEPT_TOKEN(aux_sym_update_statement_token1); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); END_STATE(); case 867: - ACCEPT_TOKEN(aux_sym_update_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 868: - ACCEPT_TOKEN(aux_sym_update_statement_token2); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token2); END_STATE(); case 869: - 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); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 870: - ACCEPT_TOKEN(aux_sym_update_statement_token3); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token3); END_STATE(); case 871: - 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(1601); + ACCEPT_TOKEN(aux_sym_drop_type_statement_token4); END_STATE(); case 872: - ACCEPT_TOKEN(aux_sym_update_statement_token4); + ACCEPT_TOKEN(aux_sym_update_statement_token1); END_STATE(); case 873: - ACCEPT_TOKEN(aux_sym_update_statement_token4); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_update_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 874: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); + ACCEPT_TOKEN(aux_sym_update_statement_token2); END_STATE(); case 875: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_update_statement_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 876: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_update_statement_token3); END_STATE(); case 877: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_update_statement_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 878: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + ACCEPT_TOKEN(aux_sym_update_statement_token4); END_STATE(); case 879: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_update_statement_token4); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 880: - ACCEPT_TOKEN(aux_sym_create_type_statement_token2); + ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); END_STATE(); case 881: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); + ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 882: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 883: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 884: - 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(1601); + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); END_STATE(); case 885: - ACCEPT_TOKEN(aux_sym_insert_items_token1); + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 886: - ACCEPT_TOKEN(aux_sym_insert_items_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_create_type_statement_token2); END_STATE(); case 887: - ACCEPT_TOKEN(aux_sym_insert_items_token2); + ACCEPT_TOKEN(aux_sym_insert_statement_token1); END_STATE(); case 888: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + ACCEPT_TOKEN(aux_sym_insert_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 889: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_insert_statement_token2); END_STATE(); case 890: - ACCEPT_TOKEN(aux_sym_insert_conflict_token2); + ACCEPT_TOKEN(aux_sym_insert_statement_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 891: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + ACCEPT_TOKEN(aux_sym_insert_items_token1); END_STATE(); case 892: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_insert_items_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 893: - ACCEPT_TOKEN(aux_sym_insert_conflict_token4); + ACCEPT_TOKEN(aux_sym_insert_items_token2); END_STATE(); case 894: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); END_STATE(); case 895: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 896: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(aux_sym_insert_conflict_token2); END_STATE(); case 897: - ACCEPT_TOKEN(aux_sym_update_set_token1); + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); END_STATE(); case 898: - ACCEPT_TOKEN(aux_sym_update_set_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1053); + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 899: - ACCEPT_TOKEN(aux_sym_returning_token1); + ACCEPT_TOKEN(aux_sym_insert_conflict_token4); END_STATE(); case 900: - 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); + ACCEPT_TOKEN(aux_sym_conflict_target_token1); END_STATE(); case 901: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); + ACCEPT_TOKEN(aux_sym_conflict_target_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 902: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 903: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + ACCEPT_TOKEN(aux_sym_update_set_token1); END_STATE(); case 904: - 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); + ACCEPT_TOKEN(aux_sym_update_set_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1059); END_STATE(); case 905: - ACCEPT_TOKEN(aux_sym_schema_role_token1); + ACCEPT_TOKEN(aux_sym_returning_token1); END_STATE(); case 906: - ACCEPT_TOKEN(aux_sym_schema_role_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_returning_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 907: - ACCEPT_TOKEN(aux_sym_schema_role_token2); + ACCEPT_TOKEN(aux_sym_create_table_statement_token1); END_STATE(); case 908: - ACCEPT_TOKEN(aux_sym_schema_role_token2); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_create_table_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 909: - ACCEPT_TOKEN(aux_sym_schema_role_token3); + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); END_STATE(); case 910: - ACCEPT_TOKEN(aux_sym_schema_role_token3); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 911: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + ACCEPT_TOKEN(aux_sym_schema_role_token1); END_STATE(); case 912: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_schema_role_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 913: - ACCEPT_TOKEN(aux_sym_create_index_statement_token2); + ACCEPT_TOKEN(aux_sym_schema_role_token2); END_STATE(); case 914: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + ACCEPT_TOKEN(aux_sym_schema_role_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 915: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_schema_role_token3); END_STATE(); case 916: - ACCEPT_TOKEN(aux_sym_index_using_token1); + ACCEPT_TOKEN(aux_sym_schema_role_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 917: - ACCEPT_TOKEN(aux_sym_index_using_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); END_STATE(); case 918: - ACCEPT_TOKEN(aux_sym_index_col_dir_token1); + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 919: - ACCEPT_TOKEN(aux_sym_index_col_dir_token2); + ACCEPT_TOKEN(aux_sym_create_index_statement_token2); END_STATE(); case 920: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); END_STATE(); case 921: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 922: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); + ACCEPT_TOKEN(aux_sym_index_using_token1); END_STATE(); case 923: - ACCEPT_TOKEN(aux_sym_index_includes_token1); + ACCEPT_TOKEN(aux_sym_index_using_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 924: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); + ACCEPT_TOKEN(aux_sym_index_col_dir_token1); END_STATE(); case 925: - 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); + ACCEPT_TOKEN(aux_sym_index_col_dir_token2); END_STATE(); case 926: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); END_STATE(); case 927: - 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); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); END_STATE(); case 928: - ACCEPT_TOKEN(aux_sym_alter_table_action_token1); + ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); END_STATE(); case 929: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + ACCEPT_TOKEN(aux_sym_index_includes_token1); END_STATE(); case 930: - 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(1601); + ACCEPT_TOKEN(aux_sym_delete_statement_token1); END_STATE(); case 931: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + ACCEPT_TOKEN(aux_sym_delete_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 932: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); END_STATE(); case 933: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(822); + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 934: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + ACCEPT_TOKEN(aux_sym_alter_table_action_token1); END_STATE(); case 935: - 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); + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); END_STATE(); case 936: - ACCEPT_TOKEN(aux_sym_alter_column_action_token3); + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 937: - ACCEPT_TOKEN(aux_sym_constraint_when_token1); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); END_STATE(); case 938: - ACCEPT_TOKEN(aux_sym_constraint_when_token2); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 939: - ACCEPT_TOKEN(aux_sym_constraint_when_token3); + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(828); END_STATE(); case 940: - ACCEPT_TOKEN(aux_sym_constraint_when_token4); + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); END_STATE(); case 941: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 942: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_alter_column_action_token3); END_STATE(); case 943: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + ACCEPT_TOKEN(aux_sym_constraint_when_token1); END_STATE(); case 944: - 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(1601); + ACCEPT_TOKEN(aux_sym_constraint_when_token2); END_STATE(); case 945: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); + ACCEPT_TOKEN(aux_sym_constraint_when_token3); END_STATE(); case 946: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + ACCEPT_TOKEN(aux_sym_constraint_when_token4); END_STATE(); case 947: - 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); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); END_STATE(); case 948: - ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 949: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); END_STATE(); case 950: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(252); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(933); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 951: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(931); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); END_STATE(); case 952: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); END_STATE(); case 953: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 954: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); END_STATE(); case 955: - 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); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); END_STATE(); case 956: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(255); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(939); END_STATE(); case 957: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(937); END_STATE(); case 958: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); + ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); END_STATE(); case 959: - 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); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); END_STATE(); case 960: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); END_STATE(); case 961: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 962: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + ACCEPT_TOKEN(aux_sym_grant_statement_token1); END_STATE(); case 963: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_grant_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 964: - ACCEPT_TOKEN(aux_sym_grant_privileges_token2); + ACCEPT_TOKEN(aux_sym_grant_roles_token1); END_STATE(); case 965: - ACCEPT_TOKEN(aux_sym_grant_targets_token1); + ACCEPT_TOKEN(aux_sym_grant_roles_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 966: - ACCEPT_TOKEN(aux_sym_grant_targets_token2); + ACCEPT_TOKEN(aux_sym_grant_roles_token2); END_STATE(); case 967: - ACCEPT_TOKEN(aux_sym_grant_targets_token3); + ACCEPT_TOKEN(aux_sym_grant_roles_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 968: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); END_STATE(); case 969: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1440); + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 970: - 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); + ACCEPT_TOKEN(aux_sym_grant_privileges_token2); END_STATE(); case 971: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(322); + ACCEPT_TOKEN(aux_sym_grant_targets_token1); END_STATE(); case 972: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(322); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(602); + ACCEPT_TOKEN(aux_sym_grant_targets_token2); END_STATE(); case 973: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(602); + ACCEPT_TOKEN(aux_sym_grant_targets_token3); END_STATE(); case 974: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); END_STATE(); case 975: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 976: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 977: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(325); END_STATE(); case 978: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(325); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(607); END_STATE(); case 979: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(607); END_STATE(); case 980: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(aux_sym_grant_targets_token5); END_STATE(); case 981: - ACCEPT_TOKEN(aux_sym_psql_statement_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(981); + ACCEPT_TOKEN(aux_sym_grant_targets_token5); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 982: - ACCEPT_TOKEN(aux_sym_sequence_increment_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token6); END_STATE(); case 983: - ACCEPT_TOKEN(aux_sym_sequence_increment_token2); + ACCEPT_TOKEN(aux_sym_grant_targets_token6); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 984: - ACCEPT_TOKEN(aux_sym_sequence_min_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token7); END_STATE(); case 985: - ACCEPT_TOKEN(aux_sym_sequence_max_token1); + ACCEPT_TOKEN(aux_sym_grant_targets_token7); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 986: - ACCEPT_TOKEN(aux_sym_sequence_start_token1); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 987: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); + ACCEPT_TOKEN(aux_sym_psql_statement_token1); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(987); END_STATE(); case 988: - 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); + ACCEPT_TOKEN(aux_sym_sequence_increment_token1); END_STATE(); case 989: - ACCEPT_TOKEN(aux_sym_sequence_cache_token1); + ACCEPT_TOKEN(aux_sym_sequence_increment_token2); END_STATE(); case 990: - ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); + ACCEPT_TOKEN(aux_sym_sequence_min_token1); END_STATE(); case 991: - ACCEPT_TOKEN(aux_sym_sequence_owned_token1); + ACCEPT_TOKEN(aux_sym_sequence_max_token1); END_STATE(); case 992: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); + ACCEPT_TOKEN(aux_sym_sequence_start_token1); END_STATE(); case 993: - 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); + ACCEPT_TOKEN(aux_sym_sequence_start_token2); END_STATE(); case 994: - ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); + ACCEPT_TOKEN(aux_sym_sequence_start_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 995: - ACCEPT_TOKEN(aux_sym_trigger_when_token1); + ACCEPT_TOKEN(aux_sym_sequence_cache_token1); END_STATE(); case 996: - ACCEPT_TOKEN(aux_sym_trigger_when_token2); + ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); END_STATE(); case 997: - ACCEPT_TOKEN(aux_sym_trigger_when_token3); + ACCEPT_TOKEN(aux_sym_sequence_owned_token1); END_STATE(); case 998: - ACCEPT_TOKEN(aux_sym_trigger_event_token1); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); END_STATE(); case 999: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1000: - ACCEPT_TOKEN(aux_sym_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(1601); + ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); END_STATE(); case 1001: - 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); + ACCEPT_TOKEN(aux_sym_trigger_when_token1); END_STATE(); case 1002: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(328); + ACCEPT_TOKEN(aux_sym_trigger_when_token2); END_STATE(); case 1003: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); + ACCEPT_TOKEN(aux_sym_trigger_when_token3); END_STATE(); case 1004: - 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); + ACCEPT_TOKEN(aux_sym_trigger_event_token1); END_STATE(); case 1005: - ACCEPT_TOKEN(aux_sym_trigger_scope_token2); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); END_STATE(); case 1006: - ACCEPT_TOKEN(aux_sym_trigger_scope_token3); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1007: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1008: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(331); END_STATE(); case 1009: - ACCEPT_TOKEN(aux_sym_trigger_cond_token1); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); END_STATE(); case 1010: - ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1011: - ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_trigger_scope_token2); END_STATE(); case 1012: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); + ACCEPT_TOKEN(aux_sym_trigger_scope_token3); END_STATE(); case 1013: - 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); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); END_STATE(); case 1014: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1015: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); - if (lookahead == '_') ADVANCE(827); + ACCEPT_TOKEN(aux_sym_trigger_cond_token1); END_STATE(); case 1016: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token3); + ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); END_STATE(); case 1017: - ACCEPT_TOKEN(aux_sym_for_statement_token1); + ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1018: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); END_STATE(); case 1019: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1020: - ACCEPT_TOKEN(aux_sym_for_statement_token2); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); END_STATE(); case 1021: - 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(1601); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); + if (lookahead == '_') ADVANCE(833); END_STATE(); case 1022: - ACCEPT_TOKEN(aux_sym_for_statement_token3); + ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token3); END_STATE(); case 1023: - 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(1601); + ACCEPT_TOKEN(aux_sym_for_statement_token1); END_STATE(); case 1024: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1025: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1026: - ACCEPT_TOKEN(aux_sym_if_statement_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token2); END_STATE(); case 1027: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_for_statement_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1028: - ACCEPT_TOKEN(aux_sym_if_statement_token2); + ACCEPT_TOKEN(aux_sym_for_statement_token3); END_STATE(); case 1029: - ACCEPT_TOKEN(aux_sym_if_statement_token3); + ACCEPT_TOKEN(aux_sym_for_statement_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1030: - ACCEPT_TOKEN(aux_sym_if_statement_token3); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); END_STATE(); case 1031: - ACCEPT_TOKEN(aux_sym_if_statement_token4); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1032: - ACCEPT_TOKEN(aux_sym_if_statement_token4); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_if_statement_token1); END_STATE(); case 1033: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1313); + ACCEPT_TOKEN(aux_sym_if_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1034: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(368); + ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); case 1035: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(aux_sym_if_statement_token3); END_STATE(); case 1036: - ACCEPT_TOKEN(aux_sym_return_statement_token1); + ACCEPT_TOKEN(aux_sym_if_statement_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1037: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_if_statement_token4); END_STATE(); case 1038: - ACCEPT_TOKEN(aux_sym_return_statement_token2); + ACCEPT_TOKEN(aux_sym_if_statement_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1039: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1040: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(371); END_STATE(); case 1041: - 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(1601); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 1042: - ACCEPT_TOKEN(aux_sym_select_statement_token1); + ACCEPT_TOKEN(aux_sym_return_statement_token1); END_STATE(); case 1043: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_return_statement_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1044: - ACCEPT_TOKEN(aux_sym_with_query_item_token1); + ACCEPT_TOKEN(aux_sym_return_statement_token2); END_STATE(); case 1045: - ACCEPT_TOKEN(aux_sym_into_token1); + ACCEPT_TOKEN(aux_sym_return_statement_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1046: - ACCEPT_TOKEN(aux_sym_into_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); END_STATE(); case 1047: - ACCEPT_TOKEN(aux_sym_select_having_token1); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1048: - ACCEPT_TOKEN(aux_sym_select_having_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_select_statement_token1); END_STATE(); case 1049: - ACCEPT_TOKEN(aux_sym_select_limit_token1); + ACCEPT_TOKEN(aux_sym_select_statement_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1050: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_with_query_item_token1); END_STATE(); case 1051: - ACCEPT_TOKEN(aux_sym_select_offset_token1); + ACCEPT_TOKEN(aux_sym_into_token1); END_STATE(); case 1052: - ACCEPT_TOKEN(aux_sym_select_offset_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_into_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1053: - ACCEPT_TOKEN(aux_sym_select_offset_token2); + ACCEPT_TOKEN(aux_sym_select_having_token1); END_STATE(); case 1054: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); + ACCEPT_TOKEN(aux_sym_select_having_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1055: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_select_limit_token1); END_STATE(); case 1056: - ACCEPT_TOKEN(aux_sym_join_item_token1); + ACCEPT_TOKEN(aux_sym_select_limit_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1057: - ACCEPT_TOKEN(aux_sym_join_item_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_select_offset_token1); END_STATE(); case 1058: - ACCEPT_TOKEN(aux_sym_join_item_token2); + ACCEPT_TOKEN(aux_sym_select_offset_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1059: - ACCEPT_TOKEN(aux_sym_join_item_token2); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_select_offset_token2); END_STATE(); case 1060: - ACCEPT_TOKEN(aux_sym_join_item_token3); + ACCEPT_TOKEN(aux_sym_select_order_by_token1); END_STATE(); case 1061: - ACCEPT_TOKEN(aux_sym_join_item_token3); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_select_order_by_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1062: - ACCEPT_TOKEN(aux_sym_join_type_token1); + ACCEPT_TOKEN(aux_sym_join_item_token1); END_STATE(); case 1063: - ACCEPT_TOKEN(aux_sym_join_type_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_join_item_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1064: - ACCEPT_TOKEN(aux_sym_join_type_token2); + ACCEPT_TOKEN(aux_sym_join_item_token2); END_STATE(); case 1065: - ACCEPT_TOKEN(aux_sym_join_type_token2); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_join_item_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1066: - ACCEPT_TOKEN(aux_sym_join_type_token3); + ACCEPT_TOKEN(aux_sym_join_item_token3); END_STATE(); case 1067: - ACCEPT_TOKEN(aux_sym_join_type_token4); + ACCEPT_TOKEN(aux_sym_join_item_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1068: - ACCEPT_TOKEN(aux_sym_join_type_token4); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_join_type_token1); END_STATE(); case 1069: - ACCEPT_TOKEN(aux_sym_join_type_token5); + ACCEPT_TOKEN(aux_sym_join_type_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1070: - ACCEPT_TOKEN(aux_sym_join_type_token5); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_join_type_token2); END_STATE(); case 1071: - ACCEPT_TOKEN(aux_sym_create_function_statement_token1); + ACCEPT_TOKEN(aux_sym_join_type_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1072: - ACCEPT_TOKEN(aux_sym_function_run_as_token1); + ACCEPT_TOKEN(aux_sym_join_type_token3); END_STATE(); case 1073: - ACCEPT_TOKEN(aux_sym_function_run_as_token2); + ACCEPT_TOKEN(aux_sym_join_type_token4); END_STATE(); case 1074: - ACCEPT_TOKEN(aux_sym_function_run_as_token3); + ACCEPT_TOKEN(aux_sym_join_type_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1075: - ACCEPT_TOKEN(aux_sym_function_return_token1); + ACCEPT_TOKEN(aux_sym_join_type_token5); END_STATE(); case 1076: - ACCEPT_TOKEN(aux_sym_return_setof_token1); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_join_type_token5); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1077: - ACCEPT_TOKEN(aux_sym_function_volatility_token1); + ACCEPT_TOKEN(aux_sym_create_function_statement_token1); END_STATE(); case 1078: - ACCEPT_TOKEN(aux_sym_function_volatility_token2); + ACCEPT_TOKEN(aux_sym_function_run_as_token1); END_STATE(); case 1079: - ACCEPT_TOKEN(aux_sym_function_volatility_token3); + ACCEPT_TOKEN(aux_sym_function_run_as_token2); END_STATE(); case 1080: - ACCEPT_TOKEN(aux_sym_body_token1); + ACCEPT_TOKEN(aux_sym_function_run_as_token3); END_STATE(); case 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); + ACCEPT_TOKEN(aux_sym_function_return_token1); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(aux_sym_return_setof_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1083: - ACCEPT_TOKEN(aux_sym_declarations_token1); + ACCEPT_TOKEN(aux_sym_function_volatility_token1); END_STATE(); case 1084: - 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); + ACCEPT_TOKEN(aux_sym_function_volatility_token2); END_STATE(); case 1085: - ACCEPT_TOKEN(aux_sym_where_filter_token1); + ACCEPT_TOKEN(aux_sym_function_volatility_token3); END_STATE(); case 1086: - 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); + ACCEPT_TOKEN(aux_sym_body_token1); END_STATE(); case 1087: - ACCEPT_TOKEN(aux_sym_or_replace_token1); - END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_temporary_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(695); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_temporary_token2); - END_STATE(); - case 1090: - ACCEPT_TOKEN(sym_unlogged); - 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); + ACCEPT_TOKEN(aux_sym_body_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1088: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 1089: + ACCEPT_TOKEN(aux_sym_declarations_token1); + END_STATE(); + case 1090: + ACCEPT_TOKEN(aux_sym_declarations_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1091: + ACCEPT_TOKEN(aux_sym_where_filter_token1); + END_STATE(); + case 1092: + ACCEPT_TOKEN(aux_sym_where_filter_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1093: + ACCEPT_TOKEN(aux_sym_or_replace_token1); + END_STATE(); + case 1094: + ACCEPT_TOKEN(aux_sym_temporary_token1); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(703); + END_STATE(); + case 1095: + ACCEPT_TOKEN(aux_sym_temporary_token2); + END_STATE(); + case 1096: + ACCEPT_TOKEN(sym_unlogged); + END_STATE(); + case 1097: + ACCEPT_TOKEN(aux_sym_if_not_exists_token1); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1099: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(1100); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1100: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(aux_sym__type_token1); END_STATE(); case 1101: - ACCEPT_TOKEN(aux_sym_string_token2); + ACCEPT_TOKEN(aux_sym__type_token2); END_STATE(); case 1102: + ACCEPT_TOKEN(aux_sym_predefined_type_token1); + END_STATE(); + case 1103: + ACCEPT_TOKEN(aux_sym_predefined_type_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1104: + ACCEPT_TOKEN(aux_sym_predefined_type_token2); + END_STATE(); + case 1105: + ACCEPT_TOKEN(aux_sym_predefined_type_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1106: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 1107: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(1108); + END_STATE(); + case 1108: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 1109: + ACCEPT_TOKEN(aux_sym_string_token2); + END_STATE(); + case 1110: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead == '*') ADVANCE(81); END_STATE(); - case 1103: + case 1111: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1113); + if (lookahead == '-') ADVANCE(1121); END_STATE(); - case 1104: + case 1112: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1103); - if (lookahead == '/') ADVANCE(1102); + if (lookahead == '-') ADVANCE(1111); + if (lookahead == '/') ADVANCE(1110); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -13731,100 +13836,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1104); + lookahead == 65279) ADVANCE(1112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1101); - END_STATE(); - case 1105: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 1106: - 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(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(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(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(sym_comment); - if (lookahead == '$') ADVANCE(855); - if (lookahead == '%') ADVANCE(1121); - if (lookahead != 0) ADVANCE(1123); - END_STATE(); - case 1111: - 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(sym_comment); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1107); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1113); + lookahead != '\'') ADVANCE(1109); END_STATE(); case 1113: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1113); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1131); + if (lookahead == '$') ADVANCE(1120); + if (lookahead == '%') ADVANCE(1114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1117); + if (lookahead != 0) ADVANCE(1116); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1019); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1131); + if (lookahead == '$') ADVANCE(1120); + if (lookahead == '%') ADVANCE(1114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); + if (lookahead != 0) ADVANCE(1116); END_STATE(); case 1116: - ACCEPT_TOKEN(aux_sym_array_constructor_token1); + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1131); + if (lookahead == '$') ADVANCE(1120); + if (lookahead == '%') ADVANCE(1114); + if (lookahead != 0) ADVANCE(1116); END_STATE(); case 1117: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(1131); + if (lookahead == '$') ADVANCE(1119); + if (lookahead == '%') ADVANCE(1114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1117); + if (lookahead != 0) ADVANCE(1116); + END_STATE(); + case 1118: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead != 0) ADVANCE(1131); + END_STATE(); + case 1119: + ACCEPT_TOKEN(sym_comment); + if (lookahead == 'I' || + lookahead == 's') ADVANCE(1116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1121); + END_STATE(); + case 1120: + ACCEPT_TOKEN(sym_comment); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1121); + END_STATE(); + case 1121: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1121); + END_STATE(); + case 1122: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 1123: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1025); + END_STATE(); + case 1124: ACCEPT_TOKEN(aux_sym_array_constructor_token1); - if (lookahead == '.') ADVANCE(856); + END_STATE(); + case 1125: + ACCEPT_TOKEN(aux_sym_array_constructor_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1118: + case 1126: 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); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead == '*') ADVANCE(1136); + if (lookahead != 0) ADVANCE(1131); END_STATE(); - case 1119: + case 1127: 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 == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead == '-') ADVANCE(1128); + if (lookahead == '/') ADVANCE(1126); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -13832,4535 +13937,4595 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1119); - if (lookahead != 0) ADVANCE(1123); - END_STATE(); - case 1120: - 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(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(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(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(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(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(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(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); + lookahead == 65279) ADVANCE(1127); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1128: 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); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead == '-') ADVANCE(1116); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1129: ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(79); - if (lookahead == '%') ADVANCE(1126); - if (lookahead == '*') ADVANCE(1125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1129); - if (lookahead != 0) ADVANCE(1128); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1132); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1130: - ACCEPT_TOKEN(aux_sym_time_expression_token1); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1131: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(861); + if (lookahead == '%') ADVANCE(1129); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1132: - ACCEPT_TOKEN(aux_sym_time_expression_token2); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(469); + if (lookahead == '%') ADVANCE(1129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1132); + if (lookahead != 0) ADVANCE(1131); END_STATE(); case 1133: - ACCEPT_TOKEN(aux_sym_time_expression_token3); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1134); + if (lookahead == '*') ADVANCE(1133); + if (lookahead == '/') ADVANCE(1118); + if (lookahead != 0) ADVANCE(1136); END_STATE(); case 1134: - ACCEPT_TOKEN(aux_sym_time_expression_token4); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1134); + if (lookahead == '*') ADVANCE(1133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1137); + if (lookahead != 0) ADVANCE(1136); END_STATE(); case 1135: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1134); + if (lookahead == '*') ADVANCE(1133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); + if (lookahead != 0) ADVANCE(1136); END_STATE(); case 1136: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(80); + if (lookahead == '%') ADVANCE(1134); + if (lookahead == '*') ADVANCE(1133); + if (lookahead != 0) ADVANCE(1136); END_STATE(); case 1137: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(79); + if (lookahead == '%') ADVANCE(1134); + if (lookahead == '*') ADVANCE(1133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1137); + if (lookahead != 0) ADVANCE(1136); END_STATE(); case 1138: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_time_expression_token1); END_STATE(); case 1139: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); + ACCEPT_TOKEN(aux_sym_time_expression_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1140: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_time_expression_token2); END_STATE(); case 1141: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); + ACCEPT_TOKEN(aux_sym_time_expression_token3); END_STATE(); case 1142: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_time_expression_token4); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1143: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); + ACCEPT_TOKEN(aux_sym__interval_fields_token1); END_STATE(); case 1144: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym__interval_fields_token1); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1145: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); + ACCEPT_TOKEN(aux_sym__interval_fields_token2); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym__interval_fields_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(aux_sym__interval_fields_token3); END_STATE(); case 1148: + ACCEPT_TOKEN(aux_sym__interval_fields_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1149: + ACCEPT_TOKEN(aux_sym__interval_fields_token4); + END_STATE(); + case 1150: + ACCEPT_TOKEN(aux_sym__interval_fields_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1151: + ACCEPT_TOKEN(aux_sym__interval_fields_token5); + END_STATE(); + case 1152: + ACCEPT_TOKEN(aux_sym__interval_fields_token5); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1153: + ACCEPT_TOKEN(aux_sym__interval_fields_token6); + END_STATE(); + case 1154: + ACCEPT_TOKEN(aux_sym__interval_fields_token6); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1155: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 1156: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(81); END_STATE(); - case 1149: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 1150: - 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_DASH); - if (lookahead == '-') ADVANCE(1113); - if (lookahead == '|') ADVANCE(85); - END_STATE(); - case 1152: - 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_DASH); - if (lookahead == '-') ADVANCE(1113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); - END_STATE(); - case 1154: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 1155: - 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(anon_sym_GT); - if (lookahead == '=') ADVANCE(1158); - if (lookahead == '>') ADVANCE(1181); - END_STATE(); case 1157: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 1158: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(606); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(857); END_STATE(); case 1159: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1121); + if (lookahead == '|') ADVANCE(85); END_STATE(); case 1160: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1121); + if (lookahead == '|') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); END_STATE(); case 1161: - ACCEPT_TOKEN(aux_sym_contains_op_token1); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); END_STATE(); case 1162: - 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(1601); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 1163: - ACCEPT_TOKEN(aux_sym_contains_op_token2); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(1188); + if (lookahead == '=') ADVANCE(1165); + if (lookahead == '>') ADVANCE(1167); + if (lookahead == '@') ADVANCE(1186); END_STATE(); case 1164: - ACCEPT_TOKEN(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); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1166); + if (lookahead == '>') ADVANCE(1189); END_STATE(); case 1165: - ACCEPT_TOKEN(aux_sym_contains_op_token3); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1166: - ACCEPT_TOKEN(aux_sym_contains_op_token3); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1167: - ACCEPT_TOKEN(aux_sym_comparison_null_token1); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 1168: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1169: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_contains_op_token1); END_STATE(); case 1170: - ACCEPT_TOKEN(aux_sym_comparison_null_token3); + ACCEPT_TOKEN(aux_sym_contains_op_token1); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1171: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); + ACCEPT_TOKEN(aux_sym_contains_op_token2); END_STATE(); case 1172: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); - if (lookahead == '.') ADVANCE(856); + ACCEPT_TOKEN(aux_sym_contains_op_token2); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1173: - 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') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(aux_sym_contains_op_token3); END_STATE(); case 1174: - ACCEPT_TOKEN(aux_sym_comparison_kw_token1); - if (lookahead == ' ') ADVANCE(240); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(803); + ACCEPT_TOKEN(aux_sym_contains_op_token3); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1175: - ACCEPT_TOKEN(aux_sym_comparison_kw_token2); + ACCEPT_TOKEN(aux_sym_comparison_null_token1); END_STATE(); case 1176: - ACCEPT_TOKEN(aux_sym_comparison_kw_token3); + ACCEPT_TOKEN(aux_sym_comparison_null_token2); END_STATE(); case 1177: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(aux_sym_comparison_null_token2); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1178: - ACCEPT_TOKEN(anon_sym_LT_AT); + ACCEPT_TOKEN(aux_sym_comparison_null_token3); END_STATE(); case 1179: - ACCEPT_TOKEN(anon_sym_AT_GT); + ACCEPT_TOKEN(aux_sym_comparison_null_token4); END_STATE(); case 1180: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(aux_sym_comparison_null_token4); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1181: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(aux_sym_comparison_kw_token1); + if (lookahead == ' ') ADVANCE(243); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1579); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1182: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(aux_sym_comparison_kw_token1); + if (lookahead == ' ') ADVANCE(243); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(809); END_STATE(); case 1183: - ACCEPT_TOKEN(anon_sym_AMP_LT); + ACCEPT_TOKEN(aux_sym_comparison_kw_token2); END_STATE(); case 1184: - ACCEPT_TOKEN(anon_sym_AMP_GT); + ACCEPT_TOKEN(aux_sym_comparison_kw_token3); END_STATE(); case 1185: - ACCEPT_TOKEN(anon_sym_DASH_PIPE_DASH); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 1186: - ACCEPT_TOKEN(sym_cast); + ACCEPT_TOKEN(anon_sym_LT_AT); END_STATE(); case 1187: - ACCEPT_TOKEN(sym_and); + ACCEPT_TOKEN(anon_sym_AT_GT); END_STATE(); case 1188: - ACCEPT_TOKEN(sym_and); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 1189: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 1190: - ACCEPT_TOKEN(sym_true); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 1191: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_AMP_LT); END_STATE(); case 1192: - ACCEPT_TOKEN(sym_false); - if (lookahead == '.') ADVANCE(856); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(anon_sym_AMP_GT); END_STATE(); case 1193: - 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(1601); + ACCEPT_TOKEN(anon_sym_DASH_PIPE_DASH); END_STATE(); case 1194: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1194); + ACCEPT_TOKEN(sym_cast); END_STATE(); case 1195: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == '_') ADVANCE(1587); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(sym_and); END_STATE(); case 1196: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == '_') ADVANCE(1588); + ACCEPT_TOKEN(sym_and); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1197: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1590); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1567); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(sym_true); END_STATE(); case 1198: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1590); + ACCEPT_TOKEN(sym_true); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1199: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ACCEPT_TOKEN(sym_false); END_STATE(); case 1200: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1219); + ACCEPT_TOKEN(sym_false); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1201: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(862); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1202: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); + END_STATE(); + case 1203: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == '_') ADVANCE(1601); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1204: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1205: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(904); + lookahead == 'a') ADVANCE(1604); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1581); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1202: + case 1206: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1604); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1207: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1609); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1208: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1229); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1209: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(910); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1210: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1211: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1485); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1212: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1355); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1572); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1213: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1596); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1203: + case 1214: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1473); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1204: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1343); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1558); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1205: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1582); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1206: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); + lookahead == 'a') ADVANCE(1401); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1438); + lookahead == 'r') ADVANCE(1450); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1207: + case 1215: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); + lookahead == 'a') ADVANCE(1401); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1208: + case 1216: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1421); + lookahead == 'a') ADVANCE(1433); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1209: + case 1217: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1367); + lookahead == 'a') ADVANCE(1379); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1210: + case 1218: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1382); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1219: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1500); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1220: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1502); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1221: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1490); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1222: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1566); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1223: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1370); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1211: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1487); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1212: - ACCEPT_TOKEN(sym__identifier); - 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(1359); - 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(1505); - 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(959); - 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); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1224: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1533); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1568); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1225: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1384); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1518); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1226: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1549); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1577); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1227: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1542); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1574); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1228: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1275); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1229: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1257); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1230: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1330); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1470); + lookahead == 'c') ADVANCE(1103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1231: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1585); + lookahead == 'c') ADVANCE(965); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1232: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1589); + lookahead == 'c') ADVANCE(1372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1233: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1188); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1234: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1146); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1235: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1023); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1236: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1584); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1237: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1263); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1238: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1214); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1239: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1526); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1240: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1164); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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(1086); - 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(1033); - 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(1025); - 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(925); - 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(1008); - 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(1601); - END_STATE(); - case 1253: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1018); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1254: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(912); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1255: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1256: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(979); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1257: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(975); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1258: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(977); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1259: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1084); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1260: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(993); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1261: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1489); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1262: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1263: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1471); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1264: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1203); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1265: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - 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(1601); - END_STATE(); - case 1266: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1545); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1267: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1268: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1269: - ACCEPT_TOKEN(sym__identifier); - 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 == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1341); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1242: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1243: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1603); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1244: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1245: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1246: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1247: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1248: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1249: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1224); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1250: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1251: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1172); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1252: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1174); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1253: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1092); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1254: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1233); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1255: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1256: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1039); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1257: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1031); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1258: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(885); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1259: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(931); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1260: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1261: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1014); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1262: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1198); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1263: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1264: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1024); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1265: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(918); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1266: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(908); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1267: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(985); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1268: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(981); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1269: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(983); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1270: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1090); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1271: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(999); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1272: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1273: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1242); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1274: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1275: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1211); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1276: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1559); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1332); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1277: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1278: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1606); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1279: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1235); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1280: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1414); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1281: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1232); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1282: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1283: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1284: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1225); + lookahead == 'e') ADVANCE(1326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1285: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1475); + lookahead == 'e') ADVANCE(1402); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(898); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1286: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1530); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1208); + lookahead == 'e') ADVANCE(1247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1287: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1403); + lookahead == 'e') ADVANCE(1327); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1288: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1497); + lookahead == 'e') ADVANCE(1327); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1289: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1345); + lookahead == 'e') ADVANCE(1327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1290: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1481); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(884); + lookahead == 'e') ADVANCE(1398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1291: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1481); + lookahead == 'e') ADVANCE(1334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1292: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1506); + lookahead == 'e') ADVANCE(1280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1293: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1486); + lookahead == 'e') ADVANCE(1406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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 == '.') ADVANCE(862); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1295: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1236); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1296: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1297: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1544); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1298: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1551); + lookahead == 'e') ADVANCE(1415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1299: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1478); + lookahead == 'e') ADVANCE(1511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1300: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1479); + lookahead == 'e') ADVANCE(1357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1301: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1515); + lookahead == 'e') ADVANCE(1494); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1302: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1303: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1520); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1304: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1305: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1306: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1303: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1304: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1305: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1309); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(889); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1000); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1306: - ACCEPT_TOKEN(sym__identifier); - 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(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1307: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1309); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1000); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1308: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1309); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1237); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1309: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1520); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1310: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1027); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1522); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1311: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1027); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1312: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1030); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1313: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1032); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1314: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1076); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1315: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1205); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1316: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1537); + lookahead == 'f') ADVANCE(1320); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1006); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1317: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1451); + lookahead == 'f') ADVANCE(1320); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1318: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1048); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1320); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1006); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1319: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(900); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1320); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1320: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(917); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1321: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1327); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1033); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1322: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1408); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1033); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1323: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1352); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1036); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1324: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1138); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1038); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1325: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(988); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1082); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1326: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1261); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1327: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1538); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1328: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1270); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1378); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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 (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1054); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1330: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1282); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(906); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1331: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1458); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(923); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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 (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1333: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1334: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1363); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1335: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1469); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1336: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1600); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(994); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1337: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1401); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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 (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1339: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1393); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1281); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); 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(1456); - 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(1425); - 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(942); - 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(935); - 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(963); - 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(1070); - 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(1057); - 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(969); - 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(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 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(1041); - 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(1011); - 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(1037); - 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(1061); - 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(930); - 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(947); - 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(1081); - 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(906); - 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(856); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1320); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1417: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1418: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1419: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1420: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1421: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1422: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1423: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1424: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1425: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1426: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1427: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1428: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1429: - ACCEPT_TOKEN(sym__identifier); - 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(955); - 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(1601); - END_STATE(); - case 1445: - ACCEPT_TOKEN(sym__identifier); - 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(1411); - 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 == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1281); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1458: + case 1341: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1342: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1470); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1343: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1344: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1373); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1499); + lookahead == 'o') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1459: + case 1345: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1346: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1375); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1347: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1348: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1349: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1350: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1567); + lookahead == 'o') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1460: + case 1351: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1405); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1352: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1332); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1353: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1354: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1408); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1355: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1530); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1356: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1357: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1333); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1358: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1359: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1360: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1361: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1418); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1362: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1363: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1364: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1365: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1374); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1366: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1427); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1575); + lookahead == 'o') ADVANCE(1430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1461: + case 1367: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1349); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1466); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1462: + case 1368: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1429); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1463: + case 1369: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1502); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1464: + case 1370: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(961); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1465: + case 1371: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(861); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1466: + case 1372: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1021); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(948); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1467: + case 1373: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1238); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1251); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1468: + case 1374: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1287); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1469: + case 1375: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1578); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1470: + case 1376: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1579); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1471: + case 1377: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1055); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1472: + case 1378: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1142); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(941); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1473: + case 1379: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1136); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1474: + case 1380: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1004); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(969); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1475: + case 1381: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(927); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1076); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1476: + case 1382: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1001); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1063); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1477: + case 1383: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1063); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1346); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(975); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1478: + case 1384: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(908); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1346); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(976); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1479: + case 1385: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(910); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1526); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1246); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1480: + case 1386: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1438); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1481: + case 1387: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1591); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1482: + case 1388: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1317); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1483: + case 1389: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1392); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1484: + case 1390: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1582); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1485: + case 1391: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1417); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1486: + case 1392: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1597); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1487: + case 1393: 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(1601); - END_STATE(); - case 1494: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1495: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1496: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1446); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1497: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1498: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - 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 1499: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1336); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1500: - ACCEPT_TOKEN(sym__identifier); - 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(1303); - 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(1259); - 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 == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1380); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1394: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1380); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1395: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1381); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1396: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1225); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1397: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1359); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1398: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1399: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1550); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1400: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1266); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1401: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1402: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1313); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1403: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(879); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1404: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1047); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1405: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1353); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1406: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1407: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1408: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1219); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1409: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1309); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1410: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1244); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(875); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1411: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1244); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1412: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(895); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1413: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1329); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1414: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1415: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1017); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1416: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1043); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1417: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1446); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1418: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1419: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(936); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1420: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(953); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1421: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1422: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1087); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1423: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(912); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1424: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1245); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1425: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1330); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1426: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1246); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1427: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1584); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1428: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1331); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1429: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1430: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1557); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1431: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1531); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1432: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1347); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1433: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1434: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1548); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1435: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1436: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1437: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1554); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1438: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1555); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1439: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1440: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1441: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1271); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1442: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1594); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1443: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1243); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1444: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1445: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1446: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1305); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1452); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1447: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1448: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1449: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1450: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1403); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1451: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1452: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1453: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(961); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1454: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1390); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1455: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1541); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1456: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1457: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1458: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1459: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1460: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1424); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1461: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1462: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1463: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1464: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1549); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1392); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1465: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1391); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1466: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1467: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1468: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1443); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1469: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1470: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1513); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1471: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1581); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1472: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1589); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1473: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1361); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1474: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1441); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1475: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1476: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(967); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1477: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1478: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1479: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1480: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1298); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1481: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1592); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1482: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1483: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1484: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1485: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1144); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1486: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1010); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1487: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(933); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1488: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1489: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1069); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1490: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1491: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(914); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1492: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(916); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1493: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1450); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1494: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1605); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1495: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1328); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1496: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1404); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1497: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1451); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1498: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1429); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1499: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1611); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1500: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1501: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1586); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1502: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1234); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1503: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1253); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1504: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1210); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1505: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1354); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1506: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1507: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1508: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1509: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1304); + lookahead == 'r') ADVANCE(1358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1510: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1509); + lookahead == 'r') ADVANCE(1458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1511: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(869); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1512: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1245); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1513: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1059); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1514: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1513); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1515: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1525); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1516: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1246); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1517: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1556); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1518: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1519: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1253); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1520: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1272); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1521: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1350); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1522: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1523: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1524: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1523); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1525: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1526: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1527: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1065); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1528: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1527); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1529: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1539); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1530: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1531: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1570); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1532: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1263); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1533: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1264); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1534: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1535: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1362); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1536: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || lookahead == 's') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1524: + case 1537: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1300); + lookahead == 's') ADVANCE(1310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1525: + case 1538: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1357); + lookahead == 's') ADVANCE(1311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1526: + case 1539: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1369); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1540: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1593); + lookahead == 't') ADVANCE(1607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1527: + case 1541: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1430); + lookahead == 't') ADVANCE(1442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1528: + case 1542: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1050); + lookahead == 't') ADVANCE(1056); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1529: + case 1543: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1058); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1544: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1019); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1545: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(963); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1546: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1547: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1548: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1549: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(938); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1550: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(892); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1551: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1071); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1552: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1074); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1553: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(877); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1554: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(901); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1555: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1203); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1556: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || lookahead == 't') ADVANCE(1052); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1530: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1013); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1531: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(957); - 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(1043); - 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(932); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1536: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1537: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1538: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1068); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1539: - ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1540: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(895); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1541: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1195); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1542: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1543: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1324); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1544: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1545: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1546: - ACCEPT_TOKEN(sym__identifier); - 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 1547: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1331); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1548: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1549: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1355); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1550: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1376); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1551: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1450); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1552: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1553: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1248); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1554: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1249); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1555: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); - END_STATE(); - case 1556: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1557: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); + lookahead == 't') ADVANCE(1335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1558: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1571); + lookahead == 't') ADVANCE(1336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1559: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1285); + lookahead == 't') ADVANCE(1580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1560: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1573); + lookahead == 't') ADVANCE(1452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1561: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1351); + lookahead == 't') ADVANCE(1342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1562: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1291); + lookahead == 't') ADVANCE(1255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1563: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1358); + lookahead == 't') ADVANCE(1367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1564: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1464); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1565: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1374); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1566: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1485); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1567: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1472); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1568: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1395); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1569: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1397); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1570: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1548); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1571: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1493); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1572: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1251); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); case 1573: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1574: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1587); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1575: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1363); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1576: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1577: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1371); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1578: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1579: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1386); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1580: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1498); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1581: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1582: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1407); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1583: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1409); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1584: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1585: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1574: + case 1586: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1432); + lookahead == 'u') ADVANCE(1262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1575: + case 1587: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1588: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1589: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1590: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1522); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1591: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1576: + case 1592: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1508); + lookahead == 'u') ADVANCE(1265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1577: + case 1593: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1547); + lookahead == 'u') ADVANCE(1307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1578: + case 1594: 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 == '.') ADVANCE(862); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1583: + case 1595: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1383); + lookahead == 'u') ADVANCE(1228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1584: + case 1596: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1503); + lookahead == 'u') ADVANCE(1399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1585: + case 1597: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1555); + lookahead == 'u') ADVANCE(1395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1586: + case 1598: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1293); + lookahead == 'u') ADVANCE(1517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1587: + case 1599: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1523); + lookahead == 'u') ADVANCE(1569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1588: + case 1600: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1601: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1602: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1538); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + END_STATE(); + case 1603: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1589: + case 1604: ACCEPT_TOKEN(sym__identifier); - 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(1601); - END_STATE(); - case 1590: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1337); + lookahead == 'v') ADVANCE(1349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1591: + case 1605: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1209); + lookahead == 'v') ADVANCE(1217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1592: + case 1606: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1292); + lookahead == 'v') ADVANCE(1303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1593: + case 1607: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1281); + lookahead == 'w') ADVANCE(1292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1594: + case 1608: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1262); + lookahead == 'x') ADVANCE(1273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1595: + case 1609: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1140); + lookahead == 'y') ADVANCE(1148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1596: + case 1610: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1117); + lookahead == 'y') ADVANCE(1125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1597: + case 1611: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1039); + lookahead == 'y') ADVANCE(1045); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1598: + case 1612: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(944); + lookahead == 'y') ADVANCE(950); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1599: + case 1613: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(915); + lookahead == 'y') ADVANCE(921); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); - case 1600: + case 1614: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1216); + lookahead == 'z') ADVANCE(1226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1615); END_STATE(); - case 1601: + case 1615: ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(856); + if (lookahead == '.') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); END_STATE(); default: return false; @@ -18369,367 +18534,367 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 857}, - [2] = {.lex_state = 857}, + [1] = {.lex_state = 863}, + [2] = {.lex_state = 863}, [3] = {.lex_state = 16}, [4] = {.lex_state = 16}, [5] = {.lex_state = 20}, [6] = {.lex_state = 5}, [7] = {.lex_state = 16}, - [8] = {.lex_state = 20}, - [9] = {.lex_state = 5}, + [8] = {.lex_state = 5}, + [9] = {.lex_state = 16}, [10] = {.lex_state = 20}, - [11] = {.lex_state = 16}, - [12] = {.lex_state = 16}, - [13] = {.lex_state = 16}, + [11] = {.lex_state = 20}, + [12] = {.lex_state = 20}, + [13] = {.lex_state = 20}, [14] = {.lex_state = 20}, - [15] = {.lex_state = 16}, + [15] = {.lex_state = 20}, [16] = {.lex_state = 20}, - [17] = {.lex_state = 16}, + [17] = {.lex_state = 20}, [18] = {.lex_state = 20}, - [19] = {.lex_state = 20}, - [20] = {.lex_state = 20}, - [21] = {.lex_state = 20}, + [19] = {.lex_state = 5}, + [20] = {.lex_state = 16}, + [21] = {.lex_state = 16}, [22] = {.lex_state = 16}, [23] = {.lex_state = 16}, - [24] = {.lex_state = 20}, - [25] = {.lex_state = 16}, + [24] = {.lex_state = 16}, + [25] = {.lex_state = 20}, [26] = {.lex_state = 20}, [27] = {.lex_state = 16}, - [28] = {.lex_state = 16}, + [28] = {.lex_state = 20}, [29] = {.lex_state = 20}, - [30] = {.lex_state = 20}, - [31] = {.lex_state = 20}, - [32] = {.lex_state = 5}, + [30] = {.lex_state = 16}, + [31] = {.lex_state = 16}, + [32] = {.lex_state = 16}, [33] = {.lex_state = 5}, - [34] = {.lex_state = 11}, - [35] = {.lex_state = 5}, - [36] = {.lex_state = 16}, - [37] = {.lex_state = 11}, - [38] = {.lex_state = 16}, - [39] = {.lex_state = 11}, - [40] = {.lex_state = 16}, - [41] = {.lex_state = 20}, - [42] = {.lex_state = 16}, + [34] = {.lex_state = 5}, + [35] = {.lex_state = 11}, + [36] = {.lex_state = 11}, + [37] = {.lex_state = 5}, + [38] = {.lex_state = 5}, + [39] = {.lex_state = 16}, + [40] = {.lex_state = 11}, + [41] = {.lex_state = 16}, + [42] = {.lex_state = 11}, [43] = {.lex_state = 21}, [44] = {.lex_state = 16}, - [45] = {.lex_state = 11}, + [45] = {.lex_state = 5}, [46] = {.lex_state = 20}, - [47] = {.lex_state = 11}, - [48] = {.lex_state = 5}, + [47] = {.lex_state = 16}, + [48] = {.lex_state = 11}, [49] = {.lex_state = 11}, - [50] = {.lex_state = 28}, - [51] = {.lex_state = 21}, - [52] = {.lex_state = 20}, - [53] = {.lex_state = 16}, - [54] = {.lex_state = 20}, - [55] = {.lex_state = 31}, - [56] = {.lex_state = 28}, - [57] = {.lex_state = 28}, - [58] = {.lex_state = 16}, - [59] = {.lex_state = 28}, - [60] = {.lex_state = 16}, - [61] = {.lex_state = 16}, - [62] = {.lex_state = 16}, - [63] = {.lex_state = 86}, - [64] = {.lex_state = 31}, + [50] = {.lex_state = 16}, + [51] = {.lex_state = 11}, + [52] = {.lex_state = 11}, + [53] = {.lex_state = 20}, + [54] = {.lex_state = 16}, + [55] = {.lex_state = 20}, + [56] = {.lex_state = 20}, + [57] = {.lex_state = 21}, + [58] = {.lex_state = 28}, + [59] = {.lex_state = 31}, + [60] = {.lex_state = 20}, + [61] = {.lex_state = 20}, + [62] = {.lex_state = 31}, + [63] = {.lex_state = 31}, + [64] = {.lex_state = 21}, [65] = {.lex_state = 21}, - [66] = {.lex_state = 28}, - [67] = {.lex_state = 28}, - [68] = {.lex_state = 28}, - [69] = {.lex_state = 28}, - [70] = {.lex_state = 21}, - [71] = {.lex_state = 28}, - [72] = {.lex_state = 28}, + [66] = {.lex_state = 86}, + [67] = {.lex_state = 21}, + [68] = {.lex_state = 20}, + [69] = {.lex_state = 20}, + [70] = {.lex_state = 20}, + [71] = {.lex_state = 21}, + [72] = {.lex_state = 21}, [73] = {.lex_state = 21}, - [74] = {.lex_state = 21}, - [75] = {.lex_state = 31}, - [76] = {.lex_state = 21}, + [74] = {.lex_state = 18}, + [75] = {.lex_state = 28}, + [76] = {.lex_state = 28}, [77] = {.lex_state = 28}, - [78] = {.lex_state = 20}, - [79] = {.lex_state = 21}, + [78] = {.lex_state = 21}, + [79] = {.lex_state = 28}, [80] = {.lex_state = 21}, [81] = {.lex_state = 21}, - [82] = {.lex_state = 18}, - [83] = {.lex_state = 21}, + [82] = {.lex_state = 28}, + [83] = {.lex_state = 28}, [84] = {.lex_state = 21}, - [85] = {.lex_state = 21}, - [86] = {.lex_state = 21}, - [87] = {.lex_state = 20}, - [88] = {.lex_state = 20}, - [89] = {.lex_state = 20}, - [90] = {.lex_state = 20}, - [91] = {.lex_state = 20}, - [92] = {.lex_state = 86}, + [85] = {.lex_state = 28}, + [86] = {.lex_state = 28}, + [87] = {.lex_state = 21}, + [88] = {.lex_state = 28}, + [89] = {.lex_state = 28}, + [90] = {.lex_state = 21}, + [91] = {.lex_state = 16}, + [92] = {.lex_state = 16}, [93] = {.lex_state = 16}, - [94] = {.lex_state = 20}, - [95] = {.lex_state = 27}, - [96] = {.lex_state = 16}, - [97] = {.lex_state = 20}, + [94] = {.lex_state = 16}, + [95] = {.lex_state = 18}, + [96] = {.lex_state = 18}, + [97] = {.lex_state = 86}, [98] = {.lex_state = 20}, - [99] = {.lex_state = 20}, - [100] = {.lex_state = 86}, - [101] = {.lex_state = 20}, - [102] = {.lex_state = 7}, - [103] = {.lex_state = 18}, - [104] = {.lex_state = 18}, - [105] = {.lex_state = 17}, - [106] = {.lex_state = 10}, - [107] = {.lex_state = 18}, + [99] = {.lex_state = 18}, + [100] = {.lex_state = 16}, + [101] = {.lex_state = 16}, + [102] = {.lex_state = 16}, + [103] = {.lex_state = 16}, + [104] = {.lex_state = 16}, + [105] = {.lex_state = 16}, + [106] = {.lex_state = 16}, + [107] = {.lex_state = 20}, [108] = {.lex_state = 18}, - [109] = {.lex_state = 18}, - [110] = {.lex_state = 18}, - [111] = {.lex_state = 18}, - [112] = {.lex_state = 18}, - [113] = {.lex_state = 16}, - [114] = {.lex_state = 18}, - [115] = {.lex_state = 20}, + [109] = {.lex_state = 16}, + [110] = {.lex_state = 16}, + [111] = {.lex_state = 16}, + [112] = {.lex_state = 20}, + [113] = {.lex_state = 10}, + [114] = {.lex_state = 20}, + [115] = {.lex_state = 16}, [116] = {.lex_state = 16}, [117] = {.lex_state = 16}, - [118] = {.lex_state = 20}, + [118] = {.lex_state = 16}, [119] = {.lex_state = 20}, - [120] = {.lex_state = 16}, - [121] = {.lex_state = 16}, - [122] = {.lex_state = 16}, + [120] = {.lex_state = 18}, + [121] = {.lex_state = 10}, + [122] = {.lex_state = 20}, [123] = {.lex_state = 18}, - [124] = {.lex_state = 20}, + [124] = {.lex_state = 17}, [125] = {.lex_state = 20}, - [126] = {.lex_state = 16}, - [127] = {.lex_state = 20}, - [128] = {.lex_state = 16}, - [129] = {.lex_state = 18}, - [130] = {.lex_state = 18}, - [131] = {.lex_state = 16}, - [132] = {.lex_state = 32}, - [133] = {.lex_state = 16}, - [134] = {.lex_state = 16}, - [135] = {.lex_state = 16}, - [136] = {.lex_state = 16}, + [126] = {.lex_state = 18}, + [127] = {.lex_state = 16}, + [128] = {.lex_state = 18}, + [129] = {.lex_state = 20}, + [130] = {.lex_state = 27}, + [131] = {.lex_state = 32}, + [132] = {.lex_state = 20}, + [133] = {.lex_state = 20}, + [134] = {.lex_state = 20}, + [135] = {.lex_state = 20}, + [136] = {.lex_state = 20}, [137] = {.lex_state = 20}, - [138] = {.lex_state = 16}, - [139] = {.lex_state = 18}, - [140] = {.lex_state = 20}, + [138] = {.lex_state = 20}, + [139] = {.lex_state = 20}, + [140] = {.lex_state = 16}, [141] = {.lex_state = 20}, - [142] = {.lex_state = 20}, - [143] = {.lex_state = 20}, - [144] = {.lex_state = 17}, - [145] = {.lex_state = 32}, - [146] = {.lex_state = 17}, - [147] = {.lex_state = 17}, - [148] = {.lex_state = 17}, - [149] = {.lex_state = 17}, - [150] = {.lex_state = 17}, - [151] = {.lex_state = 19}, + [142] = {.lex_state = 18}, + [143] = {.lex_state = 7}, + [144] = {.lex_state = 86}, + [145] = {.lex_state = 7}, + [146] = {.lex_state = 18}, + [147] = {.lex_state = 18}, + [148] = {.lex_state = 18}, + [149] = {.lex_state = 18}, + [150] = {.lex_state = 27}, + [151] = {.lex_state = 17}, [152] = {.lex_state = 17}, [153] = {.lex_state = 17}, - [154] = {.lex_state = 17}, + [154] = {.lex_state = 27}, [155] = {.lex_state = 27}, - [156] = {.lex_state = 7}, + [156] = {.lex_state = 17}, [157] = {.lex_state = 27}, [158] = {.lex_state = 27}, - [159] = {.lex_state = 27}, - [160] = {.lex_state = 27}, - [161] = {.lex_state = 17}, - [162] = {.lex_state = 17}, - [163] = {.lex_state = 10}, + [159] = {.lex_state = 32}, + [160] = {.lex_state = 17}, + [161] = {.lex_state = 10}, + [162] = {.lex_state = 39}, + [163] = {.lex_state = 6}, [164] = {.lex_state = 6}, - [165] = {.lex_state = 27}, - [166] = {.lex_state = 27}, - [167] = {.lex_state = 39}, - [168] = {.lex_state = 40}, - [169] = {.lex_state = 32}, - [170] = {.lex_state = 13}, + [165] = {.lex_state = 13}, + [166] = {.lex_state = 19}, + [167] = {.lex_state = 32}, + [168] = {.lex_state = 17}, + [169] = {.lex_state = 17}, + [170] = {.lex_state = 40}, [171] = {.lex_state = 27}, [172] = {.lex_state = 17}, [173] = {.lex_state = 27}, - [174] = {.lex_state = 27}, + [174] = {.lex_state = 17}, [175] = {.lex_state = 17}, - [176] = {.lex_state = 21}, - [177] = {.lex_state = 7}, - [178] = {.lex_state = 40}, - [179] = {.lex_state = 40}, - [180] = {.lex_state = 21}, - [181] = {.lex_state = 10}, - [182] = {.lex_state = 22}, - [183] = {.lex_state = 10}, - [184] = {.lex_state = 19}, + [176] = {.lex_state = 27}, + [177] = {.lex_state = 27}, + [178] = {.lex_state = 27}, + [179] = {.lex_state = 17}, + [180] = {.lex_state = 17}, + [181] = {.lex_state = 17}, + [182] = {.lex_state = 7}, + [183] = {.lex_state = 13}, + [184] = {.lex_state = 39}, [185] = {.lex_state = 19}, - [186] = {.lex_state = 39}, - [187] = {.lex_state = 39}, + [186] = {.lex_state = 10}, + [187] = {.lex_state = 10}, [188] = {.lex_state = 19}, [189] = {.lex_state = 19}, - [190] = {.lex_state = 16}, + [190] = {.lex_state = 19}, [191] = {.lex_state = 10}, [192] = {.lex_state = 39}, - [193] = {.lex_state = 39}, - [194] = {.lex_state = 7}, - [195] = {.lex_state = 39}, - [196] = {.lex_state = 39}, - [197] = {.lex_state = 39}, - [198] = {.lex_state = 10}, - [199] = {.lex_state = 19}, - [200] = {.lex_state = 6}, + [193] = {.lex_state = 16}, + [194] = {.lex_state = 39}, + [195] = {.lex_state = 10}, + [196] = {.lex_state = 21}, + [197] = {.lex_state = 22}, + [198] = {.lex_state = 19}, + [199] = {.lex_state = 13}, + [200] = {.lex_state = 7}, [201] = {.lex_state = 19}, - [202] = {.lex_state = 19}, + [202] = {.lex_state = 7}, [203] = {.lex_state = 19}, [204] = {.lex_state = 19}, - [205] = {.lex_state = 39}, + [205] = {.lex_state = 19}, [206] = {.lex_state = 12}, - [207] = {.lex_state = 19}, + [207] = {.lex_state = 39}, [208] = {.lex_state = 19}, - [209] = {.lex_state = 39}, - [210] = {.lex_state = 7}, + [209] = {.lex_state = 19}, + [210] = {.lex_state = 19}, [211] = {.lex_state = 19}, - [212] = {.lex_state = 22}, - [213] = {.lex_state = 39}, - [214] = {.lex_state = 13}, - [215] = {.lex_state = 7}, - [216] = {.lex_state = 19}, - [217] = {.lex_state = 87}, - [218] = {.lex_state = 18}, - [219] = {.lex_state = 87}, - [220] = {.lex_state = 87}, - [221] = {.lex_state = 28}, - [222] = {.lex_state = 28}, - [223] = {.lex_state = 87}, - [224] = {.lex_state = 87}, - [225] = {.lex_state = 19}, - [226] = {.lex_state = 12}, - [227] = {.lex_state = 21}, + [212] = {.lex_state = 21}, + [213] = {.lex_state = 10}, + [214] = {.lex_state = 12}, + [215] = {.lex_state = 39}, + [216] = {.lex_state = 39}, + [217] = {.lex_state = 39}, + [218] = {.lex_state = 40}, + [219] = {.lex_state = 40}, + [220] = {.lex_state = 39}, + [221] = {.lex_state = 22}, + [222] = {.lex_state = 39}, + [223] = {.lex_state = 39}, + [224] = {.lex_state = 7}, + [225] = {.lex_state = 6}, + [226] = {.lex_state = 7}, + [227] = {.lex_state = 7}, [228] = {.lex_state = 87}, [229] = {.lex_state = 13}, - [230] = {.lex_state = 87}, - [231] = {.lex_state = 87}, - [232] = {.lex_state = 87}, - [233] = {.lex_state = 87}, - [234] = {.lex_state = 87}, - [235] = {.lex_state = 87}, - [236] = {.lex_state = 19}, - [237] = {.lex_state = 87}, - [238] = {.lex_state = 87}, - [239] = {.lex_state = 87}, - [240] = {.lex_state = 15}, - [241] = {.lex_state = 6}, - [242] = {.lex_state = 14}, - [243] = {.lex_state = 13}, - [244] = {.lex_state = 87}, + [230] = {.lex_state = 15}, + [231] = {.lex_state = 6}, + [232] = {.lex_state = 21}, + [233] = {.lex_state = 6}, + [234] = {.lex_state = 13}, + [235] = {.lex_state = 13}, + [236] = {.lex_state = 13}, + [237] = {.lex_state = 18}, + [238] = {.lex_state = 14}, + [239] = {.lex_state = 13}, + [240] = {.lex_state = 14}, + [241] = {.lex_state = 87}, + [242] = {.lex_state = 15}, + [243] = {.lex_state = 28}, + [244] = {.lex_state = 18}, [245] = {.lex_state = 87}, - [246] = {.lex_state = 18}, - [247] = {.lex_state = 87}, - [248] = {.lex_state = 13}, + [246] = {.lex_state = 87}, + [247] = {.lex_state = 21}, + [248] = {.lex_state = 87}, [249] = {.lex_state = 6}, - [250] = {.lex_state = 21}, - [251] = {.lex_state = 6}, - [252] = {.lex_state = 13}, + [250] = {.lex_state = 6}, + [251] = {.lex_state = 87}, + [252] = {.lex_state = 87}, [253] = {.lex_state = 87}, - [254] = {.lex_state = 35}, - [255] = {.lex_state = 17}, - [256] = {.lex_state = 12}, - [257] = {.lex_state = 88}, - [258] = {.lex_state = 12}, - [259] = {.lex_state = 21}, - [260] = {.lex_state = 6}, - [261] = {.lex_state = 88}, - [262] = {.lex_state = 18}, - [263] = {.lex_state = 23}, - [264] = {.lex_state = 35}, - [265] = {.lex_state = 88}, - [266] = {.lex_state = 18}, - [267] = {.lex_state = 35}, - [268] = {.lex_state = 35}, - [269] = {.lex_state = 15}, - [270] = {.lex_state = 21}, - [271] = {.lex_state = 23}, - [272] = {.lex_state = 88}, - [273] = {.lex_state = 12}, - [274] = {.lex_state = 27}, - [275] = {.lex_state = 21}, - [276] = {.lex_state = 27}, - [277] = {.lex_state = 21}, - [278] = {.lex_state = 21}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 28}, - [281] = {.lex_state = 17}, - [282] = {.lex_state = 12}, - [283] = {.lex_state = 21}, - [284] = {.lex_state = 14}, - [285] = {.lex_state = 27}, - [286] = {.lex_state = 21}, - [287] = {.lex_state = 21}, - [288] = {.lex_state = 21}, - [289] = {.lex_state = 14}, - [290] = {.lex_state = 28}, - [291] = {.lex_state = 19}, - [292] = {.lex_state = 28}, - [293] = {.lex_state = 15}, - [294] = {.lex_state = 26}, - [295] = {.lex_state = 18}, - [296] = {.lex_state = 18}, - [297] = {.lex_state = 18}, - [298] = {.lex_state = 28}, - [299] = {.lex_state = 28}, - [300] = {.lex_state = 18}, - [301] = {.lex_state = 28}, - [302] = {.lex_state = 21}, - [303] = {.lex_state = 15}, - [304] = {.lex_state = 14}, + [254] = {.lex_state = 19}, + [255] = {.lex_state = 12}, + [256] = {.lex_state = 87}, + [257] = {.lex_state = 87}, + [258] = {.lex_state = 87}, + [259] = {.lex_state = 87}, + [260] = {.lex_state = 19}, + [261] = {.lex_state = 87}, + [262] = {.lex_state = 87}, + [263] = {.lex_state = 87}, + [264] = {.lex_state = 87}, + [265] = {.lex_state = 87}, + [266] = {.lex_state = 87}, + [267] = {.lex_state = 87}, + [268] = {.lex_state = 28}, + [269] = {.lex_state = 12}, + [270] = {.lex_state = 88}, + [271] = {.lex_state = 21}, + [272] = {.lex_state = 21}, + [273] = {.lex_state = 21}, + [274] = {.lex_state = 88}, + [275] = {.lex_state = 17}, + [276] = {.lex_state = 21}, + [277] = {.lex_state = 18}, + [278] = {.lex_state = 27}, + [279] = {.lex_state = 18}, + [280] = {.lex_state = 23}, + [281] = {.lex_state = 21}, + [282] = {.lex_state = 23}, + [283] = {.lex_state = 12}, + [284] = {.lex_state = 12}, + [285] = {.lex_state = 12}, + [286] = {.lex_state = 14}, + [287] = {.lex_state = 6}, + [288] = {.lex_state = 28}, + [289] = {.lex_state = 12}, + [290] = {.lex_state = 35}, + [291] = {.lex_state = 35}, + [292] = {.lex_state = 35}, + [293] = {.lex_state = 35}, + [294] = {.lex_state = 15}, + [295] = {.lex_state = 17}, + [296] = {.lex_state = 88}, + [297] = {.lex_state = 88}, + [298] = {.lex_state = 27}, + [299] = {.lex_state = 26}, + [300] = {.lex_state = 28}, + [301] = {.lex_state = 21}, + [302] = {.lex_state = 28}, + [303] = {.lex_state = 28}, + [304] = {.lex_state = 28}, [305] = {.lex_state = 28}, - [306] = {.lex_state = 21}, - [307] = {.lex_state = 28}, - [308] = {.lex_state = 21}, - [309] = {.lex_state = 28}, + [306] = {.lex_state = 28}, + [307] = {.lex_state = 14}, + [308] = {.lex_state = 27}, + [309] = {.lex_state = 21}, [310] = {.lex_state = 28}, - [311] = {.lex_state = 21}, - [312] = {.lex_state = 21}, - [313] = {.lex_state = 19}, - [314] = {.lex_state = 17}, - [315] = {.lex_state = 21}, - [316] = {.lex_state = 28}, - [317] = {.lex_state = 28}, - [318] = {.lex_state = 14}, - [319] = {.lex_state = 28}, - [320] = {.lex_state = 28}, - [321] = {.lex_state = 44}, - [322] = {.lex_state = 21}, - [323] = {.lex_state = 44}, - [324] = {.lex_state = 28}, - [325] = {.lex_state = 21}, - [326] = {.lex_state = 19}, - [327] = {.lex_state = 18}, - [328] = {.lex_state = 21}, - [329] = {.lex_state = 28}, + [311] = {.lex_state = 19}, + [312] = {.lex_state = 28}, + [313] = {.lex_state = 21}, + [314] = {.lex_state = 28}, + [315] = {.lex_state = 28}, + [316] = {.lex_state = 21}, + [317] = {.lex_state = 21}, + [318] = {.lex_state = 21}, + [319] = {.lex_state = 18}, + [320] = {.lex_state = 18}, + [321] = {.lex_state = 18}, + [322] = {.lex_state = 15}, + [323] = {.lex_state = 18}, + [324] = {.lex_state = 21}, + [325] = {.lex_state = 28}, + [326] = {.lex_state = 28}, + [327] = {.lex_state = 21}, + [328] = {.lex_state = 28}, + [329] = {.lex_state = 21}, [330] = {.lex_state = 21}, [331] = {.lex_state = 21}, - [332] = {.lex_state = 21}, - [333] = {.lex_state = 17}, - [334] = {.lex_state = 28}, - [335] = {.lex_state = 21}, - [336] = {.lex_state = 28}, - [337] = {.lex_state = 28}, - [338] = {.lex_state = 26}, - [339] = {.lex_state = 28}, - [340] = {.lex_state = 15}, - [341] = {.lex_state = 21}, - [342] = {.lex_state = 15}, - [343] = {.lex_state = 18}, - [344] = {.lex_state = 27}, + [332] = {.lex_state = 28}, + [333] = {.lex_state = 26}, + [334] = {.lex_state = 18}, + [335] = {.lex_state = 14}, + [336] = {.lex_state = 14}, + [337] = {.lex_state = 14}, + [338] = {.lex_state = 19}, + [339] = {.lex_state = 15}, + [340] = {.lex_state = 21}, + [341] = {.lex_state = 19}, + [342] = {.lex_state = 21}, + [343] = {.lex_state = 21}, + [344] = {.lex_state = 15}, [345] = {.lex_state = 17}, - [346] = {.lex_state = 39}, - [347] = {.lex_state = 36}, - [348] = {.lex_state = 36}, - [349] = {.lex_state = 36}, - [350] = {.lex_state = 18}, - [351] = {.lex_state = 36}, - [352] = {.lex_state = 17}, - [353] = {.lex_state = 17}, + [346] = {.lex_state = 14}, + [347] = {.lex_state = 15}, + [348] = {.lex_state = 28}, + [349] = {.lex_state = 21}, + [350] = {.lex_state = 28}, + [351] = {.lex_state = 28}, + [352] = {.lex_state = 28}, + [353] = {.lex_state = 21}, [354] = {.lex_state = 17}, - [355] = {.lex_state = 17}, - [356] = {.lex_state = 39}, - [357] = {.lex_state = 18}, - [358] = {.lex_state = 18}, - [359] = {.lex_state = 18}, - [360] = {.lex_state = 18}, - [361] = {.lex_state = 18}, + [355] = {.lex_state = 28}, + [356] = {.lex_state = 21}, + [357] = {.lex_state = 44}, + [358] = {.lex_state = 44}, + [359] = {.lex_state = 15}, + [360] = {.lex_state = 21}, + [361] = {.lex_state = 36}, [362] = {.lex_state = 18}, [363] = {.lex_state = 18}, [364] = {.lex_state = 18}, @@ -18738,162 +18903,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [367] = {.lex_state = 18}, [368] = {.lex_state = 18}, [369] = {.lex_state = 19}, - [370] = {.lex_state = 18}, - [371] = {.lex_state = 19}, - [372] = {.lex_state = 18}, - [373] = {.lex_state = 18}, - [374] = {.lex_state = 33}, - [375] = {.lex_state = 19}, - [376] = {.lex_state = 17}, - [377] = {.lex_state = 41}, - [378] = {.lex_state = 27}, - [379] = {.lex_state = 17}, + [370] = {.lex_state = 19}, + [371] = {.lex_state = 18}, + [372] = {.lex_state = 36}, + [373] = {.lex_state = 39}, + [374] = {.lex_state = 18}, + [375] = {.lex_state = 18}, + [376] = {.lex_state = 18}, + [377] = {.lex_state = 39}, + [378] = {.lex_state = 36}, + [379] = {.lex_state = 36}, [380] = {.lex_state = 17}, [381] = {.lex_state = 17}, - [382] = {.lex_state = 19}, - [383] = {.lex_state = 41}, - [384] = {.lex_state = 41}, - [385] = {.lex_state = 27}, - [386] = {.lex_state = 41}, - [387] = {.lex_state = 27}, - [388] = {.lex_state = 17}, + [382] = {.lex_state = 18}, + [383] = {.lex_state = 18}, + [384] = {.lex_state = 18}, + [385] = {.lex_state = 18}, + [386] = {.lex_state = 18}, + [387] = {.lex_state = 18}, + [388] = {.lex_state = 27}, [389] = {.lex_state = 17}, - [390] = {.lex_state = 29}, - [391] = {.lex_state = 27}, - [392] = {.lex_state = 17}, - [393] = {.lex_state = 17}, + [390] = {.lex_state = 17}, + [391] = {.lex_state = 17}, + [392] = {.lex_state = 27}, + [393] = {.lex_state = 21}, [394] = {.lex_state = 27}, - [395] = {.lex_state = 27}, - [396] = {.lex_state = 19}, - [397] = {.lex_state = 19}, - [398] = {.lex_state = 19}, - [399] = {.lex_state = 17}, - [400] = {.lex_state = 27}, - [401] = {.lex_state = 45}, + [395] = {.lex_state = 19}, + [396] = {.lex_state = 27}, + [397] = {.lex_state = 27}, + [398] = {.lex_state = 41}, + [399] = {.lex_state = 41}, + [400] = {.lex_state = 19}, + [401] = {.lex_state = 19}, [402] = {.lex_state = 27}, - [403] = {.lex_state = 17}, + [403] = {.lex_state = 19}, [404] = {.lex_state = 27}, [405] = {.lex_state = 27}, [406] = {.lex_state = 27}, - [407] = {.lex_state = 21}, - [408] = {.lex_state = 39}, - [409] = {.lex_state = 17}, + [407] = {.lex_state = 17}, + [408] = {.lex_state = 27}, + [409] = {.lex_state = 27}, [410] = {.lex_state = 27}, - [411] = {.lex_state = 27}, + [411] = {.lex_state = 45}, [412] = {.lex_state = 27}, - [413] = {.lex_state = 17}, - [414] = {.lex_state = 27}, - [415] = {.lex_state = 45}, - [416] = {.lex_state = 27}, - [417] = {.lex_state = 27}, + [413] = {.lex_state = 27}, + [414] = {.lex_state = 17}, + [415] = {.lex_state = 17}, + [416] = {.lex_state = 17}, + [417] = {.lex_state = 17}, [418] = {.lex_state = 17}, [419] = {.lex_state = 27}, [420] = {.lex_state = 17}, - [421] = {.lex_state = 17}, + [421] = {.lex_state = 39}, [422] = {.lex_state = 17}, [423] = {.lex_state = 17}, - [424] = {.lex_state = 29}, - [425] = {.lex_state = 39}, - [426] = {.lex_state = 39}, - [427] = {.lex_state = 39}, - [428] = {.lex_state = 19}, - [429] = {.lex_state = 39}, - [430] = {.lex_state = 19}, - [431] = {.lex_state = 39}, - [432] = {.lex_state = 39}, - [433] = {.lex_state = 29}, - [434] = {.lex_state = 19}, - [435] = {.lex_state = 19}, - [436] = {.lex_state = 16}, - [437] = {.lex_state = 39}, - [438] = {.lex_state = 39}, - [439] = {.lex_state = 39}, - [440] = {.lex_state = 39}, - [441] = {.lex_state = 39}, + [424] = {.lex_state = 33}, + [425] = {.lex_state = 19}, + [426] = {.lex_state = 17}, + [427] = {.lex_state = 41}, + [428] = {.lex_state = 41}, + [429] = {.lex_state = 27}, + [430] = {.lex_state = 17}, + [431] = {.lex_state = 17}, + [432] = {.lex_state = 17}, + [433] = {.lex_state = 27}, + [434] = {.lex_state = 27}, + [435] = {.lex_state = 17}, + [436] = {.lex_state = 17}, + [437] = {.lex_state = 27}, + [438] = {.lex_state = 29}, + [439] = {.lex_state = 45}, + [440] = {.lex_state = 17}, + [441] = {.lex_state = 17}, [442] = {.lex_state = 19}, - [443] = {.lex_state = 19}, + [443] = {.lex_state = 39}, [444] = {.lex_state = 29}, [445] = {.lex_state = 29}, - [446] = {.lex_state = 29}, - [447] = {.lex_state = 29}, - [448] = {.lex_state = 29}, - [449] = {.lex_state = 39}, - [450] = {.lex_state = 39}, - [451] = {.lex_state = 21}, + [446] = {.lex_state = 21}, + [447] = {.lex_state = 39}, + [448] = {.lex_state = 19}, + [449] = {.lex_state = 29}, + [450] = {.lex_state = 29}, + [451] = {.lex_state = 39}, [452] = {.lex_state = 29}, - [453] = {.lex_state = 39}, - [454] = {.lex_state = 39}, + [453] = {.lex_state = 19}, + [454] = {.lex_state = 19}, [455] = {.lex_state = 39}, [456] = {.lex_state = 39}, [457] = {.lex_state = 39}, - [458] = {.lex_state = 19}, - [459] = {.lex_state = 39}, - [460] = {.lex_state = 19}, - [461] = {.lex_state = 34}, - [462] = {.lex_state = 51}, - [463] = {.lex_state = 19}, - [464] = {.lex_state = 19}, - [465] = {.lex_state = 19}, - [466] = {.lex_state = 33}, - [467] = {.lex_state = 29}, - [468] = {.lex_state = 19}, - [469] = {.lex_state = 29}, - [470] = {.lex_state = 30}, - [471] = {.lex_state = 51}, + [458] = {.lex_state = 29}, + [459] = {.lex_state = 19}, + [460] = {.lex_state = 21}, + [461] = {.lex_state = 29}, + [462] = {.lex_state = 39}, + [463] = {.lex_state = 39}, + [464] = {.lex_state = 39}, + [465] = {.lex_state = 39}, + [466] = {.lex_state = 19}, + [467] = {.lex_state = 19}, + [468] = {.lex_state = 51}, + [469] = {.lex_state = 19}, + [470] = {.lex_state = 19}, + [471] = {.lex_state = 39}, [472] = {.lex_state = 19}, - [473] = {.lex_state = 19}, + [473] = {.lex_state = 29}, [474] = {.lex_state = 19}, - [475] = {.lex_state = 19}, - [476] = {.lex_state = 33}, + [475] = {.lex_state = 39}, + [476] = {.lex_state = 39}, [477] = {.lex_state = 19}, - [478] = {.lex_state = 21}, - [479] = {.lex_state = 16}, - [480] = {.lex_state = 30}, - [481] = {.lex_state = 30}, + [478] = {.lex_state = 39}, + [479] = {.lex_state = 19}, + [480] = {.lex_state = 39}, + [481] = {.lex_state = 39}, [482] = {.lex_state = 34}, - [483] = {.lex_state = 8}, + [483] = {.lex_state = 29}, [484] = {.lex_state = 30}, - [485] = {.lex_state = 30}, - [486] = {.lex_state = 30}, - [487] = {.lex_state = 30}, - [488] = {.lex_state = 30}, - [489] = {.lex_state = 30}, - [490] = {.lex_state = 19}, - [491] = {.lex_state = 30}, - [492] = {.lex_state = 34}, - [493] = {.lex_state = 19}, - [494] = {.lex_state = 30}, - [495] = {.lex_state = 8}, - [496] = {.lex_state = 21}, - [497] = {.lex_state = 16}, - [498] = {.lex_state = 9}, - [499] = {.lex_state = 24}, - [500] = {.lex_state = 16}, - [501] = {.lex_state = 16}, - [502] = {.lex_state = 16}, - [503] = {.lex_state = 16}, - [504] = {.lex_state = 16}, - [505] = {.lex_state = 16}, - [506] = {.lex_state = 16}, - [507] = {.lex_state = 16}, - [508] = {.lex_state = 16}, - [509] = {.lex_state = 16}, + [485] = {.lex_state = 16}, + [486] = {.lex_state = 19}, + [487] = {.lex_state = 33}, + [488] = {.lex_state = 19}, + [489] = {.lex_state = 39}, + [490] = {.lex_state = 33}, + [491] = {.lex_state = 51}, + [492] = {.lex_state = 19}, + [493] = {.lex_state = 29}, + [494] = {.lex_state = 39}, + [495] = {.lex_state = 19}, + [496] = {.lex_state = 39}, + [497] = {.lex_state = 30}, + [498] = {.lex_state = 30}, + [499] = {.lex_state = 30}, + [500] = {.lex_state = 34}, + [501] = {.lex_state = 8}, + [502] = {.lex_state = 30}, + [503] = {.lex_state = 19}, + [504] = {.lex_state = 30}, + [505] = {.lex_state = 8}, + [506] = {.lex_state = 30}, + [507] = {.lex_state = 30}, + [508] = {.lex_state = 34}, + [509] = {.lex_state = 30}, [510] = {.lex_state = 16}, - [511] = {.lex_state = 16}, - [512] = {.lex_state = 16}, - [513] = {.lex_state = 16}, - [514] = {.lex_state = 16}, - [515] = {.lex_state = 16}, + [511] = {.lex_state = 19}, + [512] = {.lex_state = 30}, + [513] = {.lex_state = 30}, + [514] = {.lex_state = 9}, + [515] = {.lex_state = 21}, [516] = {.lex_state = 16}, - [517] = {.lex_state = 16}, - [518] = {.lex_state = 16}, + [517] = {.lex_state = 8}, + [518] = {.lex_state = 9}, [519] = {.lex_state = 16}, - [520] = {.lex_state = 16}, - [521] = {.lex_state = 9}, + [520] = {.lex_state = 24}, + [521] = {.lex_state = 16}, [522] = {.lex_state = 16}, - [523] = {.lex_state = 8}, - [524] = {.lex_state = 8}, - [525] = {.lex_state = 24}, + [523] = {.lex_state = 16}, + [524] = {.lex_state = 16}, + [525] = {.lex_state = 16}, [526] = {.lex_state = 16}, [527] = {.lex_state = 16}, [528] = {.lex_state = 16}, @@ -18902,131 +19067,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [531] = {.lex_state = 16}, [532] = {.lex_state = 16}, [533] = {.lex_state = 16}, - [534] = {.lex_state = 16}, + [534] = {.lex_state = 8}, [535] = {.lex_state = 16}, [536] = {.lex_state = 16}, - [537] = {.lex_state = 16}, - [538] = {.lex_state = 8}, + [537] = {.lex_state = 8}, + [538] = {.lex_state = 16}, [539] = {.lex_state = 16}, [540] = {.lex_state = 16}, - [541] = {.lex_state = 16}, - [542] = {.lex_state = 16}, + [541] = {.lex_state = 8}, + [542] = {.lex_state = 8}, [543] = {.lex_state = 16}, - [544] = {.lex_state = 8}, + [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 = 9}, - [552] = {.lex_state = 9}, - [553] = {.lex_state = 25}, - [554] = {.lex_state = 25}, - [555] = {.lex_state = 29}, - [556] = {.lex_state = 16}, + [551] = {.lex_state = 16}, + [552] = {.lex_state = 16}, + [553] = {.lex_state = 16}, + [554] = {.lex_state = 16}, + [555] = {.lex_state = 16}, + [556] = {.lex_state = 24}, [557] = {.lex_state = 16}, - [558] = {.lex_state = 9}, - [559] = {.lex_state = 29}, + [558] = {.lex_state = 16}, + [559] = {.lex_state = 16}, [560] = {.lex_state = 16}, [561] = {.lex_state = 16}, - [562] = {.lex_state = 16}, - [563] = {.lex_state = 9}, + [562] = {.lex_state = 9}, + [563] = {.lex_state = 16}, [564] = {.lex_state = 16}, [565] = {.lex_state = 16}, [566] = {.lex_state = 16}, [567] = {.lex_state = 16}, [568] = {.lex_state = 16}, - [569] = {.lex_state = 37}, - [570] = {.lex_state = 16}, - [571] = {.lex_state = 16}, - [572] = {.lex_state = 30}, + [569] = {.lex_state = 16}, + [570] = {.lex_state = 8}, + [571] = {.lex_state = 29}, + [572] = {.lex_state = 16}, [573] = {.lex_state = 16}, - [574] = {.lex_state = 16}, - [575] = {.lex_state = 30}, - [576] = {.lex_state = 16}, - [577] = {.lex_state = 37}, - [578] = {.lex_state = 16}, - [579] = {.lex_state = 37}, - [580] = {.lex_state = 16}, - [581] = {.lex_state = 16}, - [582] = {.lex_state = 16}, - [583] = {.lex_state = 16}, + [574] = {.lex_state = 9}, + [575] = {.lex_state = 16}, + [576] = {.lex_state = 25}, + [577] = {.lex_state = 16}, + [578] = {.lex_state = 9}, + [579] = {.lex_state = 16}, + [580] = {.lex_state = 9}, + [581] = {.lex_state = 29}, + [582] = {.lex_state = 9}, + [583] = {.lex_state = 9}, [584] = {.lex_state = 16}, - [585] = {.lex_state = 37}, + [585] = {.lex_state = 25}, [586] = {.lex_state = 16}, [587] = {.lex_state = 16}, - [588] = {.lex_state = 29}, - [589] = {.lex_state = 29}, - [590] = {.lex_state = 29}, - [591] = {.lex_state = 29}, - [592] = {.lex_state = 38}, - [593] = {.lex_state = 29}, - [594] = {.lex_state = 38}, - [595] = {.lex_state = 29}, - [596] = {.lex_state = 29}, - [597] = {.lex_state = 30}, - [598] = {.lex_state = 38}, - [599] = {.lex_state = 29}, - [600] = {.lex_state = 38}, - [601] = {.lex_state = 29}, - [602] = {.lex_state = 29}, - [603] = {.lex_state = 29}, - [604] = {.lex_state = 29}, - [605] = {.lex_state = 29}, - [606] = {.lex_state = 29}, - [607] = {.lex_state = 29}, - [608] = {.lex_state = 29}, + [588] = {.lex_state = 37}, + [589] = {.lex_state = 16}, + [590] = {.lex_state = 16}, + [591] = {.lex_state = 16}, + [592] = {.lex_state = 37}, + [593] = {.lex_state = 16}, + [594] = {.lex_state = 16}, + [595] = {.lex_state = 16}, + [596] = {.lex_state = 30}, + [597] = {.lex_state = 16}, + [598] = {.lex_state = 16}, + [599] = {.lex_state = 16}, + [600] = {.lex_state = 16}, + [601] = {.lex_state = 16}, + [602] = {.lex_state = 16}, + [603] = {.lex_state = 16}, + [604] = {.lex_state = 37}, + [605] = {.lex_state = 37}, + [606] = {.lex_state = 30}, + [607] = {.lex_state = 16}, + [608] = {.lex_state = 16}, [609] = {.lex_state = 29}, - [610] = {.lex_state = 29}, + [610] = {.lex_state = 16}, [611] = {.lex_state = 29}, - [612] = {.lex_state = 29}, + [612] = {.lex_state = 38}, [613] = {.lex_state = 30}, - [614] = {.lex_state = 30}, - [615] = {.lex_state = 30}, - [616] = {.lex_state = 30}, - [617] = {.lex_state = 30}, - [618] = {.lex_state = 30}, - [619] = {.lex_state = 30}, - [620] = {.lex_state = 30}, - [621] = {.lex_state = 30}, - [622] = {.lex_state = 30}, - [623] = {.lex_state = 30}, - [624] = {.lex_state = 30}, - [625] = {.lex_state = 30}, - [626] = {.lex_state = 30}, - [627] = {.lex_state = 30}, - [628] = {.lex_state = 30}, - [629] = {.lex_state = 30}, - [630] = {.lex_state = 30}, - [631] = {.lex_state = 30}, - [632] = {.lex_state = 54}, - [633] = {.lex_state = 54}, - [634] = {.lex_state = 54}, - [635] = {.lex_state = 50}, - [636] = {.lex_state = 50}, - [637] = {.lex_state = 47}, - [638] = {.lex_state = 47}, - [639] = {.lex_state = 47}, - [640] = {.lex_state = 47}, - [641] = {.lex_state = 47}, - [642] = {.lex_state = 47}, - [643] = {.lex_state = 47}, - [644] = {.lex_state = 47}, - [645] = {.lex_state = 47}, - [646] = {.lex_state = 47}, - [647] = {.lex_state = 47}, - [648] = {.lex_state = 857}, - [649] = {.lex_state = 857}, - [650] = {.lex_state = 47}, - [651] = {.lex_state = 47}, - [652] = {.lex_state = 47}, - [653] = {.lex_state = 47}, - [654] = {.lex_state = 47}, - [655] = {.lex_state = 47}, - [656] = {.lex_state = 47}, - [657] = {.lex_state = 47}, - [658] = {.lex_state = 47}, + [614] = {.lex_state = 29}, + [615] = {.lex_state = 29}, + [616] = {.lex_state = 29}, + [617] = {.lex_state = 29}, + [618] = {.lex_state = 29}, + [619] = {.lex_state = 29}, + [620] = {.lex_state = 29}, + [621] = {.lex_state = 29}, + [622] = {.lex_state = 38}, + [623] = {.lex_state = 29}, + [624] = {.lex_state = 29}, + [625] = {.lex_state = 29}, + [626] = {.lex_state = 29}, + [627] = {.lex_state = 29}, + [628] = {.lex_state = 29}, + [629] = {.lex_state = 29}, + [630] = {.lex_state = 38}, + [631] = {.lex_state = 38}, + [632] = {.lex_state = 29}, + [633] = {.lex_state = 29}, + [634] = {.lex_state = 29}, + [635] = {.lex_state = 30}, + [636] = {.lex_state = 30}, + [637] = {.lex_state = 30}, + [638] = {.lex_state = 30}, + [639] = {.lex_state = 30}, + [640] = {.lex_state = 30}, + [641] = {.lex_state = 30}, + [642] = {.lex_state = 30}, + [643] = {.lex_state = 30}, + [644] = {.lex_state = 30}, + [645] = {.lex_state = 30}, + [646] = {.lex_state = 30}, + [647] = {.lex_state = 30}, + [648] = {.lex_state = 30}, + [649] = {.lex_state = 30}, + [650] = {.lex_state = 30}, + [651] = {.lex_state = 30}, + [652] = {.lex_state = 30}, + [653] = {.lex_state = 30}, + [654] = {.lex_state = 54}, + [655] = {.lex_state = 54}, + [656] = {.lex_state = 54}, + [657] = {.lex_state = 50}, + [658] = {.lex_state = 50}, [659] = {.lex_state = 47}, [660] = {.lex_state = 47}, [661] = {.lex_state = 47}, @@ -19036,35 +19201,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [665] = {.lex_state = 47}, [666] = {.lex_state = 47}, [667] = {.lex_state = 47}, - [668] = {.lex_state = 46}, - [669] = {.lex_state = 46}, - [670] = {.lex_state = 46}, - [671] = {.lex_state = 46}, - [672] = {.lex_state = 46}, - [673] = {.lex_state = 46}, - [674] = {.lex_state = 46}, - [675] = {.lex_state = 43}, - [676] = {.lex_state = 43}, - [677] = {.lex_state = 43}, - [678] = {.lex_state = 52}, - [679] = {.lex_state = 43}, - [680] = {.lex_state = 43}, - [681] = {.lex_state = 43}, - [682] = {.lex_state = 43}, - [683] = {.lex_state = 43}, - [684] = {.lex_state = 43}, - [685] = {.lex_state = 43}, - [686] = {.lex_state = 43}, - [687] = {.lex_state = 49}, - [688] = {.lex_state = 43}, - [689] = {.lex_state = 43}, - [690] = {.lex_state = 43}, - [691] = {.lex_state = 43}, - [692] = {.lex_state = 43}, - [693] = {.lex_state = 43}, - [694] = {.lex_state = 43}, - [695] = {.lex_state = 43}, - [696] = {.lex_state = 43}, + [668] = {.lex_state = 47}, + [669] = {.lex_state = 47}, + [670] = {.lex_state = 47}, + [671] = {.lex_state = 47}, + [672] = {.lex_state = 47}, + [673] = {.lex_state = 863}, + [674] = {.lex_state = 47}, + [675] = {.lex_state = 47}, + [676] = {.lex_state = 863}, + [677] = {.lex_state = 47}, + [678] = {.lex_state = 47}, + [679] = {.lex_state = 47}, + [680] = {.lex_state = 47}, + [681] = {.lex_state = 47}, + [682] = {.lex_state = 47}, + [683] = {.lex_state = 47}, + [684] = {.lex_state = 47}, + [685] = {.lex_state = 47}, + [686] = {.lex_state = 47}, + [687] = {.lex_state = 47}, + [688] = {.lex_state = 47}, + [689] = {.lex_state = 47}, + [690] = {.lex_state = 46}, + [691] = {.lex_state = 46}, + [692] = {.lex_state = 46}, + [693] = {.lex_state = 46}, + [694] = {.lex_state = 46}, + [695] = {.lex_state = 46}, + [696] = {.lex_state = 46}, [697] = {.lex_state = 43}, [698] = {.lex_state = 43}, [699] = {.lex_state = 43}, @@ -19074,13 +19239,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 43}, [704] = {.lex_state = 43}, [705] = {.lex_state = 43}, - [706] = {.lex_state = 43}, + [706] = {.lex_state = 49}, [707] = {.lex_state = 43}, [708] = {.lex_state = 43}, [709] = {.lex_state = 43}, [710] = {.lex_state = 43}, [711] = {.lex_state = 43}, - [712] = {.lex_state = 43}, + [712] = {.lex_state = 52}, [713] = {.lex_state = 43}, [714] = {.lex_state = 43}, [715] = {.lex_state = 43}, @@ -19220,810 +19385,810 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [849] = {.lex_state = 43}, [850] = {.lex_state = 43}, [851] = {.lex_state = 43}, - [852] = {.lex_state = 857}, - [853] = {.lex_state = 857}, - [854] = {.lex_state = 86}, - [855] = {.lex_state = 857}, - [856] = {.lex_state = 857}, - [857] = {.lex_state = 857}, - [858] = {.lex_state = 58}, - [859] = {.lex_state = 857}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 857}, - [862] = {.lex_state = 857}, - [863] = {.lex_state = 857}, - [864] = {.lex_state = 857}, - [865] = {.lex_state = 857}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 857}, - [868] = {.lex_state = 58}, - [869] = {.lex_state = 857}, - [870] = {.lex_state = 857}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 857}, - [873] = {.lex_state = 58}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 857}, - [876] = {.lex_state = 857}, - [877] = {.lex_state = 857}, - [878] = {.lex_state = 857}, - [879] = {.lex_state = 65}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 857}, + [852] = {.lex_state = 43}, + [853] = {.lex_state = 43}, + [854] = {.lex_state = 43}, + [855] = {.lex_state = 43}, + [856] = {.lex_state = 43}, + [857] = {.lex_state = 43}, + [858] = {.lex_state = 43}, + [859] = {.lex_state = 43}, + [860] = {.lex_state = 43}, + [861] = {.lex_state = 43}, + [862] = {.lex_state = 43}, + [863] = {.lex_state = 43}, + [864] = {.lex_state = 43}, + [865] = {.lex_state = 43}, + [866] = {.lex_state = 43}, + [867] = {.lex_state = 43}, + [868] = {.lex_state = 43}, + [869] = {.lex_state = 43}, + [870] = {.lex_state = 43}, + [871] = {.lex_state = 43}, + [872] = {.lex_state = 43}, + [873] = {.lex_state = 43}, + [874] = {.lex_state = 863}, + [875] = {.lex_state = 863}, + [876] = {.lex_state = 863}, + [877] = {.lex_state = 863}, + [878] = {.lex_state = 86}, + [879] = {.lex_state = 863}, + [880] = {.lex_state = 863}, + [881] = {.lex_state = 58}, + [882] = {.lex_state = 58}, [883] = {.lex_state = 58}, - [884] = {.lex_state = 58}, - [885] = {.lex_state = 857}, - [886] = {.lex_state = 87}, - [887] = {.lex_state = 58}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 863}, + [886] = {.lex_state = 863}, + [887] = {.lex_state = 863}, [888] = {.lex_state = 0}, - [889] = {.lex_state = 857}, + [889] = {.lex_state = 0}, [890] = {.lex_state = 0}, - [891] = {.lex_state = 857}, - [892] = {.lex_state = 59}, - [893] = {.lex_state = 857}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 857}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 857}, - [898] = {.lex_state = 0}, + [891] = {.lex_state = 863}, + [892] = {.lex_state = 863}, + [893] = {.lex_state = 863}, + [894] = {.lex_state = 863}, + [895] = {.lex_state = 863}, + [896] = {.lex_state = 863}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 863}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, + [900] = {.lex_state = 58}, + [901] = {.lex_state = 863}, [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 857}, - [905] = {.lex_state = 59}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 59}, - [908] = {.lex_state = 62}, - [909] = {.lex_state = 857}, - [910] = {.lex_state = 59}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0}, + [903] = {.lex_state = 863}, + [904] = {.lex_state = 58}, + [905] = {.lex_state = 863}, + [906] = {.lex_state = 59}, + [907] = {.lex_state = 863}, + [908] = {.lex_state = 65}, + [909] = {.lex_state = 58}, + [910] = {.lex_state = 863}, + [911] = {.lex_state = 863}, + [912] = {.lex_state = 87}, [913] = {.lex_state = 0}, - [914] = {.lex_state = 62}, + [914] = {.lex_state = 863}, [915] = {.lex_state = 0}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 857}, - [918] = {.lex_state = 63}, - [919] = {.lex_state = 62}, - [920] = {.lex_state = 63}, - [921] = {.lex_state = 59}, - [922] = {.lex_state = 63}, - [923] = {.lex_state = 66}, - [924] = {.lex_state = 59}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 63}, - [928] = {.lex_state = 63}, + [916] = {.lex_state = 59}, + [917] = {.lex_state = 59}, + [918] = {.lex_state = 863}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 863}, + [925] = {.lex_state = 863}, + [926] = {.lex_state = 863}, + [927] = {.lex_state = 62}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 63}, - [932] = {.lex_state = 63}, - [933] = {.lex_state = 857}, - [934] = {.lex_state = 0}, + [930] = {.lex_state = 863}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 62}, + [933] = {.lex_state = 59}, + [934] = {.lex_state = 63}, [935] = {.lex_state = 0}, - [936] = {.lex_state = 62}, - [937] = {.lex_state = 62}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 82}, - [940] = {.lex_state = 0}, + [936] = {.lex_state = 863}, + [937] = {.lex_state = 63}, + [938] = {.lex_state = 62}, + [939] = {.lex_state = 63}, + [940] = {.lex_state = 63}, [941] = {.lex_state = 0}, - [942] = {.lex_state = 62}, - [943] = {.lex_state = 857}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 63}, [944] = {.lex_state = 0}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 857}, - [947] = {.lex_state = 857}, - [948] = {.lex_state = 857}, - [949] = {.lex_state = 857}, - [950] = {.lex_state = 54}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 857}, + [945] = {.lex_state = 63}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 59}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 59}, + [951] = {.lex_state = 66}, + [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 60}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 857}, - [957] = {.lex_state = 857}, - [958] = {.lex_state = 857}, - [959] = {.lex_state = 857}, - [960] = {.lex_state = 857}, - [961] = {.lex_state = 857}, - [962] = {.lex_state = 61}, - [963] = {.lex_state = 857}, - [964] = {.lex_state = 857}, - [965] = {.lex_state = 60}, - [966] = {.lex_state = 54}, - [967] = {.lex_state = 60}, - [968] = {.lex_state = 857}, - [969] = {.lex_state = 67}, + [954] = {.lex_state = 63}, + [955] = {.lex_state = 863}, + [956] = {.lex_state = 0}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 82}, + [959] = {.lex_state = 62}, + [960] = {.lex_state = 62}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 62}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 54}, + [968] = {.lex_state = 863}, + [969] = {.lex_state = 863}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 54}, - [972] = {.lex_state = 857}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 54}, - [975] = {.lex_state = 857}, - [976] = {.lex_state = 61}, - [977] = {.lex_state = 54}, + [971] = {.lex_state = 863}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 863}, + [974] = {.lex_state = 863}, + [975] = {.lex_state = 863}, + [976] = {.lex_state = 60}, + [977] = {.lex_state = 0}, [978] = {.lex_state = 54}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 63}, - [981] = {.lex_state = 857}, - [982] = {.lex_state = 69}, - [983] = {.lex_state = 857}, - [984] = {.lex_state = 63}, - [985] = {.lex_state = 0}, + [979] = {.lex_state = 60}, + [980] = {.lex_state = 863}, + [981] = {.lex_state = 863}, + [982] = {.lex_state = 863}, + [983] = {.lex_state = 863}, + [984] = {.lex_state = 863}, + [985] = {.lex_state = 61}, [986] = {.lex_state = 54}, - [987] = {.lex_state = 54}, - [988] = {.lex_state = 54}, - [989] = {.lex_state = 857}, - [990] = {.lex_state = 857}, - [991] = {.lex_state = 857}, - [992] = {.lex_state = 60}, - [993] = {.lex_state = 857}, - [994] = {.lex_state = 857}, - [995] = {.lex_state = 857}, - [996] = {.lex_state = 54}, - [997] = {.lex_state = 60}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 61}, - [1001] = {.lex_state = 857}, - [1002] = {.lex_state = 857}, - [1003] = {.lex_state = 60}, - [1004] = {.lex_state = 43}, - [1005] = {.lex_state = 857}, - [1006] = {.lex_state = 43}, - [1007] = {.lex_state = 857}, - [1008] = {.lex_state = 43}, - [1009] = {.lex_state = 54}, - [1010] = {.lex_state = 54}, - [1011] = {.lex_state = 68}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 42}, - [1014] = {.lex_state = 43}, - [1015] = {.lex_state = 43}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 61}, - [1019] = {.lex_state = 43}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 857}, - [1022] = {.lex_state = 43}, - [1023] = {.lex_state = 43}, + [987] = {.lex_state = 863}, + [988] = {.lex_state = 863}, + [989] = {.lex_state = 863}, + [990] = {.lex_state = 863}, + [991] = {.lex_state = 60}, + [992] = {.lex_state = 69}, + [993] = {.lex_state = 54}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 863}, + [996] = {.lex_state = 863}, + [997] = {.lex_state = 863}, + [998] = {.lex_state = 54}, + [999] = {.lex_state = 54}, + [1000] = {.lex_state = 863}, + [1001] = {.lex_state = 863}, + [1002] = {.lex_state = 54}, + [1003] = {.lex_state = 54}, + [1004] = {.lex_state = 54}, + [1005] = {.lex_state = 863}, + [1006] = {.lex_state = 61}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 863}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 60}, + [1011] = {.lex_state = 60}, + [1012] = {.lex_state = 67}, + [1013] = {.lex_state = 63}, + [1014] = {.lex_state = 60}, + [1015] = {.lex_state = 0}, + [1016] = {.lex_state = 54}, + [1017] = {.lex_state = 863}, + [1018] = {.lex_state = 54}, + [1019] = {.lex_state = 863}, + [1020] = {.lex_state = 863}, + [1021] = {.lex_state = 61}, + [1022] = {.lex_state = 863}, + [1023] = {.lex_state = 863}, [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 857}, - [1027] = {.lex_state = 61}, - [1028] = {.lex_state = 61}, - [1029] = {.lex_state = 54}, - [1030] = {.lex_state = 857}, - [1031] = {.lex_state = 857}, - [1032] = {.lex_state = 857}, - [1033] = {.lex_state = 857}, - [1034] = {.lex_state = 857}, - [1035] = {.lex_state = 54}, - [1036] = {.lex_state = 857}, - [1037] = {.lex_state = 54}, - [1038] = {.lex_state = 857}, - [1039] = {.lex_state = 54}, + [1025] = {.lex_state = 63}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 863}, + [1028] = {.lex_state = 68}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 863}, + [1032] = {.lex_state = 43}, + [1033] = {.lex_state = 61}, + [1034] = {.lex_state = 61}, + [1035] = {.lex_state = 863}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 61}, + [1038] = {.lex_state = 43}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 857}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 54}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 857}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, + [1041] = {.lex_state = 54}, + [1042] = {.lex_state = 43}, + [1043] = {.lex_state = 43}, + [1044] = {.lex_state = 42}, + [1045] = {.lex_state = 43}, + [1046] = {.lex_state = 54}, + [1047] = {.lex_state = 863}, [1048] = {.lex_state = 54}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 857}, - [1051] = {.lex_state = 857}, - [1052] = {.lex_state = 64}, - [1053] = {.lex_state = 54}, - [1054] = {.lex_state = 857}, + [1049] = {.lex_state = 43}, + [1050] = {.lex_state = 54}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 43}, + [1053] = {.lex_state = 43}, + [1054] = {.lex_state = 54}, [1055] = {.lex_state = 54}, - [1056] = {.lex_state = 857}, - [1057] = {.lex_state = 857}, - [1058] = {.lex_state = 70}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 96}, - [1061] = {.lex_state = 54}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 83}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 74}, - [1068] = {.lex_state = 54}, - [1069] = {.lex_state = 72}, - [1070] = {.lex_state = 74}, + [1056] = {.lex_state = 863}, + [1057] = {.lex_state = 863}, + [1058] = {.lex_state = 0}, + [1059] = {.lex_state = 64}, + [1060] = {.lex_state = 863}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 863}, + [1063] = {.lex_state = 863}, + [1064] = {.lex_state = 863}, + [1065] = {.lex_state = 96}, + [1066] = {.lex_state = 863}, + [1067] = {.lex_state = 863}, + [1068] = {.lex_state = 70}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 863}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 74}, - [1073] = {.lex_state = 74}, + [1072] = {.lex_state = 863}, + [1073] = {.lex_state = 54}, [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 857}, + [1075] = {.lex_state = 863}, [1076] = {.lex_state = 54}, - [1077] = {.lex_state = 857}, + [1077] = {.lex_state = 54}, [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 54}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 64}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 857}, - [1085] = {.lex_state = 72}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 64}, + [1079] = {.lex_state = 54}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 54}, + [1082] = {.lex_state = 863}, + [1083] = {.lex_state = 863}, + [1084] = {.lex_state = 863}, + [1085] = {.lex_state = 55}, + [1086] = {.lex_state = 55}, + [1087] = {.lex_state = 0}, [1088] = {.lex_state = 54}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 64}, - [1092] = {.lex_state = 857}, - [1093] = {.lex_state = 857}, - [1094] = {.lex_state = 55}, + [1089] = {.lex_state = 74}, + [1090] = {.lex_state = 54}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 54}, + [1093] = {.lex_state = 72}, + [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, + [1096] = {.lex_state = 863}, + [1097] = {.lex_state = 83}, [1098] = {.lex_state = 0}, [1099] = {.lex_state = 54}, - [1100] = {.lex_state = 55}, - [1101] = {.lex_state = 857}, - [1102] = {.lex_state = 100}, - [1103] = {.lex_state = 857}, - [1104] = {.lex_state = 857}, - [1105] = {.lex_state = 54}, - [1106] = {.lex_state = 857}, - [1107] = {.lex_state = 64}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 64}, + [1100] = {.lex_state = 74}, + [1101] = {.lex_state = 863}, + [1102] = {.lex_state = 64}, + [1103] = {.lex_state = 64}, + [1104] = {.lex_state = 0}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 863}, + [1108] = {.lex_state = 72}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 857}, - [1113] = {.lex_state = 54}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 74}, - [1116] = {.lex_state = 857}, - [1117] = {.lex_state = 857}, + [1112] = {.lex_state = 74}, + [1113] = {.lex_state = 74}, + [1114] = {.lex_state = 55}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 54}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 857}, - [1120] = {.lex_state = 857}, - [1121] = {.lex_state = 857}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 0}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 64}, + [1123] = {.lex_state = 64}, [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 73}, - [1126] = {.lex_state = 857}, - [1127] = {.lex_state = 857}, - [1128] = {.lex_state = 54}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 55}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 73}, - [1135] = {.lex_state = 0}, + [1125] = {.lex_state = 54}, + [1126] = {.lex_state = 863}, + [1127] = {.lex_state = 64}, + [1128] = {.lex_state = 863}, + [1129] = {.lex_state = 863}, + [1130] = {.lex_state = 74}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 863}, + [1133] = {.lex_state = 100}, + [1134] = {.lex_state = 863}, + [1135] = {.lex_state = 863}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 63}, - [1138] = {.lex_state = 63}, - [1139] = {.lex_state = 857}, - [1140] = {.lex_state = 93}, + [1137] = {.lex_state = 863}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 63}, - [1144] = {.lex_state = 63}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 63}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 63}, - [1149] = {.lex_state = 63}, - [1150] = {.lex_state = 63}, + [1142] = {.lex_state = 863}, + [1143] = {.lex_state = 863}, + [1144] = {.lex_state = 0}, + [1145] = {.lex_state = 863}, + [1146] = {.lex_state = 54}, + [1147] = {.lex_state = 863}, + [1148] = {.lex_state = 54}, + [1149] = {.lex_state = 73}, + [1150] = {.lex_state = 863}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 63}, - [1154] = {.lex_state = 0}, + [1152] = {.lex_state = 54}, + [1153] = {.lex_state = 863}, + [1154] = {.lex_state = 863}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 857}, + [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 857}, - [1159] = {.lex_state = 63}, - [1160] = {.lex_state = 857}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 857}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 857}, - [1165] = {.lex_state = 107}, - [1166] = {.lex_state = 857}, - [1167] = {.lex_state = 857}, - [1168] = {.lex_state = 857}, - [1169] = {.lex_state = 857}, - [1170] = {.lex_state = 857}, - [1171] = {.lex_state = 0}, + [1158] = {.lex_state = 73}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 63}, + [1161] = {.lex_state = 63}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 63}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 863}, + [1166] = {.lex_state = 93}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 63}, + [1170] = {.lex_state = 63}, + [1171] = {.lex_state = 863}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 54}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 857}, - [1178] = {.lex_state = 857}, - [1179] = {.lex_state = 857}, + [1173] = {.lex_state = 63}, + [1174] = {.lex_state = 0}, + [1175] = {.lex_state = 63}, + [1176] = {.lex_state = 63}, + [1177] = {.lex_state = 63}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 63}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 857}, - [1184] = {.lex_state = 857}, - [1185] = {.lex_state = 857}, + [1181] = {.lex_state = 107}, + [1182] = {.lex_state = 863}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 48}, - [1188] = {.lex_state = 857}, - [1189] = {.lex_state = 857}, - [1190] = {.lex_state = 48}, + [1187] = {.lex_state = 863}, + [1188] = {.lex_state = 863}, + [1189] = {.lex_state = 863}, + [1190] = {.lex_state = 863}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 72}, - [1193] = {.lex_state = 857}, - [1194] = {.lex_state = 48}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 857}, - [1197] = {.lex_state = 48}, - [1198] = {.lex_state = 48}, - [1199] = {.lex_state = 48}, - [1200] = {.lex_state = 857}, - [1201] = {.lex_state = 48}, - [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 857}, - [1204] = {.lex_state = 857}, - [1205] = {.lex_state = 857}, - [1206] = {.lex_state = 48}, + [1192] = {.lex_state = 863}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 863}, + [1195] = {.lex_state = 863}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 863}, + [1199] = {.lex_state = 863}, + [1200] = {.lex_state = 863}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 863}, + [1203] = {.lex_state = 863}, + [1204] = {.lex_state = 863}, + [1205] = {.lex_state = 863}, + [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 857}, - [1209] = {.lex_state = 857}, - [1210] = {.lex_state = 857}, - [1211] = {.lex_state = 857}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 857}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 54}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 863}, + [1212] = {.lex_state = 48}, + [1213] = {.lex_state = 48}, + [1214] = {.lex_state = 863}, + [1215] = {.lex_state = 48}, + [1216] = {.lex_state = 863}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 48}, + [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 48}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 48}, + [1220] = {.lex_state = 863}, + [1221] = {.lex_state = 863}, + [1222] = {.lex_state = 55}, [1223] = {.lex_state = 48}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 48}, - [1226] = {.lex_state = 48}, - [1227] = {.lex_state = 857}, - [1228] = {.lex_state = 0}, + [1224] = {.lex_state = 48}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 48}, + [1228] = {.lex_state = 863}, [1229] = {.lex_state = 48}, - [1230] = {.lex_state = 48}, - [1231] = {.lex_state = 857}, - [1232] = {.lex_state = 857}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 48}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 863}, + [1232] = {.lex_state = 48}, + [1233] = {.lex_state = 55}, + [1234] = {.lex_state = 863}, [1235] = {.lex_state = 48}, - [1236] = {.lex_state = 857}, - [1237] = {.lex_state = 48}, - [1238] = {.lex_state = 48}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 857}, - [1241] = {.lex_state = 857}, - [1242] = {.lex_state = 857}, - [1243] = {.lex_state = 48}, - [1244] = {.lex_state = 48}, - [1245] = {.lex_state = 857}, - [1246] = {.lex_state = 857}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 857}, - [1249] = {.lex_state = 20}, - [1250] = {.lex_state = 857}, - [1251] = {.lex_state = 857}, - [1252] = {.lex_state = 857}, - [1253] = {.lex_state = 857}, - [1254] = {.lex_state = 20}, - [1255] = {.lex_state = 857}, - [1256] = {.lex_state = 55}, - [1257] = {.lex_state = 101}, - [1258] = {.lex_state = 55}, - [1259] = {.lex_state = 857}, - [1260] = {.lex_state = 857}, - [1261] = {.lex_state = 857}, - [1262] = {.lex_state = 76}, - [1263] = {.lex_state = 857}, - [1264] = {.lex_state = 95}, - [1265] = {.lex_state = 857}, - [1266] = {.lex_state = 95}, - [1267] = {.lex_state = 55}, - [1268] = {.lex_state = 857}, - [1269] = {.lex_state = 857}, - [1270] = {.lex_state = 857}, - [1271] = {.lex_state = 857}, - [1272] = {.lex_state = 857}, - [1273] = {.lex_state = 95}, - [1274] = {.lex_state = 857}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 857}, + [1236] = {.lex_state = 48}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 863}, + [1239] = {.lex_state = 863}, + [1240] = {.lex_state = 863}, + [1241] = {.lex_state = 48}, + [1242] = {.lex_state = 863}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 48}, + [1247] = {.lex_state = 863}, + [1248] = {.lex_state = 48}, + [1249] = {.lex_state = 48}, + [1250] = {.lex_state = 863}, + [1251] = {.lex_state = 863}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 48}, + [1254] = {.lex_state = 863}, + [1255] = {.lex_state = 48}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 48}, + [1258] = {.lex_state = 863}, + [1259] = {.lex_state = 48}, + [1260] = {.lex_state = 48}, + [1261] = {.lex_state = 48}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 55}, + [1264] = {.lex_state = 48}, + [1265] = {.lex_state = 72}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 48}, + [1268] = {.lex_state = 863}, + [1269] = {.lex_state = 863}, + [1270] = {.lex_state = 48}, + [1271] = {.lex_state = 863}, + [1272] = {.lex_state = 863}, + [1273] = {.lex_state = 863}, + [1274] = {.lex_state = 20}, + [1275] = {.lex_state = 863}, + [1276] = {.lex_state = 95}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 857}, - [1279] = {.lex_state = 71}, - [1280] = {.lex_state = 857}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 857}, - [1283] = {.lex_state = 857}, - [1284] = {.lex_state = 55}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 857}, - [1287] = {.lex_state = 857}, - [1288] = {.lex_state = 857}, - [1289] = {.lex_state = 857}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 857}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 857}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 91}, - [1298] = {.lex_state = 857}, - [1299] = {.lex_state = 857}, - [1300] = {.lex_state = 857}, - [1301] = {.lex_state = 857}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 857}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, + [1278] = {.lex_state = 95}, + [1279] = {.lex_state = 863}, + [1280] = {.lex_state = 863}, + [1281] = {.lex_state = 863}, + [1282] = {.lex_state = 863}, + [1283] = {.lex_state = 863}, + [1284] = {.lex_state = 863}, + [1285] = {.lex_state = 95}, + [1286] = {.lex_state = 863}, + [1287] = {.lex_state = 102}, + [1288] = {.lex_state = 55}, + [1289] = {.lex_state = 76}, + [1290] = {.lex_state = 863}, + [1291] = {.lex_state = 863}, + [1292] = {.lex_state = 863}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 863}, + [1295] = {.lex_state = 863}, + [1296] = {.lex_state = 55}, + [1297] = {.lex_state = 863}, + [1298] = {.lex_state = 863}, + [1299] = {.lex_state = 55}, + [1300] = {.lex_state = 863}, + [1301] = {.lex_state = 863}, + [1302] = {.lex_state = 20}, + [1303] = {.lex_state = 863}, + [1304] = {.lex_state = 102}, + [1305] = {.lex_state = 101}, [1306] = {.lex_state = 55}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 857}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 103}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 857}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 857}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 857}, - [1318] = {.lex_state = 857}, - [1319] = {.lex_state = 857}, - [1320] = {.lex_state = 101}, - [1321] = {.lex_state = 857}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 857}, - [1325] = {.lex_state = 97}, - [1326] = {.lex_state = 857}, - [1327] = {.lex_state = 857}, - [1328] = {.lex_state = 857}, - [1329] = {.lex_state = 857}, - [1330] = {.lex_state = 857}, + [1307] = {.lex_state = 863}, + [1308] = {.lex_state = 863}, + [1309] = {.lex_state = 863}, + [1310] = {.lex_state = 863}, + [1311] = {.lex_state = 97}, + [1312] = {.lex_state = 863}, + [1313] = {.lex_state = 863}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 55}, + [1316] = {.lex_state = 55}, + [1317] = {.lex_state = 863}, + [1318] = {.lex_state = 55}, + [1319] = {.lex_state = 55}, + [1320] = {.lex_state = 863}, + [1321] = {.lex_state = 863}, + [1322] = {.lex_state = 863}, + [1323] = {.lex_state = 863}, + [1324] = {.lex_state = 863}, + [1325] = {.lex_state = 55}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 863}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 857}, - [1333] = {.lex_state = 857}, - [1334] = {.lex_state = 857}, + [1332] = {.lex_state = 863}, + [1333] = {.lex_state = 863}, + [1334] = {.lex_state = 71}, [1335] = {.lex_state = 55}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 857}, - [1338] = {.lex_state = 103}, - [1339] = {.lex_state = 857}, - [1340] = {.lex_state = 857}, + [1337] = {.lex_state = 863}, + [1338] = {.lex_state = 863}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 863}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 857}, - [1344] = {.lex_state = 55}, + [1343] = {.lex_state = 863}, + [1344] = {.lex_state = 863}, [1345] = {.lex_state = 55}, - [1346] = {.lex_state = 857}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 55}, - [1349] = {.lex_state = 105}, - [1350] = {.lex_state = 55}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 857}, - [1354] = {.lex_state = 55}, - [1355] = {.lex_state = 857}, - [1356] = {.lex_state = 105}, - [1357] = {.lex_state = 857}, - [1358] = {.lex_state = 857}, - [1359] = {.lex_state = 16}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, + [1346] = {.lex_state = 863}, + [1347] = {.lex_state = 55}, + [1348] = {.lex_state = 863}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 91}, + [1352] = {.lex_state = 863}, + [1353] = {.lex_state = 55}, + [1354] = {.lex_state = 863}, + [1355] = {.lex_state = 55}, + [1356] = {.lex_state = 101}, + [1357] = {.lex_state = 55}, + [1358] = {.lex_state = 863}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 863}, + [1361] = {.lex_state = 863}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 55}, - [1365] = {.lex_state = 98}, + [1363] = {.lex_state = 863}, + [1364] = {.lex_state = 863}, + [1365] = {.lex_state = 863}, [1366] = {.lex_state = 55}, - [1367] = {.lex_state = 48}, - [1368] = {.lex_state = 106}, - [1369] = {.lex_state = 857}, - [1370] = {.lex_state = 48}, - [1371] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 863}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 55}, + [1371] = {.lex_state = 863}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 857}, - [1374] = {.lex_state = 55}, - [1375] = {.lex_state = 857}, - [1376] = {.lex_state = 48}, - [1377] = {.lex_state = 857}, - [1378] = {.lex_state = 48}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 55}, + [1376] = {.lex_state = 55}, + [1377] = {.lex_state = 863}, + [1378] = {.lex_state = 0}, [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 857}, - [1381] = {.lex_state = 55}, - [1382] = {.lex_state = 48}, + [1380] = {.lex_state = 863}, + [1381] = {.lex_state = 863}, + [1382] = {.lex_state = 55}, [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 857}, - [1385] = {.lex_state = 55}, - [1386] = {.lex_state = 857}, - [1387] = {.lex_state = 55}, - [1388] = {.lex_state = 857}, - [1389] = {.lex_state = 857}, - [1390] = {.lex_state = 857}, - [1391] = {.lex_state = 55}, - [1392] = {.lex_state = 857}, - [1393] = {.lex_state = 63}, - [1394] = {.lex_state = 55}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 75}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 863}, + [1388] = {.lex_state = 863}, + [1389] = {.lex_state = 863}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 48}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 863}, + [1396] = {.lex_state = 106}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 55}, - [1400] = {.lex_state = 857}, - [1401] = {.lex_state = 48}, - [1402] = {.lex_state = 55}, - [1403] = {.lex_state = 857}, + [1399] = {.lex_state = 863}, + [1400] = {.lex_state = 863}, + [1401] = {.lex_state = 863}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 105}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 75}, - [1406] = {.lex_state = 104}, + [1405] = {.lex_state = 863}, + [1406] = {.lex_state = 0}, [1407] = {.lex_state = 106}, - [1408] = {.lex_state = 857}, - [1409] = {.lex_state = 857}, + [1408] = {.lex_state = 863}, + [1409] = {.lex_state = 0}, [1410] = {.lex_state = 48}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 106}, - [1413] = {.lex_state = 857}, + [1412] = {.lex_state = 48}, + [1413] = {.lex_state = 863}, [1414] = {.lex_state = 48}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 857}, + [1415] = {.lex_state = 863}, + [1416] = {.lex_state = 863}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 48}, - [1420] = {.lex_state = 857}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 55}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 857}, - [1425] = {.lex_state = 55}, - [1426] = {.lex_state = 57}, - [1427] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 863}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 104}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 863}, + [1426] = {.lex_state = 48}, + [1427] = {.lex_state = 106}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 857}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 42}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 857}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 20}, - [1442] = {.lex_state = 42}, - [1443] = {.lex_state = 57}, - [1444] = {.lex_state = 57}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 57}, - [1447] = {.lex_state = 57}, - [1448] = {.lex_state = 57}, - [1449] = {.lex_state = 57}, - [1450] = {.lex_state = 57}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 57}, - [1453] = {.lex_state = 48}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 48}, - [1456] = {.lex_state = 857}, + [1429] = {.lex_state = 863}, + [1430] = {.lex_state = 48}, + [1431] = {.lex_state = 48}, + [1432] = {.lex_state = 48}, + [1433] = {.lex_state = 863}, + [1434] = {.lex_state = 863}, + [1435] = {.lex_state = 105}, + [1436] = {.lex_state = 863}, + [1437] = {.lex_state = 863}, + [1438] = {.lex_state = 863}, + [1439] = {.lex_state = 63}, + [1440] = {.lex_state = 48}, + [1441] = {.lex_state = 863}, + [1442] = {.lex_state = 863}, + [1443] = {.lex_state = 863}, + [1444] = {.lex_state = 98}, + [1445] = {.lex_state = 16}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 863}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 20}, + [1452] = {.lex_state = 94}, + [1453] = {.lex_state = 863}, + [1454] = {.lex_state = 106}, + [1455] = {.lex_state = 42}, + [1456] = {.lex_state = 106}, [1457] = {.lex_state = 106}, - [1458] = {.lex_state = 57}, - [1459] = {.lex_state = 0}, + [1458] = {.lex_state = 106}, + [1459] = {.lex_state = 89}, [1460] = {.lex_state = 57}, - [1461] = {.lex_state = 57}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 57}, + [1463] = {.lex_state = 57}, [1464] = {.lex_state = 57}, [1465] = {.lex_state = 57}, - [1466] = {.lex_state = 48}, - [1467] = {.lex_state = 857}, + [1466] = {.lex_state = 57}, + [1467] = {.lex_state = 57}, [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 0}, + [1469] = {.lex_state = 103}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 57}, - [1472] = {.lex_state = 102}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 20}, - [1475] = {.lex_state = 57}, - [1476] = {.lex_state = 0}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 57}, + [1473] = {.lex_state = 57}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 92}, + [1476] = {.lex_state = 57}, [1477] = {.lex_state = 57}, - [1478] = {.lex_state = 106}, - [1479] = {.lex_state = 857}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 57}, - [1483] = {.lex_state = 857}, - [1484] = {.lex_state = 106}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 92}, + [1478] = {.lex_state = 57}, + [1479] = {.lex_state = 863}, + [1480] = {.lex_state = 57}, + [1481] = {.lex_state = 106}, + [1482] = {.lex_state = 106}, + [1483] = {.lex_state = 57}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 57}, + [1486] = {.lex_state = 57}, [1487] = {.lex_state = 57}, - [1488] = {.lex_state = 57}, - [1489] = {.lex_state = 0}, + [1488] = {.lex_state = 89}, + [1489] = {.lex_state = 57}, [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 89}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, + [1491] = {.lex_state = 57}, + [1492] = {.lex_state = 863}, + [1493] = {.lex_state = 57}, [1494] = {.lex_state = 57}, - [1495] = {.lex_state = 48}, - [1496] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 863}, [1497] = {.lex_state = 57}, - [1498] = {.lex_state = 48}, - [1499] = {.lex_state = 857}, - [1500] = {.lex_state = 857}, - [1501] = {.lex_state = 857}, - [1502] = {.lex_state = 57}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 57}, - [1506] = {.lex_state = 857}, - [1507] = {.lex_state = 106}, + [1498] = {.lex_state = 42}, + [1499] = {.lex_state = 57}, + [1500] = {.lex_state = 863}, + [1501] = {.lex_state = 57}, + [1502] = {.lex_state = 863}, + [1503] = {.lex_state = 57}, + [1504] = {.lex_state = 57}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 57}, + [1507] = {.lex_state = 57}, [1508] = {.lex_state = 106}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 106}, - [1511] = {.lex_state = 57}, + [1509] = {.lex_state = 57}, + [1510] = {.lex_state = 57}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 57}, - [1514] = {.lex_state = 106}, - [1515] = {.lex_state = 0}, + [1513] = {.lex_state = 863}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 57}, [1516] = {.lex_state = 57}, - [1517] = {.lex_state = 57}, + [1517] = {.lex_state = 48}, [1518] = {.lex_state = 57}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 48}, - [1521] = {.lex_state = 857}, - [1522] = {.lex_state = 857}, - [1523] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 863}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 863}, [1524] = {.lex_state = 0}, [1525] = {.lex_state = 0}, [1526] = {.lex_state = 48}, - [1527] = {.lex_state = 57}, + [1527] = {.lex_state = 0}, [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 57}, + [1529] = {.lex_state = 106}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 106}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 57}, - [1535] = {.lex_state = 57}, - [1536] = {.lex_state = 48}, - [1537] = {.lex_state = 857}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 0}, + [1534] = {.lex_state = 863}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 48}, + [1538] = {.lex_state = 48}, + [1539] = {.lex_state = 863}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 94}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 48}, - [1544] = {.lex_state = 857}, - [1545] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 863}, [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 48}, - [1550] = {.lex_state = 857}, - [1551] = {.lex_state = 857}, - [1552] = {.lex_state = 857}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, + [1547] = {.lex_state = 863}, + [1548] = {.lex_state = 48}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 48}, + [1554] = {.lex_state = 48}, + [1555] = {.lex_state = 20}, [1556] = {.lex_state = 0}, [1557] = {.lex_state = 0}, [1558] = {.lex_state = 0}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 48}, - [1562] = {.lex_state = 48}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 863}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, + [1564] = {.lex_state = 48}, + [1565] = {.lex_state = 863}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, + [1567] = {.lex_state = 48}, + [1568] = {.lex_state = 863}, [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 90}, + [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, + [1574] = {.lex_state = 863}, [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, + [1576] = {.lex_state = 48}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, + [1578] = {.lex_state = 54}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, + [1580] = {.lex_state = 48}, + [1581] = {.lex_state = 48}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 48}, + [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, + [1588] = {.lex_state = 48}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 48}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 48}, - [1594] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 48}, [1595] = {.lex_state = 0}, [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 48}, + [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, + [1602] = {.lex_state = 110}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, + [1604] = {.lex_state = 16}, + [1605] = {.lex_state = 48}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 48}, - [1611] = {.lex_state = 95}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, [1612] = {.lex_state = 0}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 48}, + [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 48}, - [1619] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 110}, [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 16}, + [1621] = {.lex_state = 0}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, + [1626] = {.lex_state = 109}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 16}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 110}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 48}, + [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 16}, + [1638] = {.lex_state = 0}, [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 108}, + [1640] = {.lex_state = 0}, [1641] = {.lex_state = 0}, [1642] = {.lex_state = 0}, [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 16}, + [1647] = {.lex_state = 48}, + [1648] = {.lex_state = 0}, [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 48}, + [1650] = {.lex_state = 54}, [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, + [1652] = {.lex_state = 48}, [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 109}, + [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, @@ -20044,232 +20209,232 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 48}, + [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, [1678] = {.lex_state = 0}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 48}, + [1680] = {.lex_state = 0}, [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, + [1684] = {.lex_state = 109}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 109}, - [1688] = {.lex_state = 54}, - [1689] = {.lex_state = 48}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 48}, - [1693] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 95}, [1694] = {.lex_state = 0}, [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, + [1697] = {.lex_state = 48}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 48}, - [1700] = {.lex_state = 48}, - [1701] = {.lex_state = 54}, - [1702] = {.lex_state = 48}, - [1703] = {.lex_state = 0}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 0}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 99}, [1704] = {.lex_state = 0}, [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, + [1706] = {.lex_state = 48}, [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 110}, + [1708] = {.lex_state = 863}, [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, + [1710] = {.lex_state = 16}, [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, + [1712] = {.lex_state = 54}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, + [1715] = {.lex_state = 20}, [1716] = {.lex_state = 0}, [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 95}, + [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, [1721] = {.lex_state = 0}, [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 109}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 20}, - [1729] = {.lex_state = 857}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 48}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 109}, + [1725] = {.lex_state = 108}, + [1726] = {.lex_state = 16}, + [1727] = {.lex_state = 16}, + [1728] = {.lex_state = 48}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 48}, + [1731] = {.lex_state = 95}, + [1732] = {.lex_state = 48}, + [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 54}, + [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, + [1740] = {.lex_state = 90}, [1741] = {.lex_state = 0}, [1742] = {.lex_state = 0}, [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, [1745] = {.lex_state = 0}, [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 99}, - [1748] = {.lex_state = 16}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 16}, + [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, [1753] = {.lex_state = 0}, [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 48}, - [1757] = {.lex_state = 48}, - [1758] = {.lex_state = 109}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 48}, + [1760] = {.lex_state = 48}, + [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 20}, + [1763] = {.lex_state = 16}, [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, + [1765] = {.lex_state = 48}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 48}, + [1767] = {.lex_state = 48}, + [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 48}, + [1770] = {.lex_state = 48}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, + [1773] = {.lex_state = 16}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, + [1777] = {.lex_state = 48}, + [1778] = {.lex_state = 48}, [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, + [1780] = {.lex_state = 48}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 48}, + [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 48}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 48}, + [1786] = {.lex_state = 48}, [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, + [1788] = {.lex_state = 48}, [1789] = {.lex_state = 0}, [1790] = {.lex_state = 48}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 857}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 48}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, + [1791] = {.lex_state = 48}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 48}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 863}, + [1796] = {.lex_state = 48}, + [1797] = {.lex_state = 54}, + [1798] = {.lex_state = 48}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 16}, + [1800] = {.lex_state = 0}, [1801] = {.lex_state = 48}, - [1802] = {.lex_state = 857}, - [1803] = {.lex_state = 48}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 48}, - [1806] = {.lex_state = 0}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 89}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 48}, + [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 48}, - [1812] = {.lex_state = 857}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 48}, - [1816] = {.lex_state = 92}, - [1817] = {.lex_state = 0}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 48}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, + [1819] = {.lex_state = 863}, + [1820] = {.lex_state = 48}, [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 48}, - [1823] = {.lex_state = 857}, + [1822] = {.lex_state = 0}, + [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, + [1825] = {.lex_state = 48}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, [1829] = {.lex_state = 48}, [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 48}, - [1833] = {.lex_state = 48}, + [1831] = {.lex_state = 863}, + [1832] = {.lex_state = 863}, + [1833] = {.lex_state = 109}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 48}, - [1836] = {.lex_state = 0}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 48}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, + [1840] = {.lex_state = 48}, [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 48}, - [1844] = {.lex_state = 0}, + [1842] = {.lex_state = 48}, + [1843] = {.lex_state = 92}, + [1844] = {.lex_state = 16}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 857}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 16}, + [1848] = {.lex_state = 48}, + [1849] = {.lex_state = 0}, [1850] = {.lex_state = 48}, - [1851] = {.lex_state = 48}, + [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, + [1853] = {.lex_state = 48}, [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 48}, - [1859] = {.lex_state = 48}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 48}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 48}, [1865] = {.lex_state = 48}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 857}, - [1868] = {.lex_state = 0}, + [1866] = {.lex_state = 863}, + [1867] = {.lex_state = 48}, + [1868] = {.lex_state = 48}, [1869] = {.lex_state = 48}, [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 48}, + [1871] = {.lex_state = 0}, [1872] = {.lex_state = 48}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 857}, + [1873] = {.lex_state = 48}, + [1874] = {.lex_state = 48}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 48}, - [1880] = {.lex_state = 48}, - [1881] = {.lex_state = 857}, - [1882] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 863}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 48}, - [1887] = {.lex_state = 48}, - [1888] = {.lex_state = 48}, - [1889] = {.lex_state = 48}, - [1890] = {.lex_state = 48}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 857}, + [1886] = {.lex_state = 20}, + [1887] = {.lex_state = 863}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 48}, + [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 48}, + [1894] = {.lex_state = 48}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, + [1897] = {.lex_state = 48}, [1898] = {.lex_state = 48}, [1899] = {.lex_state = 48}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, + [1900] = {.lex_state = 48}, + [1901] = {.lex_state = 863}, [1902] = {.lex_state = 0}, [1903] = {.lex_state = 48}, [1904] = {.lex_state = 0}, @@ -20277,100 +20442,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1906] = {.lex_state = 0}, [1907] = {.lex_state = 48}, [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 857}, - [1910] = {.lex_state = 857}, - [1911] = {.lex_state = 857}, + [1909] = {.lex_state = 0}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 48}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, + [1914] = {.lex_state = 863}, [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, + [1916] = {.lex_state = 48}, [1917] = {.lex_state = 0}, [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 48}, - [1920] = {.lex_state = 48}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, [1923] = {.lex_state = 48}, - [1924] = {.lex_state = 0}, + [1924] = {.lex_state = 48}, [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 54}, - [1928] = {.lex_state = 857}, - [1929] = {.lex_state = 857}, - [1930] = {.lex_state = 48}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 48}, - [1933] = {.lex_state = 0}, + [1932] = {.lex_state = 863}, + [1933] = {.lex_state = 48}, [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, + [1936] = {.lex_state = 863}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 48}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 857}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 48}, + [1939] = {.lex_state = 48}, + [1940] = {.lex_state = 48}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 48}, + [1943] = {.lex_state = 48}, + [1944] = {.lex_state = 863}, + [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 857}, + [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, + [1950] = {.lex_state = 16}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0}, + [1954] = {.lex_state = 863}, + [1955] = {.lex_state = 48}, [1956] = {.lex_state = 48}, - [1957] = {.lex_state = 0}, + [1957] = {.lex_state = 863}, [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 48}, [1961] = {.lex_state = 0}, [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, + [1964] = {.lex_state = 48}, [1965] = {.lex_state = 48}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 48}, - [1968] = {.lex_state = 857}, + [1966] = {.lex_state = 48}, + [1967] = {.lex_state = 0}, + [1968] = {.lex_state = 0}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 857}, - [1971] = {.lex_state = 48}, - [1972] = {.lex_state = 48}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 48}, + [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, + [1982] = {.lex_state = 48}, + [1983] = {.lex_state = 863}, + [1984] = {.lex_state = 863}, [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 0}, + [1986] = {.lex_state = 863}, [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, + [1989] = {.lex_state = 48}, + [1990] = {.lex_state = 48}, [1991] = {.lex_state = 0}, [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 857}, - [1994] = {.lex_state = 0}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 48}, [1995] = {.lex_state = 0}, [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, + [1997] = {.lex_state = 863}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 48}, + [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 0}, @@ -20398,7 +20563,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2027] = {.lex_state = 0}, [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 54}, + [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, [2032] = {.lex_state = 0}, [2033] = {.lex_state = 0}, @@ -20407,7 +20572,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 857}, + [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, [2041] = {.lex_state = 0}, [2042] = {.lex_state = 0}, @@ -20417,7 +20582,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2046] = {.lex_state = 0}, [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, + [2049] = {.lex_state = 20}, [2050] = {.lex_state = 0}, [2051] = {.lex_state = 0}, [2052] = {.lex_state = 0}, @@ -20430,7 +20595,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2059] = {.lex_state = 0}, [2060] = {.lex_state = 0}, [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, + [2062] = {.lex_state = 863}, [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, @@ -20456,7 +20621,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2085] = {.lex_state = 0}, [2086] = {.lex_state = 0}, [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 0}, + [2088] = {.lex_state = 48}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, @@ -20465,13 +20630,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 0}, + [2097] = {.lex_state = 53}, [2098] = {.lex_state = 0}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 0}, + [2103] = {.lex_state = 863}, [2104] = {.lex_state = 0}, [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, @@ -20488,7 +20653,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 48}, + [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, @@ -20496,11 +20661,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2125] = {.lex_state = 0}, [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 0}, + [2128] = {.lex_state = 863}, [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, + [2132] = {.lex_state = 48}, [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, [2135] = {.lex_state = 0}, @@ -20529,7 +20694,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2158] = {.lex_state = 0}, [2159] = {.lex_state = 0}, [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 53}, + [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, [2163] = {.lex_state = 0}, [2164] = {.lex_state = 0}, @@ -20538,7 +20703,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2167] = {.lex_state = 0}, [2168] = {.lex_state = 0}, [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 48}, + [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, @@ -20552,7 +20717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2181] = {.lex_state = 0}, [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 857}, + [2184] = {.lex_state = 0}, [2185] = {.lex_state = 0}, [2186] = {.lex_state = 0}, [2187] = {.lex_state = 0}, @@ -20571,55 +20736,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2200] = {.lex_state = 0}, [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 857}, + [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 = 857}, + [2209] = {.lex_state = 0}, [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 857}, + [2211] = {.lex_state = 0}, [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, + [2215] = {.lex_state = 863}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 0}, + [2219] = {.lex_state = 16}, [2220] = {.lex_state = 0}, [2221] = {.lex_state = 0}, [2222] = {.lex_state = 0}, [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 0}, + [2224] = {.lex_state = 863}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 16}, + [2228] = {.lex_state = 0}, [2229] = {.lex_state = 0}, [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 54}, + [2231] = {.lex_state = 0}, [2232] = {.lex_state = 0}, [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 20}, + [2238] = {.lex_state = 0}, [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, [2241] = {.lex_state = 0}, [2242] = {.lex_state = 0}, [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 48}, + [2244] = {.lex_state = 0}, [2245] = {.lex_state = 0}, [2246] = {.lex_state = 0}, [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, + [2248] = {.lex_state = 54}, [2249] = {.lex_state = 0}, [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 54}, + [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, [2253] = {.lex_state = 0}, [2254] = {.lex_state = 0}, @@ -20628,18 +20793,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2257] = {.lex_state = 0}, [2258] = {.lex_state = 0}, [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 48}, + [2260] = {.lex_state = 0}, [2261] = {.lex_state = 0}, [2262] = {.lex_state = 0}, [2263] = {.lex_state = 0}, [2264] = {.lex_state = 0}, [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, + [2266] = {.lex_state = 863}, [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 0}, + [2268] = {.lex_state = 54}, [2269] = {.lex_state = 0}, [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 48}, + [2271] = {.lex_state = 0}, [2272] = {.lex_state = 0}, [2273] = {.lex_state = 0}, [2274] = {.lex_state = 0}, @@ -20654,45 +20819,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2283] = {.lex_state = 0}, [2284] = {.lex_state = 0}, [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, + [2286] = {.lex_state = 48}, [2287] = {.lex_state = 0}, [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, + [2289] = {.lex_state = 54}, [2290] = {.lex_state = 0}, [2291] = {.lex_state = 0}, [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 48}, + [2293] = {.lex_state = 0}, [2294] = {.lex_state = 0}, [2295] = {.lex_state = 0}, [2296] = {.lex_state = 0}, [2297] = {.lex_state = 0}, [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 48}, + [2299] = {.lex_state = 48}, + [2300] = {.lex_state = 0}, [2301] = {.lex_state = 0}, [2302] = {.lex_state = 0}, [2303] = {.lex_state = 0}, [2304] = {.lex_state = 0}, [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 48}, + [2306] = {.lex_state = 0}, [2307] = {.lex_state = 0}, [2308] = {.lex_state = 0}, [2309] = {.lex_state = 0}, [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 48}, + [2311] = {.lex_state = 48}, + [2312] = {.lex_state = 0}, [2313] = {.lex_state = 0}, [2314] = {.lex_state = 0}, [2315] = {.lex_state = 0}, [2316] = {.lex_state = 0}, [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 48}, + [2318] = {.lex_state = 0}, [2319] = {.lex_state = 0}, [2320] = {.lex_state = 0}, [2321] = {.lex_state = 0}, [2322] = {.lex_state = 0}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 48}, + [2323] = {.lex_state = 48}, + [2324] = {.lex_state = 0}, [2325] = {.lex_state = 0}, [2326] = {.lex_state = 0}, [2327] = {.lex_state = 0}, @@ -20701,53 +20866,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2330] = {.lex_state = 0}, [2331] = {.lex_state = 0}, [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 857}, + [2333] = {.lex_state = 0}, [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 857}, + [2335] = {.lex_state = 48}, [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 0}, + [2337] = {.lex_state = 863}, + [2338] = {.lex_state = 863}, [2339] = {.lex_state = 0}, [2340] = {.lex_state = 0}, [2341] = {.lex_state = 0}, [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 0}, + [2343] = {.lex_state = 48}, [2344] = {.lex_state = 0}, [2345] = {.lex_state = 0}, [2346] = {.lex_state = 0}, [2347] = {.lex_state = 0}, [2348] = {.lex_state = 0}, [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 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}, + [2350] = {.lex_state = 48}, + [2351] = {.lex_state = 0}, + [2352] = {.lex_state = 0}, + [2353] = {.lex_state = 0}, + [2354] = {.lex_state = 0}, + [2355] = {.lex_state = 0}, + [2356] = {.lex_state = 0}, + [2357] = {.lex_state = 48}, + [2358] = {.lex_state = 0}, + [2359] = {.lex_state = 0}, [2360] = {.lex_state = 0}, [2361] = {.lex_state = 0}, [2362] = {.lex_state = 0}, [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 0}, + [2364] = {.lex_state = 48}, [2365] = {.lex_state = 0}, [2366] = {.lex_state = 0}, [2367] = {.lex_state = 0}, [2368] = {.lex_state = 0}, [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 48}, + [2370] = {.lex_state = 0}, [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}, + [2372] = {.lex_state = 0}, + [2373] = {.lex_state = 0}, + [2374] = {.lex_state = 0}, + [2375] = {.lex_state = 0}, + [2376] = {.lex_state = 0}, + [2377] = {.lex_state = 0}, + [2378] = {.lex_state = 0}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 0}, + [2381] = {.lex_state = 0}, + [2382] = {.lex_state = 0}, + [2383] = {.lex_state = 0}, + [2384] = {.lex_state = 48}, + [2385] = {.lex_state = 0}, + [2386] = {.lex_state = 0}, + [2387] = {.lex_state = 0}, + [2388] = {.lex_state = 0}, + [2389] = {.lex_state = 0}, + [2390] = {.lex_state = 0}, + [2391] = {.lex_state = 0}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 0}, + [2398] = {.lex_state = 53}, + [2399] = {.lex_state = 53}, + [2400] = {.lex_state = 53}, + [2401] = {.lex_state = 53}, + [2402] = {.lex_state = 53}, + [2403] = {.lex_state = 53}, + [2404] = {.lex_state = 53}, + [2405] = {.lex_state = 53}, + [2406] = {.lex_state = 53}, + [2407] = {.lex_state = 53}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 0}, + [2412] = {.lex_state = 0}, + [2413] = {.lex_state = 0}, + [2414] = {.lex_state = 0}, + [2415] = {.lex_state = 0}, + [2416] = {.lex_state = 0}, + [2417] = {.lex_state = 0}, + [2418] = {.lex_state = 48}, + [2419] = {.lex_state = 48}, + [2420] = {.lex_state = 48}, + [2421] = {.lex_state = 48}, + [2422] = {.lex_state = 48}, + [2423] = {.lex_state = 48}, + [2424] = {.lex_state = 48}, + [2425] = {.lex_state = 48}, + [2426] = {.lex_state = 48}, + [2427] = {.lex_state = 48}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20888,7 +21101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [aux_sym__type_token1] = ACTIONS(1), [aux_sym__type_token2] = ACTIONS(1), - [aux_sym_predefined_types_token1] = ACTIONS(1), + [aux_sym_predefined_type_token1] = ACTIONS(1), + [aux_sym_predefined_type_token2] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [aux_sym_string_token1] = ACTIONS(1), [sym_comment] = ACTIONS(3), @@ -20940,27 +21154,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2280), - [sym__statement] = STATE(2279), - [sym_drop_type_statement] = STATE(2279), - [sym_update_statement] = STATE(2279), - [sym_drop_function_statement] = STATE(2279), - [sym_create_type_statement] = STATE(2279), - [sym_insert_statement] = STATE(2279), - [sym_create_table_statement] = STATE(2279), - [sym_create_schema_statement] = STATE(2279), - [sym_create_index_statement] = STATE(2279), - [sym_delete_statement] = STATE(2279), - [sym_alter_table_statement] = STATE(2279), - [sym_grant_statement] = STATE(2279), - [sym_psql_statement] = STATE(1034), - [sym_create_sequence_statement] = STATE(2279), - [sym_create_trigger_statement] = STATE(2279), - [sym_do_block] = STATE(2279), - [sym_select_statement] = STATE(2279), - [sym_with_query] = STATE(1499), - [sym_create_function_statement] = STATE(2279), - [aux_sym_source_file_repeat1] = STATE(648), + [sym_source_file] = STATE(2380), + [sym__statement] = STATE(2379), + [sym_drop_type_statement] = STATE(2379), + [sym_update_statement] = STATE(2379), + [sym_drop_function_statement] = STATE(2379), + [sym_create_type_statement] = STATE(2379), + [sym_insert_statement] = STATE(2379), + [sym_create_table_statement] = STATE(2379), + [sym_create_schema_statement] = STATE(2379), + [sym_create_index_statement] = STATE(2379), + [sym_delete_statement] = STATE(2379), + [sym_alter_table_statement] = STATE(2379), + [sym_grant_statement] = STATE(2379), + [sym_psql_statement] = STATE(1062), + [sym_create_sequence_statement] = STATE(2379), + [sym_create_trigger_statement] = STATE(2379), + [sym_do_block] = STATE(2379), + [sym_select_statement] = STATE(2379), + [sym_with_query] = STATE(1453), + [sym_create_function_statement] = STATE(2379), + [aux_sym_source_file_repeat1] = STATE(673), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_drop_type_statement_token1] = ACTIONS(7), [aux_sym_update_statement_token1] = ACTIONS(9), @@ -21200,7 +21414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interval_fields_token4, ACTIONS(53), 1, aux_sym__interval_fields_token5, - STATE(115), 1, + STATE(139), 1, sym__interval_fields, ACTIONS(47), 2, aux_sym__interval_fields_token2, @@ -21267,8 +21481,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(57), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_precision, + STATE(33), 1, + sym_type_length, ACTIONS(59), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, @@ -21342,7 +21556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interval_fields_token4, ACTIONS(69), 1, aux_sym__interval_fields_token5, - STATE(128), 1, + STATE(101), 1, sym__interval_fields, ACTIONS(63), 2, aux_sym__interval_fields_token2, @@ -21404,92 +21618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [238] = 12, + [238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 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(71), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [325] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACK, - STATE(38), 1, - aux_sym__type_repeat1, - ACTIONS(87), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 7, + ACTIONS(71), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym_precision, + ACTIONS(59), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -21497,7 +21633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(81), 50, + ACTIONS(55), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -21521,7 +21657,10 @@ 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, @@ -21548,515 +21687,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [400] = 3, + [312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(33), 54, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [469] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 45, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [560] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(73), 2, - aux_sym_alter_column_action_token1, - aux_sym_comparison_kw_token1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [659] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 36, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [752] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - aux_sym_trigger_event_token2, ACTIONS(77), 1, + aux_sym_alter_column_action_token1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(79), 1, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 21, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + sym_and, + [417] = 14, + ACTIONS(3), 1, + sym_comment, ACTIONS(107), 1, - aux_sym_grant_targets_token4, + anon_sym_SLASH, ACTIONS(109), 1, anon_sym_DASH, ACTIONS(111), 1, anon_sym_PLUS, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(113), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [859] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, + ACTIONS(113), 1, sym_cast, - STATE(121), 1, + STATE(135), 1, sym_comparison_null, - STATE(809), 1, + STATE(820), 1, sym_other_op, - STATE(810), 1, + STATE(822), 1, sym_comparison_kw, - STATE(812), 1, + STATE(824), 1, sym_contains_op, - STATE(813), 1, + STATE(831), 1, sym_comparison_op, - STATE(814), 1, + STATE(833), 1, sym_or, - ACTIONS(89), 2, + ACTIONS(105), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [954] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, + ACTIONS(103), 5, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 35, + ACTIONS(101), 44, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22091,60 +21838,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - sym_and, - [1047] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - aux_sym_alter_column_action_token1, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -22154,82 +21847,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 21, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, sym_and, - [1152] = 22, + [508] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, ACTIONS(107), 1, - aux_sym_grant_targets_token4, + anon_sym_SLASH, ACTIONS(109), 1, anon_sym_DASH, ACTIONS(111), 1, anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, ACTIONS(115), 1, + aux_sym_grant_targets_token4, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 32, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [605] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + aux_sym_trigger_event_token2, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(109), 1, + anon_sym_DASH, + ACTIONS(111), 1, + anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(117), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym_and, + [712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(113), 1, + sym_cast, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 6, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [799] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_cast, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(103), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 47, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [882] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 1, + aux_sym_trigger_event_token2, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(109), 1, + anon_sym_DASH, + ACTIONS(111), 1, + anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(117), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym_and, + [989] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_cast, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(77), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 47, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [1072] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(109), 1, + anon_sym_DASH, + ACTIONS(111), 1, + anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, ACTIONS(123), 1, - aux_sym_trigger_event_token2, - STATE(143), 1, + sym_and, + STATE(135), 1, sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, + STATE(820), 1, sym_other_op, - STATE(840), 1, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 3, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(113), 4, + ACTIONS(117), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -22239,7 +22384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 21, + ACTIONS(119), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22260,176 +22405,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym_and, - [1259] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(129), 1, - sym_and, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(113), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(125), 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, - [1368] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(73), 2, - aux_sym_trigger_event_token2, - aux_sym_comparison_kw_token1, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [1469] = 3, + [1181] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 7, @@ -22495,373 +22471,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [1538] = 12, + [1250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(97), 1, - sym_cast, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_alter_column_action_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 46, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [1625] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - sym_cast, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(73), 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(71), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [1708] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [1799] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(133), 1, - aux_sym_alter_column_action_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 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, - [1908] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, ACTIONS(129), 1, - sym_and, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(75), 2, - anon_sym_STAR, + anon_sym_LBRACK, + STATE(41), 1, + aux_sym__type_repeat1, + ACTIONS(131), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(103), 2, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(113), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, + aux_sym_comparison_kw_token1, + ACTIONS(125), 50, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 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, @@ -22871,80 +22538,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 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, - [2017] = 21, + sym_cast, + sym_and, + [1325] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(123), 1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(103), 1, aux_sym_alter_column_action_token1, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -22954,7 +22602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 21, + ACTIONS(101), 21, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -22976,31 +22624,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_filter_token1, anon_sym_RBRACK, sym_and, - [2122] = 10, + [1430] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(99), 1, sym_cast, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - ACTIONS(123), 6, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 4, aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(121), 48, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 32, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [1525] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 4, + aux_sym_alter_column_action_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -23023,9 +22767,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -23039,6 +22780,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, + sym_and, + [1618] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 2, + aux_sym_alter_column_action_token1, + aux_sym_comparison_kw_token1, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -23048,130 +22834,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 27, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, sym_and, - [2205] = 10, + [1717] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - sym_cast, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(123), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(83), 1, anon_sym_SLASH, + ACTIONS(85), 1, anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 4, + aux_sym_alter_column_action_token1, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(121), 47, + ACTIONS(101), 45, 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_insert_items_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [2288] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - sym_cast, - STATE(143), 1, - sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, - sym_other_op, - STATE(840), 1, - sym_contains_op, - ACTIONS(73), 7, + 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_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 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, + anon_sym_DOT_DOT, aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_if_statement_token2, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, @@ -23195,44 +22939,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_and, - [2371] = 17, + [1808] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_SLASH, - ACTIONS(79), 1, - sym_cast, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, ACTIONS(107), 1, - aux_sym_grant_targets_token4, + anon_sym_SLASH, ACTIONS(109), 1, anon_sym_DASH, ACTIONS(111), 1, anon_sym_PLUS, - STATE(143), 1, + ACTIONS(113), 1, + sym_cast, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(123), 1, + sym_and, + STATE(135), 1, sym_comparison_null, - STATE(714), 1, - sym_comparison_op, - STATE(717), 1, - sym_or, - STATE(752), 1, - sym_comparison_kw, - STATE(826), 1, + STATE(820), 1, sym_other_op, - STATE(840), 1, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, sym_contains_op, - ACTIONS(75), 2, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(105), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 3, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(73), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, + ACTIONS(117), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -23242,7 +23004,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 32, + ACTIONS(133), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [1917] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(109), 1, + anon_sym_DASH, + ACTIONS(111), 1, + anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 35, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -23268,6 +23093,9 @@ 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, @@ -23275,10 +23103,465 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, sym_and, - [2468] = 3, + [2010] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 7, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(77), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 48, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [2093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 54, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2162] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_SLASH, + ACTIONS(109), 1, + anon_sym_DASH, + ACTIONS(111), 1, + anon_sym_PLUS, + ACTIONS(113), 1, + sym_cast, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + STATE(135), 1, + sym_comparison_null, + STATE(820), 1, + sym_other_op, + STATE(822), 1, + sym_comparison_kw, + STATE(824), 1, + sym_contains_op, + STATE(831), 1, + sym_comparison_op, + STATE(833), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 2, + aux_sym_trigger_event_token2, + aux_sym_comparison_kw_token1, + ACTIONS(105), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [2263] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(103), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 48, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [2346] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(135), 1, + aux_sym_alter_column_action_token1, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(133), 19, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + [2455] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(99), 1, + sym_cast, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_alter_column_action_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 46, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [2542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -23286,7 +23569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(139), 53, + ACTIONS(141), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -23340,10 +23623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2536] = 3, + [2610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(145), 7, + ACTIONS(147), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -23351,7 +23634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(143), 53, + ACTIONS(145), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -23405,12 +23688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2604] = 5, + [2678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(147), 1, + ACTIONS(149), 1, anon_sym_LPAREN, - STATE(39), 1, + STATE(48), 1, sym_precision, ACTIONS(59), 8, aux_sym_grant_targets_token4, @@ -23472,414 +23755,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2676] = 3, + [2750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 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(149), 53, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [2744] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - anon_sym_LBRACK, - STATE(36), 1, - aux_sym__type_repeat1, - ACTIONS(155), 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(153), 51, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [2815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_LBRACK, - STATE(54), 1, - aux_sym__type_repeat1, - ACTIONS(162), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 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(81), 47, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [2888] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LBRACK, - STATE(36), 1, - aux_sym__type_repeat1, - ACTIONS(166), 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(164), 51, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [2959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 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(139), 50, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(153), 52, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3091] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(170), 1, + ACTIONS(151), 1, anon_sym_LPAREN, - ACTIONS(174), 1, - anon_sym_DOT, - ACTIONS(176), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 7, + STATE(48), 1, + sym_type_length, + ACTIONS(59), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(153), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(157), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2958] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(165), 1, + anon_sym_LBRACK, + STATE(39), 1, + aux_sym__type_repeat1, + ACTIONS(163), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(168), 48, + ACTIONS(161), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(168), 1, + anon_sym_LBRACK, + STATE(56), 1, + aux_sym__type_repeat1, + ACTIONS(170), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(125), 47, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -23902,7 +24060,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -23928,28 +24085,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3163] = 3, + [3102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 7, + ACTIONS(129), 1, + anon_sym_LBRACK, + STATE(39), 1, + aux_sym__type_repeat1, + ACTIONS(174), 6, 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, + ACTIONS(172), 51, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token2, aux_sym_update_statement_token4, - anon_sym_LPAREN, anon_sym_RPAREN, aux_sym_insert_items_token1, aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, @@ -23963,7 +24124,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, aux_sym_where_filter_token1, anon_sym_RBRACK, - aux_sym_time_expression_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -23991,7 +24151,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3229] = 3, + [3173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(157), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -24054,23 +24277,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3295] = 6, + [3305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_alter_column_action_token1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + aux_sym_time_expression_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 51, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_DOT, + aux_sym_time_expression_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3503] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(178), 1, anon_sym_LPAREN, - ACTIONS(180), 1, - anon_sym_DOT, ACTIONS(182), 1, + anon_sym_DOT, + ACTIONS(184), 1, aux_sym_time_expression_token1, - ACTIONS(172), 6, + ACTIONS(180), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(168), 49, + ACTIONS(176), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -24120,7 +24532,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3367] = 3, + [3575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3641] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 8, @@ -24183,146 +24658,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3433] = 3, + [3707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 51, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_DOT, - aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 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(143), 50, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, + ACTIONS(163), 6, 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, + ACTIONS(161), 52, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token2, aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_items_token1, @@ -24330,6 +24679,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, @@ -24344,9 +24694,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_filter_token1, anon_sym_LBRACK, anon_sym_RBRACK, - aux_sym__type_token1, - aux_sym__type_token2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -24372,10 +24721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3631] = 3, + [3773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 8, + ACTIONS(147), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -24384,7 +24733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(149), 50, + ACTIONS(145), 50, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -24435,72 +24784,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3697] = 27, + [3839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, + ACTIONS(155), 8, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(186), 1, - aux_sym_update_statement_token2, - ACTIONS(192), 1, anon_sym_SLASH, - ACTIONS(194), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - ACTIONS(204), 1, - sym_and, - ACTIONS(206), 1, - sym__identifier, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - STATE(1026), 1, - sym_identifier, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(198), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(200), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(184), 3, + aux_sym_comparison_kw_token1, + ACTIONS(153), 50, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_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(105), 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, @@ -24510,31 +24845,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(188), 10, - aux_sym_update_statement_token4, + sym_cast, + sym_and, + [3905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(186), 1, + anon_sym_LPAREN, + ACTIONS(188), 1, + anon_sym_DOT, + ACTIONS(190), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(176), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, + anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - [3810] = 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(208), 1, + ACTIONS(174), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [4042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LBRACK, + STATE(55), 1, + aux_sym__type_repeat1, + ACTIONS(163), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [4111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(168), 1, + anon_sym_LBRACK, + STATE(55), 1, + aux_sym__type_repeat1, + ACTIONS(174), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [4180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, aux_sym__interval_fields_token1, - ACTIONS(212), 1, + ACTIONS(199), 1, aux_sym__interval_fields_token3, - ACTIONS(214), 1, + ACTIONS(201), 1, aux_sym__interval_fields_token4, - ACTIONS(216), 1, + ACTIONS(203), 1, aux_sym__interval_fields_token5, - STATE(287), 1, + STATE(301), 1, sym__interval_fields, - ACTIONS(210), 2, + ACTIONS(197), 2, aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, ACTIONS(43), 7, @@ -24589,121 +25171,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3887] = 5, + [4257] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 1, - anon_sym_LBRACK, - STATE(52), 1, - aux_sym__type_repeat1, - ACTIONS(155), 7, - aux_sym_grant_targets_token4, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 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(164), 51, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(207), 1, 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, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + ACTIONS(225), 1, + sym_and, + ACTIONS(227), 1, + sym__identifier, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + STATE(1027), 1, + sym_identifier, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(211), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(219), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(221), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(205), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_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(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -24713,86 +25246,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [4021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(160), 1, - anon_sym_LBRACK, - STATE(52), 1, - aux_sym__type_repeat1, - ACTIONS(166), 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(164), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(209), 10, + 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_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [4090] = 9, + [4370] = 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_token1, + ACTIONS(233), 1, + aux_sym__interval_fields_token3, + ACTIONS(235), 1, + aux_sym__interval_fields_token4, + ACTIONS(237), 1, aux_sym__interval_fields_token5, - STATE(324), 1, + STATE(332), 1, sym__interval_fields, - ACTIONS(223), 2, + ACTIONS(231), 2, aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, ACTIONS(41), 25, @@ -24847,185 +25325,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [4167] = 10, + [4447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(121), 24, + ACTIONS(163), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 49, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(123), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, + anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [4245] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(71), 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(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 17, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [4339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(235), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 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_LBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -25053,237 +25386,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4405] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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(73), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [4491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(237), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [4557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(239), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [4623] = 4, + [4511] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(241), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_alter_column_action_token1, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(231), 49, + ACTIONS(239), 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_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -25311,94 +25448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4689] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(269), 1, - aux_sym_for_statement_token3, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(277), 1, - aux_sym_if_statement_token5, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - STATE(1395), 1, - aux_sym_if_statement_repeat1, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - ACTIONS(275), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - STATE(92), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2041), 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, - [4805] = 3, + [4577] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(37), 25, @@ -25459,740 +25509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [4869] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(73), 2, - aux_sym_update_set_token1, - aux_sym_comparison_kw_token1, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [4965] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - ACTIONS(204), 1, - sym_and, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(198), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(200), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(131), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 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, - [5071] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5159] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 19, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5249] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(198), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(200), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(71), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [5351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 49, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5415] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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(73), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5497] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(71), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5575] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(123), 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(121), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [5653] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(123), 1, - aux_sym_update_set_token1, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - sym_and, - [5755] = 3, + [4641] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -26253,7 +25570,627 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [5819] = 3, + [4705] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 6, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [4787] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(249), 1, + sym_cast, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(103), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [4865] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(277), 1, + aux_sym_for_statement_token3, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(285), 1, + aux_sym_if_statement_token5, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1428), 1, + aux_sym_if_statement_repeat1, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + ACTIONS(283), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + STATE(97), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2043), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [4981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(37), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5243] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 1, + aux_sym_update_set_token1, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + sym_and, + [5345] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(249), 1, + sym_cast, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(77), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [5423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 7, @@ -26314,382 +26251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [5883] = 22, + [5487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(192), 1, - anon_sym_SLASH, - ACTIONS(194), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_PLUS, - ACTIONS(202), 1, - sym_cast, - STATE(299), 1, - sym_comparison_null, - STATE(801), 1, - sym_or, - STATE(802), 1, - sym_comparison_op, - STATE(804), 1, - sym_contains_op, - STATE(806), 1, - sym_comparison_kw, - STATE(807), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(190), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(198), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(200), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(121), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(123), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [5985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(299), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [6051] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(133), 1, - aux_sym_update_set_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 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, - [6157] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(73), 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(71), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [6235] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 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(71), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [6317] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(303), 1, - aux_sym__interval_fields_token1, ACTIONS(307), 1, - aux_sym__interval_fields_token3, - ACTIONS(309), 1, - aux_sym__interval_fields_token4, + aux_sym__interval_fields_token1, ACTIONS(311), 1, + aux_sym__interval_fields_token3, + ACTIONS(313), 1, + aux_sym__interval_fields_token4, + ACTIONS(315), 1, aux_sym__interval_fields_token5, - STATE(365), 1, + STATE(383), 1, sym__interval_fields, - ACTIONS(305), 2, + ACTIONS(309), 2, aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, ACTIONS(43), 6, @@ -26743,124 +26318,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [6393] = 22, + [5563] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - aux_sym_update_set_token1, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(289), 1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(213), 1, anon_sym_SLASH, - ACTIONS(291), 1, + ACTIONS(215), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(217), 1, anon_sym_PLUS, - ACTIONS(295), 1, + ACTIONS(223), 1, sym_cast, - STATE(322), 1, + ACTIONS(225), 1, + sym_and, + STATE(351), 1, sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, + STATE(826), 1, sym_or, - STATE(747), 1, + STATE(832), 1, sym_comparison_op, - STATE(750), 1, + STATE(834), 1, sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - sym_and, - [6495] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, + STATE(836), 1, sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, + STATE(838), 1, sym_other_op, - ACTIONS(287), 2, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(211), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 3, + ACTIONS(219), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(221), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(133), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(73), 4, - aux_sym_update_set_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -26870,580 +26387,1152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(135), 12, + 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_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [6587] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [6675] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [6761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(153), 49, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [6825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(313), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [6891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [6957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(317), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 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(319), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7086] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(326), 1, - aux_sym_update_statement_token1, - ACTIONS(329), 1, - aux_sym_create_type_statement_token1, - ACTIONS(332), 1, - aux_sym_insert_statement_token1, - ACTIONS(335), 1, - aux_sym_insert_conflict_token3, - ACTIONS(338), 1, - aux_sym_delete_statement_token1, - ACTIONS(341), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(344), 1, - aux_sym_grant_statement_token1, - ACTIONS(347), 1, - anon_sym_BSLASH, - ACTIONS(350), 1, - aux_sym_sequence_start_token2, - ACTIONS(353), 1, - aux_sym_trigger_scope_token1, - ACTIONS(356), 1, - aux_sym_trigger_exec_token1, - ACTIONS(359), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(362), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(367), 1, - aux_sym_raise_statement_token1, - ACTIONS(370), 1, - aux_sym_if_statement_token1, - ACTIONS(373), 1, - aux_sym_return_statement_token1, - ACTIONS(376), 1, - aux_sym_perform_statement_token1, - ACTIONS(379), 1, - aux_sym_select_statement_token1, - ACTIONS(382), 1, sym__identifier, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(92), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - ACTIONS(365), 4, - aux_sym_for_statement_token3, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - STATE(2041), 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, - [7195] = 3, + [5669] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 6, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [5755] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 17, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [5849] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + aux_sym_update_set_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + sym_and, + [5951] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [6039] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 4, + aux_sym_update_set_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [6131] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 30, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [6219] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 19, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [6309] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(219), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(221), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(101), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 14, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [6411] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 2, + aux_sym_update_set_token1, + aux_sym_comparison_kw_token1, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [6507] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [6589] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(101), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [6667] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [6753] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(213), 1, + anon_sym_SLASH, + ACTIONS(215), 1, + anon_sym_DASH, + ACTIONS(217), 1, + anon_sym_PLUS, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(211), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(219), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(221), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(77), 14, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [6855] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + sym_cast, + STATE(351), 1, + sym_comparison_null, + STATE(826), 1, + sym_or, + STATE(832), 1, + sym_comparison_op, + STATE(834), 1, + sym_contains_op, + STATE(836), 1, + sym_comparison_kw, + STATE(838), 1, + sym_other_op, + ACTIONS(73), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(77), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [6933] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(135), 1, + aux_sym_update_set_token1, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(133), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + [7039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(319), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(385), 49, + ACTIONS(239), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -27493,10 +27582,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [7258] = 3, + [7105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(391), 7, + ACTIONS(321), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(323), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(325), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [7447] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(333), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(336), 1, + aux_sym_update_statement_token1, + ACTIONS(339), 1, + aux_sym_create_type_statement_token1, + ACTIONS(342), 1, + aux_sym_insert_statement_token1, + ACTIONS(345), 1, + aux_sym_insert_conflict_token3, + ACTIONS(348), 1, + aux_sym_delete_statement_token1, + ACTIONS(351), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(354), 1, + aux_sym_grant_statement_token1, + ACTIONS(357), 1, + anon_sym_BSLASH, + ACTIONS(360), 1, + aux_sym_sequence_start_token2, + ACTIONS(363), 1, + aux_sym_trigger_scope_token1, + ACTIONS(366), 1, + aux_sym_trigger_exec_token1, + ACTIONS(369), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(372), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(377), 1, + aux_sym_raise_statement_token1, + ACTIONS(380), 1, + aux_sym_if_statement_token1, + ACTIONS(383), 1, + aux_sym_return_statement_token1, + ACTIONS(386), 1, + aux_sym_perform_statement_token1, + ACTIONS(389), 1, + aux_sym_select_statement_token1, + ACTIONS(392), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(97), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(375), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(2043), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [7556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -27504,7 +27991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(389), 48, + ACTIONS(395), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -27553,81 +28040,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [7321] = 27, + [7619] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(127), 1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, aux_sym_trigger_event_token2, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(393), 1, - aux_sym_update_statement_token2, - ACTIONS(397), 1, + ACTIONS(329), 1, anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, ACTIONS(399), 1, anon_sym_DASH, ACTIONS(401), 1, anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - ACTIONS(409), 1, + ACTIONS(405), 1, sym_and, - STATE(400), 1, + STATE(386), 1, sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, + STATE(776), 1, sym_comparison_kw, - STATE(758), 1, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, sym_other_op, - STATE(1026), 1, - sym_identifier, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(395), 2, + ACTIONS(327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(403), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(405), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(184), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + ACTIONS(403), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(188), 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(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -27637,7 +28105,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [7432] = 3, + ACTIONS(133), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [7722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7848] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 6, @@ -27697,1652 +28300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [7495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 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(164), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7684] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(92), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - ACTIONS(423), 4, - aux_sym_for_statement_token3, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - STATE(2041), 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, - [7793] = 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, - sym_and, - [7856] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 1, - anon_sym_LPAREN, - STATE(194), 1, - sym_precision, - ACTIONS(59), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [7923] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_cast, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(123), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(121), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [8000] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(441), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [8099] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 1, - aux_sym__interval_fields_token1, - ACTIONS(447), 1, - aux_sym__interval_fields_token3, - ACTIONS(449), 1, - aux_sym__interval_fields_token4, - ACTIONS(451), 1, - aux_sym__interval_fields_token5, - STATE(420), 1, - sym__interval_fields, - ACTIONS(445), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_LPAREN, - STATE(181), 1, - sym_precision, - ACTIONS(59), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(55), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8241] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_cast, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(73), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [8318] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [8399] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(441), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [8498] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [8589] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [8676] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - aux_sym_comparison_kw_token1, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [8771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 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(455), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8834] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [8919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 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(459), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 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(389), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 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(463), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 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(71), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 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(463), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 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(121), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9360] = 3, + [7911] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 6, @@ -29402,217 +28360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9423] = 23, + [7974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, - anon_sym_SLASH, - ACTIONS(437), 1, - anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - ACTIONS(467), 1, - sym_and, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(433), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(441), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 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, - [9526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 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(473), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 6, + ACTIONS(421), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(425), 49, + ACTIONS(419), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -29662,77 +28420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9715] = 3, + [8037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 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(385), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 6, + ACTIONS(425), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(459), 49, + ACTIONS(423), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -29782,39 +28480,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9841] = 3, + [8100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 6, - aux_sym_grant_targets_token4, + ACTIONS(429), 6, + aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(33), 49, + ACTIONS(427), 49, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_index_using_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, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_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_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -29842,7 +28540,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9904] = 3, + [8163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(431), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -29902,17 +28660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9967] = 3, + [8289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 6, + ACTIONS(437), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(477), 49, + ACTIONS(435), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -29962,51 +28720,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10030] = 9, + [8352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 1, - aux_sym__interval_fields_token1, - ACTIONS(485), 1, - aux_sym__interval_fields_token3, - ACTIONS(487), 1, - aux_sym__interval_fields_token4, - ACTIONS(489), 1, - aux_sym__interval_fields_token5, - STATE(417), 1, - sym__interval_fields, - ACTIONS(483), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 23, - aux_sym_update_statement_token2, + ACTIONS(77), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 49, + anon_sym_SEMI, + anon_sym_COMMA, aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(443), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -30014,8 +28880,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, @@ -30028,17 +28899,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [10105] = 3, + sym_and, + [8541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 6, + ACTIONS(447), 1, + anon_sym_LPAREN, + STATE(213), 1, + sym_type_length, + ACTIONS(59), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(449), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(319), 49, + ACTIONS(449), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -30088,7 +29082,720 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10168] = 3, + [8734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(453), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(395), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(431), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8986] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + ACTIONS(405), 1, + sym_and, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(403), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(119), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [9089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(457), 1, + anon_sym_LPAREN, + STATE(213), 1, + sym_precision, + ACTIONS(59), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [9156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(423), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [9219] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(331), 1, + sym_cast, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(77), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [9296] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(459), 1, + aux_sym__interval_fields_token1, + ACTIONS(463), 1, + aux_sym__interval_fields_token3, + ACTIONS(465), 1, + aux_sym__interval_fields_token4, + ACTIONS(467), 1, + aux_sym__interval_fields_token5, + STATE(426), 1, + sym__interval_fields, + ACTIONS(461), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [9371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(419), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [9434] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(403), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym_and, + [9533] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(471), 6, @@ -30148,39 +29855,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10231] = 3, + [9596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 6, - aux_sym_alter_column_action_token1, + ACTIONS(331), 1, + sym_cast, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(103), 6, + aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(491), 49, + ACTIONS(101), 42, 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_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_index_using_token1, aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [9673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(469), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -30208,39 +29982,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10294] = 3, + [9736] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 6, - aux_sym_alter_column_action_token1, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(473), 1, + aux_sym_update_statement_token2, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + ACTIONS(489), 1, + sym_and, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + STATE(1027), 1, + sym_identifier, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(483), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(485), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(205), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(209), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [9847] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(491), 1, + aux_sym__interval_fields_token1, + ACTIONS(495), 1, + aux_sym__interval_fields_token3, + ACTIONS(497), 1, + aux_sym__interval_fields_token4, + ACTIONS(499), 1, + aux_sym__interval_fields_token5, + STATE(413), 1, + sym__interval_fields, + ACTIONS(493), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [9922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(473), 49, + ACTIONS(415), 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_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -30268,7 +30192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10357] = 3, + [9985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 7, @@ -30328,17 +30252,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10420] = 3, + [10048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 6, + ACTIONS(441), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(453), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(435), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(427), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(71), 49, + ACTIONS(443), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -30388,62 +30672,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10483] = 23, + [10489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(103), 7, aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, aux_sym_trigger_event_token2, - ACTIONS(431), 1, - sym_cast, - ACTIONS(435), 1, anon_sym_SLASH, - ACTIONS(437), 1, anon_sym_DASH, - ACTIONS(439), 1, - anon_sym_PLUS, - ACTIONS(467), 1, - sym_and, - STATE(362), 1, - sym_comparison_null, - STATE(720), 1, - sym_or, - STATE(761), 1, - sym_other_op, - STATE(762), 1, - sym_comparison_kw, - STATE(763), 1, - sym_contains_op, - STATE(764), 1, - sym_comparison_op, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(433), 2, + aux_sym_comparison_kw_token1, + ACTIONS(101), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(441), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 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, @@ -30453,13 +30730,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(125), 14, + sym_cast, + sym_and, + [10552] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(403), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_index_using_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -30468,31 +30809,269 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [10586] = 3, + sym_and, + [10651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 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(477), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(501), 1, + anon_sym_LPAREN, + STATE(200), 1, + sym_type_length, + ACTIONS(59), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [10718] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(97), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(503), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(2043), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [10827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(200), 1, + sym_precision, + ACTIONS(59), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [10894] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -30501,9 +31080,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [10985] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(327), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(103), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, @@ -30526,33 +31161,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, sym_and, - [10649] = 3, + [11070] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(329), 1, anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 4, + aux_sym_grant_targets_token4, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(491), 48, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_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, @@ -30561,9 +31220,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, @@ -30577,6 +31233,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, + sym_and, + [11157] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(329), 1, + anon_sym_SLASH, + ACTIONS(331), 1, + sym_cast, + ACTIONS(399), 1, + anon_sym_DASH, + ACTIONS(401), 1, + anon_sym_PLUS, + STATE(386), 1, + sym_comparison_null, + STATE(776), 1, + sym_comparison_kw, + STATE(828), 1, + sym_or, + STATE(829), 1, + sym_comparison_op, + STATE(830), 1, + sym_contains_op, + STATE(840), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(327), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30586,33 +31287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [10712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 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(455), 48, + ACTIONS(101), 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_index_using_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -30621,6 +31303,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [11252] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(103), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -30628,6 +31363,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [11328] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + ACTIONS(519), 1, + sym_and, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(515), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(119), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [11430] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 29, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, @@ -30637,6 +31525,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, + sym_and, + [11516] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(515), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30646,33 +31587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [10775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 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(121), 48, + ACTIONS(101), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -30681,22 +31602,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + sym_and, + [11614] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(475), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, + ACTIONS(101), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_comparison_null_token1, - aux_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(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30706,9 +31661,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, + ACTIONS(103), 15, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, sym_and, - [10838] = 3, + sym__identifier, + [11706] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(483), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(485), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(101), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [11806] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -30767,7 +31814,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10900] = 3, + [11868] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + ACTIONS(489), 1, + sym_and, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(483), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(485), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(133), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(135), 10, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [11972] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [12052] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -30826,609 +32021,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [10962] = 3, + [12114] = 19, 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, + ACTIONS(103), 1, aux_sym_comparison_kw_token1, - ACTIONS(33), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [11024] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, + ACTIONS(115), 1, aux_sym_grant_targets_token4, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [11114] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 29, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [11200] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - aux_sym_comparison_kw_token1, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [11294] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 38, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [11378] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - aux_sym__interval_fields_token1, ACTIONS(509), 1, - aux_sym__interval_fields_token3, + anon_sym_SLASH, ACTIONS(511), 1, - aux_sym__interval_fields_token4, + anon_sym_DASH, ACTIONS(513), 1, - aux_sym__interval_fields_token5, - STATE(428), 1, - sym__interval_fields, - ACTIONS(507), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [11452] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [11532] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(73), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [11608] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, ACTIONS(517), 1, - sym_and, - STATE(393), 1, + sym_cast, + STATE(441), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, + STATE(742), 1, sym_or, - ACTIONS(103), 2, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(495), 2, + ACTIONS(507), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 3, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -31438,12 +32074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 13, + ACTIONS(101), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -31452,587 +32089,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [11710] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, sym_and, - sym__identifier, - [11794] = 6, + [12208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, + ACTIONS(521), 1, anon_sym_LBRACK, - STATE(222), 1, + STATE(247), 1, aux_sym__type_repeat1, - ACTIONS(521), 2, + ACTIONS(523), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(81), 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(83), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [11862] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(71), 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(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 15, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [11954] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [12040] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 17, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [12128] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(403), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(405), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(71), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [12228] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [12326] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(123), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(121), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [12402] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(523), 1, - anon_sym_LBRACK, - STATE(227), 1, - aux_sym__type_repeat1, - ACTIONS(525), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 8, + ACTIONS(127), 8, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -32041,7 +32115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(81), 42, + ACTIONS(125), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32084,12 +32158,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [12470] = 5, + [12276] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 1, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(205), 1, + anon_sym_COMMA, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(525), 1, + aux_sym_update_statement_token2, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + ACTIONS(541), 1, + sym_and, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + STATE(1027), 1, + sym_identifier, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(535), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(537), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(209), 9, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [12386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 1, anon_sym_LPAREN, - STATE(251), 1, + STATE(249), 1, sym_precision, ACTIONS(59), 24, aux_sym_update_statement_token2, @@ -32145,204 +32302,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [12536] = 12, + [12452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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(73), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [12616] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(73), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [12692] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(184), 1, - anon_sym_COMMA, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(529), 1, - aux_sym_update_statement_token2, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, ACTIONS(545), 1, - sym_and, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - STATE(1026), 1, - sym_identifier, - ACTIONS(103), 2, + anon_sym_LPAREN, + STATE(249), 1, + sym_type_length, + ACTIONS(59), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(539), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(541), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(55), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 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, @@ -32352,44 +32362,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(188), 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, - [12802] = 9, + sym_cast, + [12518] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(547), 1, - aux_sym__interval_fields_token1, - ACTIONS(551), 1, - aux_sym__interval_fields_token3, - ACTIONS(553), 1, - aux_sym__interval_fields_token4, - ACTIONS(555), 1, - aux_sym__interval_fields_token5, - STATE(426), 1, - sym__interval_fields, - ACTIONS(549), 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_LPAREN, + STATE(239), 1, + sym_precision, + ACTIONS(59), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -32402,32 +32423,73 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_and, + [12584] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + aux_sym__interval_fields_token1, + ACTIONS(553), 1, + aux_sym__interval_fields_token3, + ACTIONS(555), 1, + aux_sym__interval_fields_token4, + ACTIONS(557), 1, + aux_sym__interval_fields_token5, + STATE(492), 1, + sym__interval_fields, + ACTIONS(551), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [12876] = 3, + [12658] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(37), 25, @@ -32486,13 +32548,1055 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [12938] = 5, + [12720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(35), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [12782] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 4, + aux_sym_grant_targets_token4, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 38, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [12866] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + aux_sym__interval_fields_token1, + ACTIONS(563), 1, + aux_sym__interval_fields_token3, + ACTIONS(565), 1, + aux_sym__interval_fields_token4, + ACTIONS(567), 1, + aux_sym__interval_fields_token5, + STATE(443), 1, + sym__interval_fields, + ACTIONS(561), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(41), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(43), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [12940] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 17, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [13028] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(515), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym_and, + [13126] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 21, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [13212] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(77), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [13288] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [13378] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 21, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [13462] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(77), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(73), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [13538] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(477), 1, + anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_DASH, + ACTIONS(481), 1, + anon_sym_PLUS, + ACTIONS(487), 1, + sym_cast, + STATE(397), 1, + sym_comparison_null, + STATE(786), 1, + sym_or, + STATE(795), 1, + sym_comparison_kw, + STATE(810), 1, + sym_other_op, + STATE(863), 1, + sym_contains_op, + STATE(873), 1, + sym_comparison_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(475), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(483), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(485), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(77), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [13638] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(103), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [13714] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(511), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_PLUS, + ACTIONS(517), 1, + sym_cast, + ACTIONS(519), 1, + sym_and, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(515), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(133), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [13816] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_SLASH, + ACTIONS(517), 1, + sym_cast, + STATE(441), 1, + sym_comparison_null, + STATE(742), 1, + sym_or, + STATE(747), 1, + sym_comparison_op, + STATE(748), 1, + sym_contains_op, + STATE(751), 1, + sym_comparison_kw, + STATE(758), 1, + sym_other_op, + ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_grant_targets_token4, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [13896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_LBRACK, + STATE(243), 1, + aux_sym__type_repeat1, + ACTIONS(571), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(125), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(127), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [13964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(573), 1, anon_sym_LPAREN, - STATE(252), 1, - sym_precision, + STATE(239), 1, + sym_type_length, ACTIONS(59), 7, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -32547,748 +33651,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [13004] = 24, + [14030] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(127), 1, + ACTIONS(121), 1, aux_sym_trigger_event_token2, - ACTIONS(397), 1, + ACTIONS(133), 1, + anon_sym_COMMA, + ACTIONS(529), 1, anon_sym_SLASH, - ACTIONS(399), 1, + ACTIONS(531), 1, anon_sym_DASH, - ACTIONS(401), 1, + ACTIONS(533), 1, anon_sym_PLUS, - ACTIONS(407), 1, + ACTIONS(539), 1, sym_cast, - ACTIONS(409), 1, + ACTIONS(541), 1, sym_and, - STATE(400), 1, + STATE(478), 1, sym_comparison_null, + STATE(744), 1, + sym_other_op, STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(403), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(405), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(131), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 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, - [13108] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - ACTIONS(517), 1, - sym_and, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(125), 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, - [13210] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(123), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(121), 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, - [13286] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(397), 1, - anon_sym_SLASH, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(407), 1, - sym_cast, - STATE(400), 1, - sym_comparison_null, - STATE(745), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(756), 1, - sym_comparison_kw, - STATE(758), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(395), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(403), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(405), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(121), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(123), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [13386] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(497), 1, - anon_sym_SLASH, - ACTIONS(499), 1, - anon_sym_DASH, - ACTIONS(501), 1, - anon_sym_PLUS, - ACTIONS(503), 1, - sym_cast, - STATE(393), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_kw, - STATE(783), 1, - sym_contains_op, - STATE(785), 1, - sym_comparison_op, - STATE(788), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(495), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [13484] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_DOT, - ACTIONS(563), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 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(168), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [13551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(143), 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, - [13612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(35), 30, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [13673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 30, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [13734] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, sym_comparison_kw, STATE(746), 1, - sym_or, - STATE(747), 1, + sym_contains_op, + STATE(749), 1, sym_comparison_op, STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - STATE(1183), 1, - sym_order_by_direction, - ACTIONS(103), 2, + sym_or, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(287), 2, + ACTIONS(527), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(567), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, + ACTIONS(535), 2, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + ACTIONS(537), 2, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(565), 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, - [13839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 8, - aux_sym_update_set_token1, + ACTIONS(115), 4, aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(139), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, 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, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -33298,125 +33718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [13900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 26, + ACTIONS(135), 11, 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, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [13961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14022] = 3, + [14133] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 7, @@ -33474,205 +33788,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [14083] = 25, + [14194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(147), 8, + aux_sym_update_set_token1, aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(571), 1, - anon_sym_COMMA, - ACTIONS(575), 1, anon_sym_SLASH, - ACTIONS(577), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - ACTIONS(585), 1, - sym_and, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - STATE(1084), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(569), 10, + 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, - 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, - [14188] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(121), 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(123), 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_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_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [14263] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - anon_sym_COMMA, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(531), 2, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(539), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(541), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 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, @@ -33682,61 +33844,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(123), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, + sym_cast, + sym_and, + [14255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_grant_roles_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_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [14362] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(123), 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(121), 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_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, @@ -33760,142 +33902,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_and, - [14437] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, sym_cast, - ACTIONS(585), 1, sym_and, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(131), 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, - [14538] = 23, + [14316] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(121), 1, aux_sym_trigger_event_token2, - ACTIONS(137), 1, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + ACTIONS(587), 1, sym_and, - ACTIONS(589), 1, - aux_sym_alter_column_action_token1, - STATE(121), 1, + STATE(459), 1, sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, + STATE(806), 1, + sym_or, + STATE(808), 1, sym_comparison_op, - STATE(814), 1, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(133), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [14417] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + ACTIONS(587), 1, + sym_and, + ACTIONS(591), 1, + anon_sym_COMMA, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + STATE(1101), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(589), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [14522] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(103), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [14597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(157), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [14658] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_COMMA, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, sym_or, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 4, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(535), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(537), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(115), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -33905,7 +34248,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(587), 11, + ACTIONS(77), 13, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [14757] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(595), 1, + aux_sym_alter_column_action_token1, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(593), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -33917,10 +34340,75 @@ 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, - [14639] = 3, + [14858] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 8, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(73), 22, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(77), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [14933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 8, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -33929,7 +34417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(149), 45, + ACTIONS(153), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -33975,26 +34463,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [14700] = 10, + [14994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(71), 22, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(599), 1, + anon_sym_DOT, + ACTIONS(601), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(176), 43, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [15061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -34015,63 +34581,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + sym_cast, + [15122] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 6, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 37, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [14775] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -34083,34 +34648,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + sym_and, + [15201] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + anon_sym_LBRACK, + STATE(279), 1, + aux_sym__type_repeat1, + ACTIONS(605), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 7, aux_sym_grant_targets_token4, - 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_comparison_kw_token1, + ACTIONS(125), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [14854] = 3, + [15268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 26, + ACTIONS(143), 26, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -34137,7 +34740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(139), 27, + ACTIONS(141), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -34165,60 +34768,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [14915] = 22, + [15329] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(71), 1, - anon_sym_COMMA, - ACTIONS(115), 1, + ACTIONS(77), 1, + aux_sym_trigger_event_token2, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(533), 1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(577), 1, anon_sym_SLASH, - ACTIONS(535), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(537), 1, + ACTIONS(581), 1, anon_sym_PLUS, - ACTIONS(543), 1, + ACTIONS(585), 1, sym_cast, - STATE(431), 1, + STATE(459), 1, sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, + STATE(806), 1, sym_or, - ACTIONS(103), 2, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(531), 2, + ACTIONS(575), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(539), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(541), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -34229,282 +34832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, ACTIONS(73), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [15014] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 18, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [15101] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [15186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 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(143), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15247] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(123), 1, - aux_sym_trigger_event_token2, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(121), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -34518,1014 +34845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, sym_and, - [15346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(591), 1, - anon_sym_LBRACK, - STATE(274), 1, - aux_sym__type_repeat1, - ACTIONS(593), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(81), 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, - [15413] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(71), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [15496] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(73), 2, - aux_sym_trigger_event_token2, - aux_sym_comparison_kw_token1, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [15589] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [15674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(33), 46, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15735] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(71), 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(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 16, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [15826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_LPAREN, - STATE(273), 1, - sym_precision, - ACTIONS(59), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(55), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15891] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [15980] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - aux_sym_trigger_event_token2, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - sym_and, - [16079] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(71), 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(73), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [16162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(149), 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, - [16223] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 1, - sym_cast, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(73), 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(71), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [16298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(599), 1, - anon_sym_DOT, - ACTIONS(601), 1, - aux_sym_time_expression_token1, - ACTIONS(168), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(172), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [16365] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(131), 1, - anon_sym_COMMA, - ACTIONS(533), 1, - anon_sym_SLASH, - ACTIONS(535), 1, - anon_sym_DASH, - ACTIONS(537), 1, - anon_sym_PLUS, - ACTIONS(543), 1, - sym_cast, - ACTIONS(545), 1, - sym_and, - STATE(431), 1, - sym_comparison_null, - STATE(823), 1, - sym_other_op, - STATE(825), 1, - sym_comparison_kw, - STATE(827), 1, - sym_contains_op, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(531), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(539), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(541), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 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, - [16468] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_LBRACK, - STATE(262), 1, - aux_sym__type_repeat1, - ACTIONS(605), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 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(81), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [16535] = 3, + [15428] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 26, @@ -35583,36 +34903,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [16596] = 12, + [15489] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(583), 1, + ACTIONS(585), 1, sym_cast, - STATE(477), 1, + STATE(459), 1, sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, + STATE(806), 1, sym_or, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 6, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(77), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(71), 37, + ACTIONS(73), 39, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -35626,6 +34942,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -35650,59 +34968,1641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_and, - [16675] = 26, + [15564] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(103), 1, + aux_sym_trigger_event_token2, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + sym_and, + [15663] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(103), 4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [15752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym_precision, + ACTIONS(59), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [15817] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(101), 22, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [15892] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [15977] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 2, + aux_sym_trigger_event_token2, + aux_sym_comparison_kw_token1, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + sym_and, + [16070] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 5, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_and, + [16153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 46, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16214] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + STATE(1194), 1, + sym_order_by_direction, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(611), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(609), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [16319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(613), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym_type_length, + ACTIONS(59), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16445] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 20, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16524] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(535), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(537), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 13, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym_and, + sym__identifier, + [16623] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 10, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 18, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 30, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(35), 30, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16832] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 10, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_DOT, + ACTIONS(619), 1, + aux_sym_time_expression_token1, + ACTIONS(176), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(180), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [16984] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 5, + anon_sym_COMMA, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 16, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17075] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(529), 1, + anon_sym_SLASH, + ACTIONS(531), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_PLUS, + ACTIONS(539), 1, + sym_cast, + STATE(478), 1, + sym_comparison_null, + STATE(744), 1, + sym_other_op, + STATE(745), 1, + sym_comparison_kw, + STATE(746), 1, + sym_contains_op, + STATE(749), 1, + sym_comparison_op, + STATE(750), 1, + sym_or, + ACTIONS(527), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(101), 19, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 22, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(157), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(621), 1, + anon_sym_LBRACK, + STATE(298), 1, + aux_sym__type_repeat1, + ACTIONS(623), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(125), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(145), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(153), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17408] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, sym__identifier, - ACTIONS(607), 1, + ACTIONS(625), 1, aux_sym_for_statement_token3, - STATE(1499), 1, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(244), 2, + STATE(262), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -35730,23 +36630,18 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [16781] = 6, + [17514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(611), 1, - anon_sym_DOT, - ACTIONS(613), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 6, + ACTIONS(159), 7, aux_sym_grant_targets_token4, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(168), 43, + ACTIONS(157), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -35763,8 +36658,10 @@ 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_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, @@ -35790,180 +36687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [16847] = 26, + [17574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(615), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [16953] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(615), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(228), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [17059] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(617), 1, - anon_sym_LBRACK, - STATE(221), 1, - aux_sym__type_repeat1, - ACTIONS(153), 25, - anon_sym_SEMI, + ACTIONS(627), 1, + anon_sym_LPAREN, + STATE(339), 1, + sym_type_length, + ACTIONS(55), 25, 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, @@ -35983,375 +36720,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(155), 25, + ACTIONS(59), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [17123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(519), 1, - anon_sym_LBRACK, - STATE(221), 1, - aux_sym__type_repeat1, - ACTIONS(164), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(166), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [17187] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(620), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(219), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [17293] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(620), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [17399] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - ACTIONS(585), 1, - sym_and, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(622), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [17499] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_LBRACK, - STATE(314), 1, - aux_sym__type_repeat1, - ACTIONS(626), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 7, - aux_sym_grant_targets_token4, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - ACTIONS(81), 41, + sym_and, + sym__identifier, + [17638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(145), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - 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_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_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -36364,15 +36803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [17565] = 5, + [17698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, + ACTIONS(629), 1, anon_sym_LBRACK, - STATE(250), 1, + STATE(232), 1, aux_sym__type_repeat1, - ACTIONS(166), 7, + ACTIONS(163), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -36380,7 +36818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(164), 43, + ACTIONS(161), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -36424,87 +36862,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [17629] = 26, + [17762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(155), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, sym__identifier, - ACTIONS(628), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [17735] = 3, + ACTIONS(153), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [17822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(153), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17882] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -36561,813 +37033,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [17795] = 26, + [17942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(630), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [17901] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(632), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18007] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(632), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(224), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18113] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(628), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(239), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18219] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(634), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18325] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(636), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(234), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18431] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, + ACTIONS(147), 7, aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(575), 1, anon_sym_SLASH, - ACTIONS(577), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - ACTIONS(585), 1, - sym_and, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(638), 11, + 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, - 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, - [18531] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(640), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18637] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(630), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(231), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18743] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(642), 1, - aux_sym_for_statement_token3, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [18849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_LPAREN, - STATE(342), 1, - sym_precision, - ACTIONS(55), 25, - anon_sym_COMMA, 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, @@ -37377,8 +37070,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, @@ -37391,77 +37089,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(59), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, sym_and, - sym__identifier, - [18913] = 3, + [18002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(145), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(632), 1, + anon_sym_LPAREN, + ACTIONS(634), 1, + anon_sym_DOT, + ACTIONS(636), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(143), 28, + ACTIONS(176), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, + 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, @@ -37474,12 +37149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [18973] = 5, + sym_and, + [18068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - STATE(304), 1, + STATE(346), 1, sym_precision, ACTIONS(59), 8, aux_sym_grant_targets_token4, @@ -37533,10 +37209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [19037] = 3, + [18132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 7, + ACTIONS(143), 7, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_PERCENT, @@ -37544,7 +37220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(149), 45, + ACTIONS(141), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -37590,139 +37266,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [19097] = 26, + [18192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(326), 1, - aux_sym_update_statement_token1, - ACTIONS(329), 1, - aux_sym_create_type_statement_token1, - ACTIONS(332), 1, - aux_sym_insert_statement_token1, - ACTIONS(335), 1, - aux_sym_insert_conflict_token3, - ACTIONS(338), 1, - aux_sym_delete_statement_token1, - ACTIONS(341), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(344), 1, - aux_sym_grant_statement_token1, - ACTIONS(347), 1, - anon_sym_BSLASH, - ACTIONS(350), 1, - aux_sym_sequence_start_token2, - ACTIONS(353), 1, - aux_sym_trigger_scope_token1, - ACTIONS(356), 1, - aux_sym_trigger_exec_token1, - ACTIONS(359), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(362), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(365), 1, - aux_sym_for_statement_token3, - ACTIONS(367), 1, - aux_sym_raise_statement_token1, - ACTIONS(370), 1, - aux_sym_if_statement_token1, - ACTIONS(373), 1, - aux_sym_return_statement_token1, - ACTIONS(376), 1, - aux_sym_perform_statement_token1, - ACTIONS(379), 1, - aux_sym_select_statement_token1, - ACTIONS(382), 1, - sym__identifier, - STATE(1499), 1, - sym_with_query, - STATE(1788), 1, - sym_identifier, - STATE(244), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2258), 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, - [19203] = 26, + ACTIONS(640), 1, + anon_sym_LPAREN, + STATE(346), 1, + sym_type_length, + ACTIONS(59), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(55), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18256] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, sym__identifier, - ACTIONS(648), 1, + ACTIONS(642), 1, aux_sym_for_statement_token3, - STATE(1499), 1, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(230), 2, + STATE(245), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -37750,7 +37405,125 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [19309] = 3, + [18362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(644), 1, + anon_sym_LPAREN, + STATE(339), 1, + sym_precision, + ACTIONS(55), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(59), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_LBRACK, + STATE(268), 1, + aux_sym__type_repeat1, + ACTIONS(172), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(174), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18490] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 6, @@ -37807,59 +37580,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [19369] = 26, + [18550] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(646), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18656] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(646), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(252), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [18762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(521), 1, + anon_sym_LBRACK, + STATE(232), 1, + aux_sym__type_repeat1, + ACTIONS(174), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18826] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, sym__identifier, ACTIONS(648), 1, aux_sym_for_statement_token3, - STATE(1499), 1, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(244), 2, + STATE(258), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -37887,67 +37879,10 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [19475] = 3, + [18932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(145), 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(143), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [19535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 24, + ACTIONS(143), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -37972,7 +37907,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(149), 28, + ACTIONS(141), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -38001,232 +37936,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [19595] = 5, + [18992] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(159), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(157), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [19052] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, ACTIONS(650), 1, - anon_sym_LBRACK, - STATE(250), 1, - aux_sym__type_repeat1, - ACTIONS(155), 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(153), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [19659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(139), 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, - [19719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 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(139), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [19779] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(653), 1, aux_sym_for_statement_token3, - STATE(1499), 1, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(247), 2, + STATE(257), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -38254,226 +38073,59 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [19885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(233), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [19946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_DOT, - aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 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(143), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20064] = 25, + [19158] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, sym__identifier, - STATE(1499), 1, + ACTIONS(650), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(63), 2, + STATE(258), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2041), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -38501,51 +38153,142 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [20167] = 3, + [19264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 7, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(652), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19370] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(577), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(579), 1, anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + ACTIONS(587), 1, + sym_and, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(149), 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, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, + anon_sym_PERCENT, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(583), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -38555,109 +38298,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(657), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 43, + ACTIONS(654), 11, anon_sym_SEMI, - anon_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_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + [19470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(656), 1, anon_sym_LBRACK, + STATE(345), 1, + aux_sym__type_repeat1, + ACTIONS(658), 2, aux_sym__type_token1, aux_sym__type_token2, + ACTIONS(127), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(125), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -38670,57 +38369,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [20346] = 25, + sym_and, + [19536] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, sym__identifier, - STATE(1499), 1, + ACTIONS(660), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(217), 2, + STATE(259), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -38748,228 +38450,59 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [20449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_LBRACK, - STATE(266), 1, - aux_sym__type_repeat1, - ACTIONS(166), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(164), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [20571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(659), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(233), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [20632] = 25, + [19642] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, ACTIONS(251), 1, - aux_sym_insert_conflict_token3, + aux_sym_drop_type_statement_token1, ACTIONS(253), 1, - aux_sym_delete_statement_token1, + aux_sym_update_statement_token1, ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(257), 1, - aux_sym_grant_statement_token1, + aux_sym_insert_statement_token1, ACTIONS(259), 1, - aux_sym_sequence_start_token2, + aux_sym_insert_conflict_token3, ACTIONS(261), 1, - aux_sym_trigger_scope_token1, + aux_sym_delete_statement_token1, ACTIONS(263), 1, - aux_sym_trigger_exec_token1, + aux_sym_alter_table_statement_token1, ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, + aux_sym_grant_statement_token1, ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, ACTIONS(271), 1, - aux_sym_raise_statement_token1, + aux_sym_trigger_exec_token1, ACTIONS(273), 1, - aux_sym_if_statement_token1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, ACTIONS(279), 1, - aux_sym_return_statement_token1, + aux_sym_raise_statement_token1, ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, aux_sym_perform_statement_token1, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(293), 1, sym__identifier, - STATE(1499), 1, + ACTIONS(660), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(100), 2, + STATE(258), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2041), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -38997,53 +38530,222 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [20735] = 5, + [19748] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(661), 1, - anon_sym_LBRACK, - STATE(266), 1, - aux_sym__type_repeat1, - ACTIONS(155), 6, + ACTIONS(333), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(336), 1, + aux_sym_update_statement_token1, + ACTIONS(339), 1, + aux_sym_create_type_statement_token1, + ACTIONS(342), 1, + aux_sym_insert_statement_token1, + ACTIONS(345), 1, + aux_sym_insert_conflict_token3, + ACTIONS(348), 1, + aux_sym_delete_statement_token1, + ACTIONS(351), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(354), 1, + aux_sym_grant_statement_token1, + ACTIONS(357), 1, + anon_sym_BSLASH, + ACTIONS(360), 1, + aux_sym_sequence_start_token2, + ACTIONS(363), 1, + aux_sym_trigger_scope_token1, + ACTIONS(366), 1, + aux_sym_trigger_exec_token1, + ACTIONS(369), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(372), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(375), 1, + aux_sym_for_statement_token3, + ACTIONS(377), 1, + aux_sym_raise_statement_token1, + ACTIONS(380), 1, + aux_sym_if_statement_token1, + ACTIONS(383), 1, + aux_sym_return_statement_token1, + ACTIONS(386), 1, + aux_sym_perform_statement_token1, + ACTIONS(389), 1, + aux_sym_select_statement_token1, + ACTIONS(392), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19854] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(625), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [19960] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(577), 1, anon_sym_SLASH, + ACTIONS(579), 1, anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + ACTIONS(587), 1, + sym_and, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 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, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 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, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(583), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -39053,347 +38755,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [20798] = 4, + ACTIONS(662), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [20060] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, ACTIONS(664), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(233), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [20859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(666), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(233), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [20920] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(668), 1, - anon_sym_LBRACK, - STATE(346), 1, - aux_sym__type_repeat1, - ACTIONS(670), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(81), 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(83), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [20985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(153), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21044] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_DOT, - ACTIONS(676), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(168), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21109] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(243), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(245), 1, - aux_sym_update_statement_token1, - ACTIONS(247), 1, - aux_sym_create_type_statement_token1, - ACTIONS(249), 1, - aux_sym_insert_statement_token1, - ACTIONS(251), 1, - aux_sym_insert_conflict_token3, - ACTIONS(253), 1, - aux_sym_delete_statement_token1, - ACTIONS(255), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(257), 1, - aux_sym_grant_statement_token1, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(261), 1, - aux_sym_trigger_scope_token1, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(265), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(267), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(271), 1, - aux_sym_raise_statement_token1, - ACTIONS(273), 1, - aux_sym_if_statement_token1, - ACTIONS(279), 1, - aux_sym_return_statement_token1, - ACTIONS(281), 1, - aux_sym_perform_statement_token1, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, - sym__identifier, - STATE(1499), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, sym_with_query, - STATE(1788), 1, + STATE(1975), 1, sym_identifier, - STATE(237), 2, + STATE(263), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2258), 27, + STATE(2001), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -39421,395 +38847,507 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [21212] = 3, + [20166] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 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(139), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(591), 1, - anon_sym_LBRACK, - STATE(276), 1, - aux_sym__type_repeat1, - ACTIONS(166), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, sym__identifier, - ACTIONS(164), 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, - [21334] = 4, + ACTIONS(664), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20272] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(678), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(680), 1, - anon_sym_LBRACK, - STATE(276), 1, - aux_sym__type_repeat1, - ACTIONS(155), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, sym__identifier, - ACTIONS(153), 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, - [21458] = 4, + ACTIONS(666), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20378] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21519] = 4, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(666), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(266), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20484] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(685), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21580] = 6, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(668), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20590] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 1, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(670), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(258), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20696] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(672), 1, + aux_sym_for_statement_token3, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(265), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [20802] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(674), 1, anon_sym_LBRACK, - STATE(371), 1, + STATE(268), 1, aux_sym__type_repeat1, - ACTIONS(689), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 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(81), 39, + ACTIONS(161), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_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, @@ -39822,11 +39360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [21645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 25, + ACTIONS(163), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -39852,93 +39386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(153), 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, - [21704] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(693), 1, - anon_sym_DOT, - ACTIONS(695), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(168), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21769] = 3, + [20866] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -39994,10 +39442,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [21828] = 3, + [20925] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 7, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(144), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2043), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [21028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(677), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -40005,7 +39533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(319), 43, + ACTIONS(239), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40049,19 +39577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [21886] = 3, + [21089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 8, + ACTIONS(679), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + 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(149), 42, + ACTIONS(239), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40069,16 +39598,17 @@ 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, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, + 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, @@ -40104,10 +39634,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [21944] = 3, + [21150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 23, + ACTIONS(681), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21211] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(66), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2043), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [21314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(683), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_DOT, + ACTIONS(687), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(176), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + STATE(277), 1, + aux_sym__type_repeat1, + ACTIONS(163), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(694), 1, + anon_sym_LBRACK, + STATE(278), 1, + aux_sym__type_repeat1, + ACTIONS(163), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40131,61 +39974,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(153), 27, + ACTIONS(161), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 7, - aux_sym_update_set_token1, + STATE(277), 1, + aux_sym__type_repeat1, + ACTIONS(174), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(385), 43, + ACTIONS(172), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, @@ -40214,206 +40059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [22060] = 3, + [21629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 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(459), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(389), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(391), 25, + ACTIONS(31), 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, @@ -40422,189 +40074,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_DOT, aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, + aux_sym_comparison_kw_token1, sym_and, - [22350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(419), 25, + sym__identifier, + ACTIONS(29), 27, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(421), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 25, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(31), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 25, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ, anon_sym_DOT, anon_sym_STAR, @@ -40628,1057 +40115,100 @@ static const uint16_t ts_small_parse_table[] = { 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, + [21688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 7, + aux_sym_update_set_token1, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_time_expression_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [22524] = 4, + [21747] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(697), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22584] = 4, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(699), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(463), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(465), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(123), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 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(164), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(149), 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(151), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 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(139), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(164), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(166), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 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(71), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(413), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23286] = 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, - sym_and, - [23344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(415), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(417), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(35), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 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(477), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_LPAREN, - ACTIONS(707), 1, anon_sym_DOT, - ACTIONS(709), 1, + ACTIONS(701), 1, aux_sym_time_expression_token1, - ACTIONS(172), 7, + ACTIONS(180), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(168), 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, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(176), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -41686,13 +40216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -41705,22 +40230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [23640] = 5, + [21812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LBRACK, - STATE(333), 1, - aux_sym__type_repeat1, - ACTIONS(166), 6, + ACTIONS(159), 7, aux_sym_grant_targets_token4, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(164), 42, + ACTIONS(157), 44, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41736,224 +40257,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, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23760] = 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, - sym_and, - sym__identifier, - [23818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(493), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 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(143), 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, @@ -41983,235 +40286,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [23934] = 3, + [21871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(385), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(147), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(387), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(479), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24050] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(713), 1, - aux_sym_update_statement_token4, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(856), 1, - sym_select_item, - STATE(872), 1, - sym_into, - STATE(893), 1, - sym_select_from, - STATE(943), 1, - sym_select_where, - STATE(983), 1, - sym_select_group_by, - STATE(1051), 1, - sym_select_having, - STATE(1101), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(717), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - ACTIONS(749), 3, - sym_true, - sym_false, - sym_number, - STATE(50), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [24176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 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(121), 43, + ACTIONS(145), 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_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -42237,286 +40342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [24234] = 37, + [21930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - aux_sym_update_statement_token4, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(853), 1, - sym_select_item, - STATE(862), 1, - sym_into, - STATE(897), 1, - sym_select_from, - STATE(948), 1, - sym_select_where, - STATE(995), 1, - sym_select_group_by, - STATE(1030), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1116), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1321), 1, - sym__select_limit_offset, - ACTIONS(753), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(749), 3, - sym_true, - sym_false, - sym_number, - ACTIONS(755), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - STATE(50), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [24360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(155), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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(461), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 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(463), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24476] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(575), 1, - anon_sym_SLASH, - ACTIONS(577), 1, - anon_sym_DASH, - ACTIONS(579), 1, - anon_sym_PLUS, - ACTIONS(583), 1, - sym_cast, - ACTIONS(585), 1, - sym_and, - STATE(477), 1, - sym_comparison_null, - STATE(731), 1, - sym_other_op, - STATE(732), 1, - sym_comparison_kw, - STATE(734), 1, - sym_contains_op, - STATE(735), 1, - sym_comparison_op, - STATE(737), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(573), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(581), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(757), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [24574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -42525,10 +40357,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, + aux_sym_insert_statement_token2, 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, @@ -42539,8 +40370,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -42566,335 +40398,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [24632] = 25, + [21989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - ACTIONS(761), 1, - aux_sym_update_set_token1, - ACTIONS(763), 1, - aux_sym_select_offset_token2, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(759), 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(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [24734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 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(473), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 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(389), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(765), 1, + ACTIONS(703), 1, anon_sym_LBRACK, - STATE(333), 1, + STATE(369), 1, aux_sym__type_repeat1, - ACTIONS(155), 6, + ACTIONS(705), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 8, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(153), 42, + ACTIONS(125), 39, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_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_grant_roles_token2, + aux_sym_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, @@ -42920,16 +40457,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25028] = 3, + [22054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(319), 25, + ACTIONS(31), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -42949,7 +40513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(321), 25, + [22113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -42975,10 +40542,760 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25086] = 3, + ACTIONS(161), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 7, + ACTIONS(143), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22231] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(715), 1, + anon_sym_LBRACK, + STATE(377), 1, + aux_sym__type_repeat1, + ACTIONS(717), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(125), 22, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(127), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_DOT, + aux_sym_time_expression_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22599] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(253), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [22702] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(251), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(253), 1, + aux_sym_update_statement_token1, + ACTIONS(255), 1, + aux_sym_create_type_statement_token1, + ACTIONS(257), 1, + aux_sym_insert_statement_token1, + ACTIONS(259), 1, + aux_sym_insert_conflict_token3, + ACTIONS(261), 1, + aux_sym_delete_statement_token1, + ACTIONS(263), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(265), 1, + aux_sym_grant_statement_token1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(269), 1, + aux_sym_trigger_scope_token1, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(273), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(275), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(279), 1, + aux_sym_raise_statement_token1, + ACTIONS(281), 1, + aux_sym_if_statement_token1, + ACTIONS(287), 1, + aux_sym_return_statement_token1, + ACTIONS(289), 1, + aux_sym_perform_statement_token1, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + STATE(1453), 1, + sym_with_query, + STATE(1975), 1, + sym_identifier, + STATE(248), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(2001), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [22805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(621), 1, + anon_sym_LBRACK, + STATE(278), 1, + aux_sym__type_repeat1, + ACTIONS(174), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(172), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 25, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(31), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(429), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [22984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -42986,7 +41303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(491), 43, + ACTIONS(407), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43030,10 +41347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25144] = 3, + [23042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 25, + ACTIONS(395), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43059,7 +41376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(475), 25, + ACTIONS(397), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -43085,7 +41402,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25202] = 3, + [23100] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(469), 25, @@ -43140,68 +41457,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25260] = 6, + [23158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(768), 1, - anon_sym_LPAREN, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(772), 1, - aux_sym_time_expression_token1, - ACTIONS(168), 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(172), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 25, + ACTIONS(453), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43227,7 +41486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(457), 25, + ACTIONS(455), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -43253,16 +41512,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25382] = 3, + [23216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 25, + ACTIONS(443), 25, + 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, @@ -43282,21 +41541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(145), 25, + ACTIONS(445), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_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, @@ -43308,10 +41567,175 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25440] = 3, + [23274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 7, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [23332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(161), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -43319,7 +41743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(455), 43, + ACTIONS(427), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43363,10 +41787,673 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25498] = 3, + [23506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(139), 25, + ACTIONS(33), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(35), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [23564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_DOT, + aux_sym_time_expression_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(449), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(451), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [23680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(469), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(425), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [23796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(421), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [23854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(453), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(435), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(719), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(721), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(723), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 25, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, @@ -43392,7 +42479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(141), 25, + ACTIONS(31), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -43418,7 +42505,2273 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25556] = 3, + [24266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(725), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(417), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(411), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(413), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(443), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(103), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24616] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + ACTIONS(729), 1, + aux_sym_update_set_token1, + ACTIONS(731), 1, + aux_sym_select_offset_token2, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(727), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [24718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(395), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(431), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(409), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24892] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(733), 1, + anon_sym_LPAREN, + ACTIONS(735), 1, + anon_sym_DOT, + ACTIONS(737), 1, + aux_sym_time_expression_token1, + ACTIONS(176), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(180), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(159), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(157), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(147), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(145), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(153), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25188] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(585), 1, + sym_cast, + ACTIONS(587), 1, + sym_and, + STATE(459), 1, + sym_comparison_null, + STATE(806), 1, + sym_or, + STATE(808), 1, + sym_comparison_op, + STATE(815), 1, + sym_contains_op, + STATE(816), 1, + sym_comparison_kw, + STATE(825), 1, + sym_other_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(739), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [25286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(141), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(143), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(741), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_DOT, + ACTIONS(745), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(176), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(415), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(155), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(656), 1, + anon_sym_LBRACK, + STATE(354), 1, + aux_sym__type_repeat1, + ACTIONS(174), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(141), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(159), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(172), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(174), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(419), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(437), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(77), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(439), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(441), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(747), 1, + anon_sym_LBRACK, + STATE(354), 1, + aux_sym__type_repeat1, + ACTIONS(163), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(431), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(433), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(449), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26344] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(752), 1, + aux_sym_update_statement_token4, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(874), 1, + sym_select_item, + STATE(885), 1, + sym_into, + STATE(930), 1, + sym_select_from, + STATE(971), 1, + sym_select_where, + STATE(1022), 1, + sym_select_group_by, + STATE(1082), 1, + sym_select_having, + STATE(1150), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1365), 1, + sym__select_limit_offset, + ACTIONS(750), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(756), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + ACTIONS(788), 3, + sym_true, + sym_false, + sym_number, + STATE(58), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [26470] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(752), 1, + aux_sym_update_statement_token4, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(876), 1, + sym_select_item, + STATE(895), 1, + sym_into, + STATE(924), 1, + sym_select_from, + STATE(975), 1, + sym_select_where, + STATE(1017), 1, + sym_select_group_by, + STATE(1083), 1, + sym_select_having, + STATE(1134), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(788), 3, + sym_true, + sym_false, + sym_number, + ACTIONS(794), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + STATE(58), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [26596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(145), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(147), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(423), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(796), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [26771] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 6, @@ -43472,347 +44825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25613] = 3, + [26828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(166), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(164), 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, - [25670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, + ACTIONS(425), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(231), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(668), 1, - anon_sym_LBRACK, - STATE(356), 1, - aux_sym__type_repeat1, - ACTIONS(164), 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(166), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(776), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(778), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(780), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [25967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(164), 43, + ACTIONS(423), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43856,347 +44879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26024] = 4, + [26885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [26083] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, + ACTIONS(455), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(231), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(786), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(788), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(231), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(790), 1, - anon_sym_LBRACK, - STATE(356), 1, - aux_sym__type_repeat1, - ACTIONS(153), 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(155), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [26378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(389), 43, + ACTIONS(453), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -44240,7 +44933,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26435] = 3, + [26942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(443), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26999] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(421), 6, @@ -44294,17 +45041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26492] = 3, + [27056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 6, + ACTIONS(433), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(385), 43, + ACTIONS(431), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -44348,17 +45095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26549] = 3, + [27113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 6, + ACTIONS(451), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(463), 43, + ACTIONS(449), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -44402,33 +45149,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26606] = 3, + [27170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 6, + ACTIONS(703), 1, + anon_sym_LBRACK, + STATE(370), 1, + aux_sym__type_repeat1, + ACTIONS(174), 7, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(319), 43, + ACTIONS(172), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_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_grant_roles_token2, + aux_sym_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, @@ -44456,33 +45205,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26663] = 3, + [27231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 6, + ACTIONS(798), 1, + anon_sym_LBRACK, + STATE(370), 1, + aux_sym__type_repeat1, + ACTIONS(163), 7, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(121), 43, + ACTIONS(161), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_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_grant_roles_token2, + aux_sym_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, @@ -44510,7 +45261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26720] = 3, + [27292] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 6, @@ -44564,343 +45315,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [26777] = 3, + [27349] = 4, 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, - sym_and, - [26834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(459), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(477), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(491), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(455), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(793), 1, - anon_sym_LBRACK, - STATE(369), 1, - aux_sym__type_repeat1, - ACTIONS(155), 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(153), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(801), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 1, + anon_sym_LBRACK, + STATE(373), 1, + aux_sym__type_repeat1, + ACTIONS(161), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(163), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, + aux_sym_comparison_kw_token1, sym_and, - [27123] = 3, + sym__identifier, + [27469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 6, + ACTIONS(174), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(71), 43, + ACTIONS(172), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -44944,35 +45480,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27180] = 5, + [27526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(687), 1, - anon_sym_LBRACK, - STATE(369), 1, - aux_sym__type_repeat1, - ACTIONS(166), 7, + ACTIONS(397), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(164), 40, + ACTIONS(395), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_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, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -45000,7 +45534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27241] = 3, + [27583] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(471), 6, @@ -45054,17 +45588,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27298] = 3, + [27640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 6, + ACTIONS(715), 1, + anon_sym_LBRACK, + STATE(373), 1, + aux_sym__type_repeat1, + ACTIONS(172), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(174), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [27701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(806), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(808), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(810), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(473), 43, + ACTIONS(239), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [27878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(812), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [27937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45108,136 +45918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27355] = 9, + [27994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, - aux_sym__interval_fields_token1, - ACTIONS(800), 1, - aux_sym__interval_fields_token3, - ACTIONS(802), 1, - aux_sym__interval_fields_token4, - ACTIONS(804), 1, - aux_sym__interval_fields_token5, - STATE(608), 1, - sym__interval_fields, - ACTIONS(798), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, + ACTIONS(409), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [27423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 40, + 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_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(491), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - 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, @@ -45274,14 +45972,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27537] = 4, + [28051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(808), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 23, + ACTIONS(429), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(427), 43, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -45289,8 +46006,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, @@ -45303,35 +46025,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(233), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + sym_and, + [28108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 6, 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_comparison_kw_token1, + ACTIONS(435), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [27595] = 3, + [28165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 23, + ACTIONS(77), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [28222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [28279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -45355,11 +46215,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(491), 25, + ACTIONS(172), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_COLON_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -45381,17 +46242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [27651] = 3, + [28336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(166), 6, + ACTIONS(814), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(164), 42, + ACTIONS(239), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45434,17 +46297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27707] = 3, + [28395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 6, + ACTIONS(816), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(477), 42, + ACTIONS(239), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45487,17 +46352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27763] = 3, + [28454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 6, + ACTIONS(163), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(473), 42, + ACTIONS(161), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45513,58 +46378,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, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(153), 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, @@ -45593,118 +46406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [27875] = 4, + [28511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 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(233), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [27933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 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(233), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [27991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 23, + ACTIONS(445), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -45728,7 +46433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(319), 25, + ACTIONS(443), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -45754,287 +46459,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28047] = 4, + [28567] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(814), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(231), 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(233), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [28105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(385), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [28161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(389), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28273] = 27, - ACTIONS(3), 1, - sym_comment, ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, aux_sym_trigger_event_token2, - ACTIONS(188), 1, - aux_sym_insert_statement_token2, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(816), 1, - aux_sym_update_statement_token2, - ACTIONS(820), 1, + ACTIONS(247), 1, anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, + ACTIONS(249), 1, sym_cast, - ACTIONS(832), 1, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, sym_and, - STATE(604), 1, + STATE(318), 1, sym_comparison_null, - STATE(767), 1, + STATE(814), 1, sym_other_op, - STATE(768), 1, + STATE(839), 1, sym_comparison_kw, - STATE(774), 1, + STATE(841), 1, sym_contains_op, - STATE(776), 1, + STATE(844), 1, sym_comparison_op, - STATE(777), 1, + STATE(849), 1, sym_or, - STATE(1026), 1, - sym_identifier, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(818), 2, + ACTIONS(245), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(826), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(828), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(184), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(818), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -46044,7 +46532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [28377] = 3, + [28663] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 23, @@ -46097,224 +46585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28433] = 3, + [28719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(463), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(121), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(473), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [28601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(477), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [28657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(834), 1, + ACTIONS(820), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 7, + ACTIONS(243), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -46322,7 +46598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(231), 40, + ACTIONS(239), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46363,1263 +46639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 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(231), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(455), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(121), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [28943] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(840), 1, - aux_sym_update_statement_token4, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(844), 1, - aux_sym_insert_statement_token2, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(871), 1, - sym_select_item, - STATE(898), 1, - sym_into, - STATE(935), 1, - sym_select_from, - STATE(985), 1, - sym_select_where, - STATE(1040), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1122), 1, - sym_select_having, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(858), 3, - sym_true, - sym_false, - sym_number, - STATE(95), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [29067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(455), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(469), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(463), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29347] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(862), 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(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [29443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(153), 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(155), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [29499] = 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, - sym_and, - [29555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(389), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(33), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29835] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(840), 1, - aux_sym_update_statement_token4, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(844), 1, - aux_sym_insert_statement_token2, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(866), 1, - sym_select_item, - STATE(899), 1, - sym_into, - STATE(934), 1, - sym_select_from, - STATE(970), 1, - sym_select_where, - STATE(1042), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1132), 1, - sym_select_having, - STATE(1181), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1530), 1, - sym__select_limit_offset, - ACTIONS(753), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(858), 3, - sym_true, - sym_false, - sym_number, - STATE(95), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [29959] = 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, - sym_and, - 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, - [30015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(459), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(385), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30127] = 3, + [28777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 23, @@ -47672,17 +46692,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [30183] = 3, + [28833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 6, + ACTIONS(77), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(73), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [28889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(822), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(824), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [29005] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(826), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [29063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [29121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(439), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(830), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(239), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [29235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(435), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(453), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(469), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(459), 42, + ACTIONS(449), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47725,17 +47280,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [30239] = 3, + [29459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 6, + ACTIONS(39), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(423), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(427), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29627] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(832), 1, + aux_sym_update_statement_token4, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(836), 1, + aux_sym_insert_statement_token2, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(888), 1, + sym_select_item, + STATE(923), 1, + sym_into, + STATE(963), 1, + sym_select_from, + STATE(1007), 1, + sym_select_where, + STATE(1061), 1, + sym_select_group_by, + STATE(1144), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1210), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1461), 1, + sym__select_limit_offset, + ACTIONS(750), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(850), 3, + sym_true, + sym_false, + sym_number, + STATE(130), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [29751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(419), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(319), 42, + ACTIONS(423), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47778,17 +47685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [30295] = 3, + [29919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 6, + ACTIONS(421), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(71), 42, + ACTIONS(419), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -47831,7 +47738,1345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [30351] = 3, + [29975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(415), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(411), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(395), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(101), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 24, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(163), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [30311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(431), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(395), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30423] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(854), 1, + aux_sym__interval_fields_token1, + ACTIONS(858), 1, + aux_sym__interval_fields_token3, + ACTIONS(860), 1, + aux_sym__interval_fields_token4, + ACTIONS(862), 1, + aux_sym__interval_fields_token5, + STATE(634), 1, + sym__interval_fields, + ACTIONS(856), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(161), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [30661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(239), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(243), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [30719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(449), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(427), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(443), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [30943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(431), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [31055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(435), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [31111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(453), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [31167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(33), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [31223] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(209), 1, + aux_sym_insert_statement_token2, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(868), 1, + aux_sym_update_statement_token2, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + ACTIONS(884), 1, + sym_and, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + STATE(1027), 1, + sym_identifier, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(878), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(880), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(205), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31327] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(832), 1, + aux_sym_update_statement_token4, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(836), 1, + aux_sym_insert_statement_token2, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(890), 1, + sym_select_item, + STATE(921), 1, + sym_into, + STATE(964), 1, + sym_select_from, + STATE(1026), 1, + sym_select_where, + STATE(1080), 1, + sym_select_group_by, + STATE(1124), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(850), 3, + sym_true, + sym_false, + sym_number, + STATE(130), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [31451] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(471), 6, @@ -47884,352 +49129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [30407] = 12, + [31507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 15, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, + ACTIONS(77), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [30480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 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(461), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30590] = 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, - sym_and, - sym__identifier, - [30645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 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(459), 40, + ACTIONS(73), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(415), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(417), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 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(71), 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, @@ -48257,2131 +49182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [30810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 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(123), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(463), 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(465), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30920] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - ACTIONS(832), 1, - sym_and, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(826), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(828), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(131), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(133), 3, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - sym__identifier, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 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(473), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31127] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(864), 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(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(471), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(419), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(421), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(164), 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(166), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 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(479), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 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(493), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 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(319), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 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(385), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31605] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [31682] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(71), 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), 8, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31767] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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(73), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [31846] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 10, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [31927] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(826), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(828), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(71), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 5, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 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(457), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(473), 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(475), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32130] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(870), 1, - aux_sym_index_using_token1, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - STATE(1459), 1, - sym_into, - STATE(1916), 1, - sym_execute_using, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(866), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32233] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(73), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [32302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(35), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(389), 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(391), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 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(321), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(385), 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(387), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(411), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(413), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 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(164), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 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(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_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 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(477), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32742] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - aux_sym__interval_fields_token1, - ACTIONS(876), 1, - aux_sym__interval_fields_token3, - ACTIONS(878), 1, - aux_sym__interval_fields_token4, - ACTIONS(880), 1, - aux_sym__interval_fields_token5, - STATE(622), 1, - sym__interval_fields, - ACTIONS(874), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [32809] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(755), 1, - aux_sym_for_statement_token2, - ACTIONS(844), 1, - aux_sym_insert_statement_token2, - ACTIONS(882), 1, - aux_sym_update_statement_token4, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(890), 1, - sym_select_item, - STATE(911), 1, - sym_into, - STATE(951), 1, - sym_select_from, - STATE(1025), 1, - sym_select_where, - STATE(1083), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1145), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1207), 1, - sym_select_order_by, - STATE(1735), 1, - sym__select_limit_offset, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(898), 3, - sym_true, - sym_false, - sym_number, - STATE(167), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [32932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 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(491), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 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(389), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 22, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(33), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [33152] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(820), 1, - anon_sym_SLASH, - ACTIONS(822), 1, - anon_sym_DASH, - ACTIONS(824), 1, - anon_sym_PLUS, - ACTIONS(830), 1, - sym_cast, - STATE(604), 1, - sym_comparison_null, - STATE(767), 1, - sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, - sym_comparison_op, - STATE(777), 1, - sym_or, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(818), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(826), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(828), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(121), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(123), 5, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33245] = 3, + [31563] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(413), 7, @@ -50433,24 +49234,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33300] = 10, + [31618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(830), 1, + 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, - STATE(604), 1, + ACTIONS(409), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [31673] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, sym_comparison_null, - STATE(767), 1, + STATE(733), 1, sym_other_op, - STATE(768), 1, - sym_comparison_kw, - STATE(774), 1, - sym_contains_op, - STATE(776), 1, + STATE(780), 1, sym_comparison_op, - STATE(777), 1, + STATE(798), 1, sym_or, - ACTIONS(123), 16, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(77), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -50467,7 +49320,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(121), 24, + ACTIONS(73), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50492,72 +49345,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33369] = 26, + [31742] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(902), 1, - aux_sym_update_statement_token2, - ACTIONS(906), 1, + ACTIONS(872), 1, anon_sym_SLASH, - ACTIONS(908), 1, + ACTIONS(874), 1, anon_sym_DASH, - ACTIONS(910), 1, + ACTIONS(876), 1, anon_sym_PLUS, - ACTIONS(916), 1, + ACTIONS(882), 1, sym_cast, - ACTIONS(918), 1, - sym_and, - STATE(630), 1, + STATE(616), 1, sym_comparison_null, - STATE(834), 1, + STATE(733), 1, sym_other_op, - STATE(836), 1, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(878), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(880), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(77), 5, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + sym_and, + sym__identifier, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31835] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(890), 1, + aux_sym_index_using_token1, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, STATE(849), 1, sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - STATE(1026), 1, - sym_identifier, - ACTIONS(103), 2, + STATE(1543), 1, + sym_into, + STATE(1808), 1, + sym_execute_using, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(904), 2, + ACTIONS(245), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(912), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(914), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(184), 3, + ACTIONS(886), 2, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, + aux_sym_for_statement_token2, + ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -50567,83 +49492,1269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [33470] = 37, + [31938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 1, - aux_sym_for_statement_token2, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(723), 1, - aux_sym_grant_roles_token2, - ACTIONS(725), 1, - aux_sym_select_having_token1, - ACTIONS(727), 1, - aux_sym_select_limit_token1, - ACTIONS(729), 1, - aux_sym_select_offset_token1, - ACTIONS(731), 1, - aux_sym_select_order_by_token1, - ACTIONS(735), 1, - aux_sym_where_filter_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(844), 1, - aux_sym_insert_statement_token2, - ACTIONS(882), 1, - aux_sym_update_statement_token4, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, + ACTIONS(395), 23, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, - ACTIONS(900), 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(397), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, sym__identifier, - STATE(338), 1, + [31993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(449), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [32048] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(878), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(880), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(101), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(103), 5, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + sym_and, + sym__identifier, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32141] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 10, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + [32222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(471), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [32277] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 14, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [32356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(437), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(435), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [32411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(427), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [32466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(437), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [32521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(427), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(429), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [32576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(431), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(433), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [32631] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 15, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [32759] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(892), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32854] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + ACTIONS(884), 1, + sym_and, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(878), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(880), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(133), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(135), 3, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + sym__identifier, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(449), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(451), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(425), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(455), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(421), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(453), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [33226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(423), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [33281] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(756), 1, + aux_sym_for_statement_token2, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(836), 1, + aux_sym_insert_statement_token2, + ACTIONS(894), 1, + aux_sym_update_statement_token4, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, sym_identifier, - STATE(837), 1, + STATE(759), 1, sym_not, - STATE(881), 1, + STATE(899), 1, sym_select_item, - STATE(926), 1, + STATE(944), 1, sym_into, - STATE(955), 1, + STATE(965), 1, sym_select_from, - STATE(1012), 1, + STATE(1030), 1, sym_select_where, - STATE(1090), 1, + STATE(1109), 1, sym_select_group_by, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1151), 1, + STATE(1184), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, + STATE(1226), 1, sym_select_order_by, - STATE(1753), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1613), 1, sym__select_limit_offset, - STATE(838), 2, + STATE(760), 2, sym_minus, sym_plus, - ACTIONS(898), 3, + ACTIONS(910), 3, sym_true, sym_false, sym_number, - STATE(167), 9, + STATE(162), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -50653,10 +50764,10 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [33593] = 3, + [33404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 7, + ACTIONS(433), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -50664,7 +50775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(425), 40, + ACTIONS(431), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50705,10 +50816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33648] = 3, + [33459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 7, + ACTIONS(421), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -50716,7 +50827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(463), 40, + ACTIONS(419), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50757,7 +50868,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33703] = 3, + [33514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(415), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(417), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(395), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [33624] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(103), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(443), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [33748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(172), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(174), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(411), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(413), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(172), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [33913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(77), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [33968] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 7, @@ -50809,10 +51343,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33758] = 3, + [34023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 7, + ACTIONS(443), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(445), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [34078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(439), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(441), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [34133] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(914), 1, + aux_sym__interval_fields_token1, + ACTIONS(918), 1, + aux_sym__interval_fields_token3, + ACTIONS(920), 1, + aux_sym__interval_fields_token4, + ACTIONS(922), 1, + aux_sym__interval_fields_token5, + STATE(647), 1, + sym__interval_fields, + ACTIONS(916), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(43), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34200] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, + sym_cast, + STATE(616), 1, + sym_comparison_null, + STATE(733), 1, + sym_other_op, + STATE(780), 1, + sym_comparison_op, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, + sym_contains_op, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(101), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 8, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34285] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(121), 1, + aux_sym_trigger_event_token2, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(924), 1, + aux_sym_update_statement_token2, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, + ACTIONS(932), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + ACTIONS(940), 1, + sym_and, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + STATE(1027), 1, + sym_identifier, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(934), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(936), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(205), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34386] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(892), 6, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -50820,7 +51729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(455), 40, + ACTIONS(101), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50861,7 +51770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33813] = 3, + [34534] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 22, @@ -50913,10 +51822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [33868] = 3, + [34589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 7, + ACTIONS(471), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -50924,7 +51833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(121), 40, + ACTIONS(469), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50965,139 +51874,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [33923] = 23, + [34644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, + ACTIONS(33), 23, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(864), 6, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(35), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [34699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 22, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(33), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34754] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(762), 1, + aux_sym_grant_roles_token2, + ACTIONS(764), 1, + aux_sym_select_having_token1, + ACTIONS(766), 1, + aux_sym_select_limit_token1, + ACTIONS(768), 1, + aux_sym_select_offset_token1, + ACTIONS(770), 1, + aux_sym_select_order_by_token1, + ACTIONS(774), 1, + aux_sym_where_filter_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(794), 1, + aux_sym_for_statement_token2, + ACTIONS(836), 1, + aux_sym_insert_statement_token2, + ACTIONS(894), 1, + aux_sym_update_statement_token4, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(913), 1, + sym_select_item, + STATE(946), 1, + sym_into, + STATE(970), 1, + sym_select_from, + STATE(1051), 1, + sym_select_where, + STATE(1106), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1167), 1, + sym_select_having, + STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1609), 1, + sym__select_limit_offset, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(910), 3, + sym_true, + sym_false, + sym_number, + STATE(162), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [34877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(407), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, aux_sym_returning_token1, - aux_sym_where_filter_token1, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34018] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(638), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - anon_sym_RBRACK, - ACTIONS(105), 9, + 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, @@ -51107,29 +52114,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [34110] = 10, + sym_cast, + sym_and, + [34932] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, + ACTIONS(872), 1, + anon_sym_SLASH, + ACTIONS(874), 1, + anon_sym_DASH, + ACTIONS(876), 1, + anon_sym_PLUS, + ACTIONS(882), 1, sym_cast, - STATE(630), 1, + STATE(616), 1, sym_comparison_null, - STATE(834), 1, + STATE(733), 1, sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, + STATE(780), 1, sym_comparison_op, - STATE(851), 1, + STATE(798), 1, + sym_or, + STATE(804), 1, + sym_comparison_kw, + STATE(870), 1, sym_contains_op, - ACTIONS(73), 15, + ACTIONS(870), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 14, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_contains_op_token1, @@ -51140,11 +52157,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(71), 24, + ACTIONS(101), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 23, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -51165,29 +52205,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [34178] = 12, + sym_cast, + ACTIONS(39), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [35064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(441), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(904), 2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(439), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(73), 14, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [35119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(103), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [35174] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, + ACTIONS(932), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 13, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35250] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, + ACTIONS(932), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(101), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 13, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [35328] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(103), 14, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -51202,7 +52497,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(71), 22, + ACTIONS(101), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -51225,7 +52520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [34250] = 3, + [35400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 21, @@ -51276,12 +52571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [34304] = 5, + [35454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(920), 1, + ACTIONS(942), 1, anon_sym_LPAREN, - STATE(523), 1, + STATE(537), 1, sym_precision, ACTIONS(59), 17, aux_sym_update_statement_token2, @@ -51329,179 +52624,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [34362] = 18, + [35512] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(928), 1, anon_sym_SLASH, - ACTIONS(908), 1, + ACTIONS(930), 1, anon_sym_DASH, - ACTIONS(910), 1, + ACTIONS(932), 1, anon_sym_PLUS, - ACTIONS(916), 1, + ACTIONS(938), 1, sym_cast, - STATE(630), 1, + STATE(650), 1, sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, + STATE(735), 1, sym_or, - STATE(850), 1, + STATE(762), 1, sym_comparison_op, - STATE(851), 1, + STATE(768), 1, sym_contains_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(904), 2, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(926), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(107), 4, + ACTIONS(115), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(71), 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), 7, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(103), 9, aux_sym_update_statement_token2, aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34446] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(906), 1, - anon_sym_SLASH, - ACTIONS(908), 1, - anon_sym_DASH, - ACTIONS(910), 1, - anon_sym_PLUS, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(904), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(912), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(914), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(121), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(123), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34538] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_SLASH, - ACTIONS(908), 1, - anon_sym_DASH, - ACTIONS(910), 1, - anon_sym_PLUS, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(904), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 12, + ACTIONS(101), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -51514,218 +52688,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(73), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34616] = 10, + [35592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(123), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(121), 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, - [34684] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(906), 1, - anon_sym_SLASH, - ACTIONS(908), 1, - anon_sym_DASH, - ACTIONS(910), 1, - anon_sym_PLUS, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(904), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(73), 9, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(71), 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, - [34764] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(127), 1, - aux_sym_trigger_event_token2, - ACTIONS(906), 1, - anon_sym_SLASH, - ACTIONS(908), 1, - anon_sym_DASH, - ACTIONS(910), 1, - anon_sym_PLUS, - ACTIONS(916), 1, - sym_cast, - ACTIONS(918), 1, - sym_and, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(133), 2, - aux_sym_update_statement_token2, - sym__identifier, - ACTIONS(904), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(912), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(914), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(131), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(107), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 7, + ACTIONS(437), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -51733,7 +52699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(922), 10, + ACTIONS(944), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -51744,7 +52710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - ACTIONS(415), 29, + ACTIONS(435), 29, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -51774,67 +52740,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [34916] = 22, + [35648] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(906), 1, + ACTIONS(928), 1, anon_sym_SLASH, - ACTIONS(908), 1, + ACTIONS(930), 1, anon_sym_DASH, - ACTIONS(910), 1, + ACTIONS(932), 1, anon_sym_PLUS, - ACTIONS(916), 1, + ACTIONS(938), 1, sym_cast, - STATE(630), 1, + STATE(650), 1, sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, + STATE(735), 1, sym_or, - STATE(850), 1, + STATE(762), 1, sym_comparison_op, - STATE(851), 1, + STATE(768), 1, sym_contains_op, - ACTIONS(103), 2, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(904), 2, + ACTIONS(926), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(912), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(914), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(71), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(73), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(107), 4, + ACTIONS(115), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(101), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(103), 7, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -51844,7 +52806,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [35008] = 3, + [35732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(946), 1, + anon_sym_LPAREN, + STATE(537), 1, + sym_type_length, + ACTIONS(59), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35790] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, + ACTIONS(932), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(934), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(936), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(77), 4, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + sym_and, + sym__identifier, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35882] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, + ACTIONS(932), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(934), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(936), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(101), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(103), 4, + aux_sym_update_statement_token2, + aux_sym_trigger_event_token2, + sym_and, + sym__identifier, + ACTIONS(115), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35974] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 21, @@ -51895,10 +53050,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35062] = 4, + [36028] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 7, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(77), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(73), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36096] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(662), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + anon_sym_RBRACK, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(413), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -51906,7 +53189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(924), 10, + ACTIONS(948), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -51917,7 +53200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - ACTIONS(469), 29, + ACTIONS(411), 29, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -51947,253 +53230,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [35118] = 14, + [36244] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(906), 1, - anon_sym_SLASH, - ACTIONS(908), 1, - anon_sym_DASH, - ACTIONS(910), 1, - anon_sym_PLUS, - ACTIONS(916), 1, - sym_cast, - STATE(630), 1, - sym_comparison_null, - STATE(834), 1, - sym_other_op, - STATE(836), 1, - sym_comparison_kw, - STATE(849), 1, - sym_or, - STATE(850), 1, - sym_comparison_op, - STATE(851), 1, - sym_contains_op, - ACTIONS(904), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(73), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 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, - [35194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, - anon_sym_LBRACK, - STATE(555), 1, - aux_sym__type_repeat1, - ACTIONS(928), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(81), 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, - [35253] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - aux_sym_grant_targets_token4, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(289), 1, - anon_sym_SLASH, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_PLUS, - ACTIONS(295), 1, - sym_cast, - ACTIONS(301), 1, - sym_and, - STATE(322), 1, - sym_comparison_null, - STATE(707), 1, - sym_comparison_kw, - STATE(746), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(750), 1, - sym_contains_op, - STATE(753), 1, - sym_other_op, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(287), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(297), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(622), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35346] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(121), 1, aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, + ACTIONS(928), 1, + anon_sym_SLASH, + ACTIONS(930), 1, + anon_sym_DASH, ACTIONS(932), 1, - anon_sym_COMMA, - STATE(121), 1, + anon_sym_PLUS, + ACTIONS(938), 1, + sym_cast, + ACTIONS(940), 1, + sym_and, + STATE(650), 1, sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(735), 1, sym_or, - STATE(1540), 1, - aux_sym_conflict_target_repeat1, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(930), 2, + ACTIONS(135), 2, + aux_sym_update_statement_token2, + sym__identifier, + ACTIONS(926), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(934), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(936), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(133), 3, anon_sym_SEMI, - aux_sym_for_statement_token2, - ACTIONS(101), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(115), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -52203,12 +53302,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [35441] = 5, + [36340] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(934), 1, + ACTIONS(938), 1, + sym_cast, + STATE(650), 1, + sym_comparison_null, + STATE(735), 1, + sym_or, + STATE(762), 1, + sym_comparison_op, + STATE(768), 1, + sym_contains_op, + STATE(867), 1, + sym_other_op, + STATE(869), 1, + sym_comparison_kw, + ACTIONS(103), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36408] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 1, anon_sym_LPAREN, - STATE(551), 1, + STATE(574), 1, sym_precision, ACTIONS(59), 16, aux_sym_update_statement_token2, @@ -52255,15 +53412,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35498] = 3, + [36465] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 17, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(115), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(247), 1, + anon_sym_SLASH, + ACTIONS(249), 1, + sym_cast, + ACTIONS(301), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_PLUS, + ACTIONS(317), 1, + sym_and, + STATE(318), 1, + sym_comparison_null, + STATE(814), 1, + sym_other_op, + STATE(839), 1, + sym_comparison_kw, + STATE(841), 1, + sym_contains_op, + STATE(844), 1, + sym_comparison_op, + STATE(849), 1, + sym_or, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(245), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(79), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(305), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(654), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36558] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1570), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(952), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36653] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 1, + anon_sym_LBRACK, + STATE(571), 1, + aux_sym__type_repeat1, + ACTIONS(958), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 17, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(125), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LPAREN, + STATE(574), 1, + sym_type_length, + ACTIONS(59), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(55), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36769] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(962), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1643), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36863] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(966), 1, + anon_sym_DOT, + ACTIONS(968), 1, aux_sym_time_expression_token1, + ACTIONS(180), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -52276,13 +53754,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(29), 27, + ACTIONS(176), 25, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, - anon_sym_DOT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -52304,1257 +53780,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35550] = 24, + [36921] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(936), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1639), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35644] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(938), 1, - anon_sym_SEMI, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1643), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35738] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, + ACTIONS(99), 1, sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(940), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1674), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35832] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, aux_sym_trigger_event_token2, - ACTIONS(137), 1, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(942), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1616), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35926] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(944), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1612), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36020] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(946), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1646), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36114] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1666), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36208] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(950), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1664), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36302] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(952), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1619), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36396] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, ACTIONS(954), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1659), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36490] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(956), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1677), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36584] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(958), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1553), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36678] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(960), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1620), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36772] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(962), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1608), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36866] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1606), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36960] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1603), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37054] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(968), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1658), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37148] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, anon_sym_COMMA, ACTIONS(970), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1654), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1627), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53564,67 +53850,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37242] = 24, + [37015] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(972), 1, anon_sym_RBRACK, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1679), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1674), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53634,67 +53920,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37336] = 24, + [37109] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(974), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1722), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1639), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53704,67 +53990,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37430] = 24, + [37203] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(976), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1649), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1758), 1, aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53774,119 +54060,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37524] = 6, + [37297] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 1, - anon_sym_LBRACK, - STATE(575), 1, - aux_sym__type_repeat1, - ACTIONS(980), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(83), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(83), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(85), 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, - sym_and, - sym__identifier, - ACTIONS(81), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(87), 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, - sym_cast, - [37582] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(978), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1653), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37391] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(980), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1629), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37485] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(982), 1, - anon_sym_RPAREN, - STATE(121), 1, + anon_sym_RBRACK, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1560), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1691), 1, aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53896,217 +54270,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37676] = 3, + [37579] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(83), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(85), 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, - sym_and, - sym__identifier, - ACTIONS(139), 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, + ACTIONS(87), 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, - sym_cast, - [37728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(149), 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, - [37780] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - anon_sym_LPAREN, - ACTIONS(986), 1, - anon_sym_DOT, - ACTIONS(988), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(168), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [37838] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(984), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1671), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37673] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(986), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1698), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37767] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(988), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1622), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [37861] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(990), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1683), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1648), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54116,67 +54550,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [37932] = 24, + [37955] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(992), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1671), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1620), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54186,67 +54620,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38026] = 24, + [38049] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(994), 1, - anon_sym_RBRACK, - STATE(121), 1, + anon_sym_RPAREN, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1673), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1577), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54256,67 +54690,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38120] = 24, + [38143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(159), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(137), 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, sym_and, - ACTIONS(932), 1, + sym__identifier, + ACTIONS(157), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38195] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(996), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1579), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1749), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54326,67 +54809,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38214] = 24, + [38289] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(998), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1626), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1675), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54396,67 +54879,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38308] = 24, + [38383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(143), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(137), 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, sym_and, - ACTIONS(932), 1, + sym__identifier, + ACTIONS(141), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38435] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1000), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1644), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1618), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54466,67 +54998,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38402] = 24, + [38529] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1002), 1, anon_sym_RBRACK, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1557), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1646), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54536,67 +55068,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38496] = 24, + [38623] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1004), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1582), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1689), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54606,67 +55138,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38590] = 24, + [38717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(147), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(137), 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, sym_and, - ACTIONS(932), 1, + sym__identifier, + ACTIONS(145), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(153), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38821] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1006), 1, - anon_sym_RBRACK, - STATE(121), 1, + anon_sym_SEMI, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1601), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1672), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54676,67 +55306,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38684] = 24, + [38915] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1008), 1, - anon_sym_RBRACK, - STATE(121), 1, + anon_sym_RPAREN, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1637), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1617), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54746,67 +55376,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38778] = 24, + [39009] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1010), 1, - anon_sym_RPAREN, - STATE(121), 1, + anon_sym_RBRACK, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1598), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1656), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54816,67 +55446,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38872] = 24, + [39103] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(1012), 1, anon_sym_RPAREN, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - STATE(1587), 1, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1637), 1, aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -54886,7 +55516,1576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [38966] = 3, + [39197] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1014), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1676), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39291] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1016), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1681), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39385] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1018), 1, + anon_sym_SEMI, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1713), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39479] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1020), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1614), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39573] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1022), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1700), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39667] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1024), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1635), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39761] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1026), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1612), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39855] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1028), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1692), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [39949] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1030), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1624), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [40095] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1032), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1608), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40189] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1034), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1659), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40283] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(654), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_returning_token1, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40373] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1036), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1664), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40467] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1038), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1666), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 1, + anon_sym_LBRACK, + STATE(596), 1, + aux_sym__type_repeat1, + ACTIONS(1042), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(127), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(125), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [40619] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1044), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1661), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40713] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1046), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1633), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40807] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1048), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1702), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40901] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1050), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1685), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [40995] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1052), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1631), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41089] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1054), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1607), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41183] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + anon_sym_RBRACK, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + STATE(1747), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 17, @@ -54935,1023 +57134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [39018] = 24, + [41329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1625), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39112] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1016), 1, - anon_sym_RBRACK, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1629), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39206] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1018), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1721), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39300] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(622), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_returning_token1, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39390] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1595), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(143), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(956), 1, anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [39536] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1589), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39630] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1024), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1635), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39724] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1026), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1591), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39818] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1028), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1632), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39912] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(1030), 1, - anon_sym_SEMI, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - STATE(1559), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40006] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(1032), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(139), 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, - [40146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(149), 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, - [40197] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1036), 1, - anon_sym_DOT, - ACTIONS(1038), 1, - aux_sym_time_expression_token1, - ACTIONS(172), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(168), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [40254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [40305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, - anon_sym_LBRACK, - STATE(559), 1, + STATE(581), 1, aux_sym__type_repeat1, - ACTIONS(166), 16, + ACTIONS(174), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -55968,7 +57158,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(164), 25, + ACTIONS(172), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -55994,132 +57184,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [40360] = 22, + [41384] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(1040), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40449] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(1042), 1, + ACTIONS(1058), 1, aux_sym_sequence_increment_token2, - ACTIONS(1044), 1, + ACTIONS(1060), 1, aux_sym_for_statement_token2, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - ACTIONS(89), 2, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56129,10 +57252,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40540] = 3, + [41475] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(145), 16, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1062), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 16, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -56149,7 +57339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(143), 27, + ACTIONS(141), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -56177,263 +57367,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [40591] = 5, + [41615] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1064), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1066), 1, + aux_sym_for_statement_token2, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1068), 1, + anon_sym_LPAREN, + ACTIONS(1070), 1, + anon_sym_DOT, + ACTIONS(1072), 1, + aux_sym_time_expression_token1, + ACTIONS(180), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(176), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [41763] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [41852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 1, - anon_sym_LBRACK, - STATE(559), 1, - aux_sym__type_repeat1, ACTIONS(155), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [40646] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1049), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1051), 1, - aux_sym_for_statement_token2, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40737] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(1053), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40826] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1055), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1057), 1, - aux_sym_for_statement_token2, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 16, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -56450,7 +57573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(29), 27, + ACTIONS(153), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -56478,129 +57601,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [40968] = 22, + [41903] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(1059), 1, - anon_sym_DOT_DOT, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - ACTIONS(89), 2, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41056] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1061), 1, + ACTIONS(1076), 2, anon_sym_SEMI, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, + anon_sym_COMMA, + ACTIONS(79), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56610,215 +57668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [41144] = 22, + [41992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1063), 1, - anon_sym_SEMI, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41232] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1065), 1, - aux_sym_for_statement_token2, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41320] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1067), 1, - anon_sym_DOT_DOT, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1069), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 16, + ACTIONS(147), 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, @@ -56830,194 +57688,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(231), 25, + ACTIONS(145), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [41460] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1071), 1, - aux_sym_if_statement_token2, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41548] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1073), 1, - aux_sym_for_statement_token2, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1075), 1, anon_sym_LBRACK, - STATE(572), 1, - aux_sym__type_repeat1, - ACTIONS(155), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + 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, @@ -57037,259 +57716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41690] = 22, + [42043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, ACTIONS(1078), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41778] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1080), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41866] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 1, anon_sym_LBRACK, - STATE(572), 1, + STATE(581), 1, aux_sym__type_repeat1, - ACTIONS(166), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(164), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [41920] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1082), 1, - anon_sym_SEMI, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 16, + ACTIONS(163), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -57306,7 +57740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(231), 25, + ACTIONS(161), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -57332,83 +57766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [42060] = 22, + [42098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1086), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 16, + ACTIONS(159), 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, @@ -57420,13 +57786,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(231), 25, + ACTIONS(157), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -57446,63 +57814,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [42200] = 22, + [42149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, + ACTIONS(31), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1090), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(103), 2, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 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, @@ -57512,63 +57861,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42288] = 22, + sym_cast, + [42200] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(1051), 1, + ACTIONS(1081), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1083), 1, aux_sym_for_statement_token2, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - ACTIONS(89), 2, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57578,214 +57930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42376] = 22, + [42291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1092), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42464] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1094), 1, - anon_sym_RPAREN, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42552] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_SLASH, - ACTIONS(93), 1, - anon_sym_DASH, - ACTIONS(95), 1, - anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, - ACTIONS(137), 1, - sym_and, - ACTIONS(1096), 1, - anon_sym_DOT_DOT, - STATE(121), 1, - sym_comparison_null, - STATE(809), 1, - sym_other_op, - STATE(810), 1, - sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(117), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(101), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(119), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(99), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(105), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1098), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 16, + ACTIONS(31), 16, aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + aux_sym_time_expression_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -57798,11 +57950,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(231), 25, + ACTIONS(29), 27, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_DOT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -57824,63 +57978,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [42692] = 22, + [42342] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(1100), 1, - anon_sym_RPAREN, - STATE(121), 1, + ACTIONS(1083), 1, + aux_sym_for_statement_token2, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, - ACTIONS(89), 2, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 2, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57890,63 +58044,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42780] = 22, + [42430] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_SLASH, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(95), 1, + ACTIONS(87), 1, anon_sym_PLUS, - ACTIONS(97), 1, - sym_cast, - ACTIONS(115), 1, + ACTIONS(93), 1, aux_sym_comparison_kw_token1, - ACTIONS(135), 1, - aux_sym_trigger_event_token2, + ACTIONS(99), 1, + sym_cast, ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, sym_and, - ACTIONS(1102), 1, + ACTIONS(1085), 1, aux_sym_if_statement_token2, - STATE(121), 1, + STATE(110), 1, sym_comparison_null, - STATE(809), 1, + STATE(783), 1, sym_other_op, - STATE(810), 1, + STATE(835), 1, sym_comparison_kw, - STATE(812), 1, - sym_contains_op, - STATE(813), 1, - sym_comparison_op, - STATE(814), 1, + STATE(848), 1, sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(89), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(117), 2, + ACTIONS(95), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(101), 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(119), 4, + ACTIONS(91), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(99), 5, + ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(105), 9, + ACTIONS(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57956,10 +58110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42868] = 3, + [42518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 16, + ACTIONS(1087), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -57976,7 +58132,1285 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(153), 26, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [42570] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1089), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42658] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1091), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42746] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1093), 1, + anon_sym_DOT_DOT, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [42886] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1097), 1, + aux_sym_for_statement_token2, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [42974] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1099), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43062] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1101), 1, + anon_sym_DOT_DOT, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43150] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 1, + anon_sym_LBRACK, + STATE(606), 1, + aux_sym__type_repeat1, + ACTIONS(174), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(172), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [43204] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1103), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43292] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1105), 1, + aux_sym_if_statement_token2, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43380] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1107), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43468] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1109), 1, + anon_sym_DOT_DOT, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43556] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1111), 1, + anon_sym_SEMI, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43644] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1113), 1, + aux_sym_for_statement_token2, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43732] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1115), 1, + anon_sym_SEMI, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [43820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [43872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1119), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [43924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LBRACK, + STATE(606), 1, + aux_sym__type_repeat1, + ACTIONS(163), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(161), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [43978] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1124), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [44066] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1126), 1, + anon_sym_SEMI, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(97), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [44154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(161), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -58003,42 +59437,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [42918] = 3, + [44204] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(166), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + ACTIONS(83), 1, anon_sym_SLASH, + ACTIONS(85), 1, anon_sym_DASH, + ACTIONS(87), 1, + anon_sym_PLUS, + ACTIONS(93), 1, + aux_sym_comparison_kw_token1, + ACTIONS(99), 1, + sym_cast, + ACTIONS(137), 1, + aux_sym_trigger_event_token2, + ACTIONS(139), 1, + sym_and, + ACTIONS(1128), 1, + anon_sym_RPAREN, + STATE(110), 1, + sym_comparison_null, + STATE(783), 1, + sym_other_op, + STATE(835), 1, + sym_comparison_kw, + STATE(848), 1, + sym_or, + STATE(851), 1, + sym_comparison_op, + STATE(860), 1, + sym_contains_op, + ACTIONS(81), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(95), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(79), 4, + aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(91), 4, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(164), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(75), 5, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, 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(97), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58048,886 +59503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - [42967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(455), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1104), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(389), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 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, - [43363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(387), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(385), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1110), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(233), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(231), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(33), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(465), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(463), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(319), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(121), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(473), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(415), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43808] = 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, - sym_and, - 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, - [43857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(461), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(459), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [43906] = 3, + [44292] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(471), 16, @@ -58973,10 +59549,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [43955] = 3, + [44341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 16, + ACTIONS(1130), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(163), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(161), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -58993,7 +59662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(477), 25, + ACTIONS(101), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59019,10 +59688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44004] = 3, + [44490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 16, + ACTIONS(437), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -59039,7 +59708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(491), 25, + ACTIONS(435), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59065,10 +59734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44053] = 3, + [44539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 16, + ACTIONS(77), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -59085,7 +59754,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(71), 25, + ACTIONS(73), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59111,11 +59780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44102] = 3, + [44588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 15, + ACTIONS(429), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -59130,7 +59800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(425), 25, + ACTIONS(427), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59156,326 +59826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44150] = 3, + [44637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(491), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(319), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(473), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(455), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(469), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(71), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(391), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(389), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 15, + 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, @@ -59516,11 +59872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44534] = 3, + [44686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 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, @@ -59535,7 +59892,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(459), 25, + ACTIONS(33), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59561,11 +59918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44582] = 3, + [44735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 15, + ACTIONS(417), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -59580,7 +59938,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(477), 25, + ACTIONS(415), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59606,11 +59964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44630] = 3, + [44784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 15, + ACTIONS(433), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -59625,7 +59984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(463), 25, + ACTIONS(431), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59651,7 +60010,608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44678] = 3, + [44833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1132), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(174), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(172), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [44982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(439), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(419), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(423), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(395), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(453), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1136), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(243), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(239), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(443), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(449), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45476] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 15, @@ -59696,10 +60656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44726] = 3, + [45524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 15, + ACTIONS(437), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -59715,7 +60675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(37), 25, + ACTIONS(435), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59741,10 +60701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44774] = 3, + [45572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 15, + ACTIONS(413), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -59760,7 +60720,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(385), 25, + ACTIONS(411), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59786,142 +60746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(166), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(164), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(121), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44966] = 3, + [45620] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(417), 15, @@ -59966,10 +60791,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45014] = 2, + [45668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 36, + ACTIONS(174), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(172), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(431), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(443), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(395), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(427), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [45956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(449), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(419), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(407), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(423), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(453), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(73), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(101), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(441), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(439), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(469), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [46388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1138), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -60006,10 +61506,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [45056] = 2, + [46430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 36, + ACTIONS(1140), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -60046,10 +61546,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [45098] = 2, + [46472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1116), 36, + ACTIONS(1142), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -60086,167 +61586,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [45140] = 23, + [46514] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(263), 1, + ACTIONS(271), 1, aux_sym_trigger_exec_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1122), 1, - aux_sym_for_statement_token1, - ACTIONS(1124), 1, - aux_sym_select_statement_token1, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2268), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - STATE(2196), 2, - sym_execute_statement, - sym_select_statement, - ACTIONS(1136), 3, - sym_true, - sym_false, - sym_number, - STATE(564), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [45222] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(263), 1, - aux_sym_trigger_exec_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1124), 1, - aux_sym_select_statement_token1, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1140), 1, - aux_sym_for_statement_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2268), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - STATE(2296), 2, - sym_execute_statement, - sym_select_statement, - ACTIONS(1142), 3, - sym_true, - sym_false, - sym_number, - STATE(584), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [45304] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, ACTIONS(1144), 1, - anon_sym_RPAREN, - STATE(44), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1148), 1, + aux_sym_for_statement_token1, + ACTIONS(1150), 1, + aux_sym_select_statement_token1, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2131), 1, + STATE(2251), 1, sym_with_query, - STATE(2226), 1, - sym_select_statement, - STATE(832), 2, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1146), 3, + STATE(2007), 2, + sym_execute_statement, + sym_select_statement, + ACTIONS(1162), 3, + sym_true, + sym_false, + sym_number, + STATE(600), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46596] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(271), 1, + aux_sym_trigger_exec_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1150), 1, + aux_sym_select_statement_token1, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1166), 1, + aux_sym_for_statement_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2251), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + STATE(2211), 2, + sym_execute_statement, + sym_select_statement, + ACTIONS(1168), 3, + sym_true, + sym_false, + sym_number, + STATE(591), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46678] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1170), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2213), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1172), 3, sym_true, sym_false, sym_number, @@ -60260,217 +61760,161 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [45382] = 22, + [46756] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1148), 1, + ACTIONS(1174), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2231), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1176), 3, + sym_true, + sym_false, + sym_number, + STATE(538), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46834] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1178), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2253), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1180), 3, + sym_true, + sym_false, + sym_number, + STATE(553), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46912] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1182), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, sym_not, STATE(2038), 1, sym_select_statement, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(832), 2, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1150), 3, - sym_true, - sym_false, - sym_number, - STATE(517), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [45460] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1152), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2195), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1154), 3, - sym_true, - sym_false, - sym_number, - STATE(543), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [45538] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1156), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2179), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1158), 3, - sym_true, - sym_false, - sym_number, - STATE(536), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [45616] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1160), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2204), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1162), 3, + ACTIONS(1184), 3, sym_true, sym_false, sym_number, @@ -60484,53 +61928,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [45694] = 22, + [46990] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1186), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(2216), 1, + STATE(2247), 1, sym_select_statement, - STATE(832), 2, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1166), 3, + ACTIONS(1188), 3, sym_true, sym_false, sym_number, - STATE(537), 9, + STATE(550), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60540,53 +61984,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [45772] = 22, + [47068] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1168), 1, + ACTIONS(1190), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(1989), 1, - sym_select_statement, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(832), 2, + STATE(2166), 1, + sym_select_statement, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1170), 3, + ACTIONS(1192), 3, sym_true, sym_false, sym_number, - STATE(527), 9, + STATE(564), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60596,53 +62040,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [45850] = 22, + [47146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1172), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2156), 1, + STATE(2018), 1, sym_select_statement, - STATE(832), 2, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1174), 3, + ACTIONS(1196), 3, sym_true, sym_false, sym_number, - STATE(514), 9, + STATE(540), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60652,53 +62096,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [45928] = 22, + [47224] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1176), 1, + ACTIONS(1198), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(2133), 1, + STATE(2118), 1, sym_select_statement, - STATE(832), 2, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1178), 3, + ACTIONS(1200), 3, sym_true, sym_false, sym_number, - STATE(503), 9, + STATE(525), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60708,53 +62152,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46006] = 22, + [47302] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1180), 1, + ACTIONS(1202), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2087), 1, - sym_select_statement, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(832), 2, + STATE(2214), 1, + sym_select_statement, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1182), 3, + ACTIONS(1204), 3, sym_true, sym_false, sym_number, - STATE(546), 9, + STATE(532), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60764,53 +62208,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46084] = 22, + [47380] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1184), 1, + ACTIONS(1206), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(2222), 1, + STATE(2241), 1, sym_select_statement, - STATE(832), 2, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1186), 3, + ACTIONS(1208), 3, sym_true, sym_false, sym_number, - STATE(533), 9, + STATE(544), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -60820,7 +62264,231 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46162] = 17, + [47458] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1210), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2190), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1212), 3, + sym_true, + sym_false, + sym_number, + STATE(521), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47536] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1214), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2067), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1216), 3, + sym_true, + sym_false, + sym_number, + STATE(528), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47614] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1218), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2259), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1220), 3, + sym_true, + sym_false, + sym_number, + STATE(557), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47692] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1222), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2263), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1224), 3, + sym_true, + sym_false, + sym_number, + STATE(568), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47770] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -60845,15 +62513,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(1188), 1, + ACTIONS(1226), 1, ts_builtin_sym_end, - STATE(649), 1, + STATE(676), 1, aux_sym_source_file_repeat1, - STATE(1034), 1, + STATE(1062), 1, sym_psql_statement, - STATE(1499), 1, + STATE(1453), 1, sym_with_query, - STATE(2279), 17, + STATE(2379), 17, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -60871,596 +62539,49 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [46230] = 17, + [47838] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, - ts_builtin_sym_end, - ACTIONS(1192), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(1195), 1, - aux_sym_update_statement_token1, - ACTIONS(1198), 1, - aux_sym_create_type_statement_token1, - ACTIONS(1201), 1, - aux_sym_insert_statement_token1, - ACTIONS(1204), 1, - aux_sym_insert_conflict_token3, - ACTIONS(1207), 1, - aux_sym_delete_statement_token1, - ACTIONS(1210), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(1213), 1, - aux_sym_grant_statement_token1, - ACTIONS(1216), 1, - anon_sym_BSLASH, - ACTIONS(1219), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(1222), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - STATE(649), 1, - aux_sym_source_file_repeat1, - STATE(1034), 1, - sym_psql_statement, - STATE(1499), 1, - sym_with_query, - STATE(2279), 17, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [46298] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1225), 1, + ACTIONS(1228), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(2063), 1, - sym_select_statement, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(832), 2, + STATE(2142), 1, + sym_select_statement, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1227), 3, - sym_true, - sym_false, - sym_number, - STATE(531), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46376] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1229), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2110), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1231), 3, - sym_true, - sym_false, - sym_number, - STATE(530), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46454] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1233), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2018), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1235), 3, - sym_true, - sym_false, - sym_number, - STATE(522), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46532] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1237), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2028), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1239), 3, - sym_true, - sym_false, - sym_number, - STATE(510), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46610] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1241), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2011), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1243), 3, - sym_true, - sym_false, - sym_number, - STATE(507), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46688] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1245), 1, - anon_sym_RPAREN, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2210), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1247), 3, - sym_true, - sym_false, - sym_number, - STATE(545), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46766] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2079), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1249), 3, - sym_true, - sym_false, - sym_number, - STATE(500), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46841] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1986), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1251), 3, - sym_true, - sym_false, - sym_number, - STATE(502), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46916] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2148), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1253), 3, - sym_true, - sym_false, - sym_number, - STATE(504), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46991] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1986), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1255), 3, + ACTIONS(1230), 3, sym_true, sym_false, sym_number, @@ -61474,481 +62595,53 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47066] = 21, + [47916] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(267), 1, aux_sym_sequence_start_token2, - ACTIONS(283), 1, + ACTIONS(291), 1, aux_sym_select_statement_token1, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2054), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1257), 3, - sym_true, - sym_false, - sym_number, - STATE(526), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47141] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2124), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1259), 3, - sym_true, - sym_false, - sym_number, - STATE(541), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47216] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2125), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1261), 3, - sym_true, - sym_false, - sym_number, - STATE(512), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47291] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2003), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1263), 3, - sym_true, - sym_false, - sym_number, - STATE(511), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47366] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2029), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1265), 3, - sym_true, - sym_false, - sym_number, - STATE(509), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47441] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2131), 1, - sym_with_query, - STATE(2171), 1, - sym_select_statement, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1267), 3, - sym_true, - sym_false, - sym_number, - STATE(515), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47516] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2055), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1269), 3, - sym_true, - sym_false, - sym_number, - STATE(520), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47591] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(2102), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1271), 3, - sym_true, - sym_false, - sym_number, - STATE(548), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47666] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1273), 1, + ACTIONS(1232), 1, anon_sym_RPAREN, - ACTIONS(1275), 1, - aux_sym_insert_items_token1, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(1642), 1, - sym_insert_item, - STATE(832), 2, + STATE(2093), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1277), 3, + ACTIONS(1234), 3, sym_true, sym_false, sym_number, - STATE(550), 9, + STATE(563), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -61958,871 +62651,100 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47738] = 19, + [47994] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1279), 1, - aux_sym_insert_items_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1694), 1, - sym_update_value, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(436), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47807] = 19, + ACTIONS(1236), 1, + ts_builtin_sym_end, + ACTIONS(1238), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(1241), 1, + aux_sym_update_statement_token1, + ACTIONS(1244), 1, + aux_sym_create_type_statement_token1, + ACTIONS(1247), 1, + aux_sym_insert_statement_token1, + ACTIONS(1250), 1, + aux_sym_insert_conflict_token3, + ACTIONS(1253), 1, + aux_sym_delete_statement_token1, + ACTIONS(1256), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(1259), 1, + aux_sym_grant_statement_token1, + ACTIONS(1262), 1, + anon_sym_BSLASH, + ACTIONS(1265), 1, + aux_sym_sequence_start_token2, + ACTIONS(1268), 1, + aux_sym_select_statement_token1, + STATE(676), 1, + aux_sym_source_file_repeat1, + STATE(1062), 1, + sym_psql_statement, + STATE(1453), 1, + sym_with_query, + STATE(2379), 17, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [48062] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1279), 1, - aux_sym_insert_items_token1, - ACTIONS(1283), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1289), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1291), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1293), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1295), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1299), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(1252), 1, - sym_update_value, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1297), 3, - sym_true, - sym_false, - sym_number, - STATE(478), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47876] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1279), 1, - aux_sym_insert_items_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1742), 1, - sym_update_value, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(436), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47945] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1275), 1, - aux_sym_insert_items_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1818), 1, - sym_insert_item, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1277), 3, - sym_true, - sym_false, - sym_number, - STATE(550), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48014] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1279), 1, - aux_sym_insert_items_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1252), 1, - sym_update_value, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(436), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48083] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1279), 1, - aux_sym_insert_items_token1, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(1807), 1, - sym_update_value, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(436), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48152] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1301), 1, - anon_sym_SEMI, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(1613), 1, - sym_select_item, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1317), 3, - sym_true, - sym_false, - sym_number, - STATE(470), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48221] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(1164), 1, - sym_order_by_item, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1321), 3, - sym_true, - sym_false, - sym_number, - STATE(180), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48287] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1323), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(505), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48353] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1327), 1, - aux_sym_return_statement_token2, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1329), 3, - sym_true, - sym_false, - sym_number, - STATE(566), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48419] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1296), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48485] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1349), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1351), 3, - sym_true, - sym_false, - sym_number, - STATE(513), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48551] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(1156), 1, - sym_order_by_item, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1321), 3, - sym_true, - sym_false, - sym_number, - STATE(180), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48617] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1353), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1355), 3, - sym_true, - sym_false, - sym_number, - STATE(516), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48683] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1331), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48749] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1357), 1, + ACTIONS(1271), 1, anon_sym_RPAREN, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(832), 2, + STATE(2104), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1359), 3, - sym_true, - sym_false, - sym_number, - STATE(539), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48815] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1361), 1, - anon_sym_SEMI, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(549), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48881] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1365), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1367), 3, + ACTIONS(1273), 3, sym_true, sym_false, sym_number, @@ -62836,45 +62758,51 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [48947] = 18, + [48140] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1283), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1289), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1291), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1293), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1295), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1299), 1, + ACTIONS(1164), 1, sym__identifier, - ACTIONS(1369), 1, - aux_sym_grant_privileges_token1, - STATE(176), 1, + STATE(47), 1, sym_identifier, - STATE(729), 1, + STATE(770), 1, sym_not, - STATE(728), 2, + STATE(2110), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(1371), 3, + ACTIONS(1275), 3, sym_true, sym_false, sym_number, - STATE(407), 9, + STATE(558), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62884,3619 +62812,47 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [49013] = 18, + [48215] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(842), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(846), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(848), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(850), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(854), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(856), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(860), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(271), 1, + STATE(47), 1, sym_identifier, - STATE(755), 1, + STATE(770), 1, sym_not, - STATE(1005), 1, - sym_select_item, - STATE(757), 2, + STATE(2060), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, sym_minus, sym_plus, - ACTIONS(858), 3, - sym_true, - sym_false, - sym_number, - STATE(95), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49079] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1292), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49145] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(1525), 1, - sym_select_item, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1317), 3, - sym_true, - sym_false, - sym_number, - STATE(470), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49211] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1373), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1375), 3, - sym_true, - sym_false, - sym_number, - STATE(532), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49277] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1030), 1, - anon_sym_SEMI, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1377), 3, - sym_true, - sym_false, - sym_number, - STATE(501), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49343] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1379), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1381), 3, - sym_true, - sym_false, - sym_number, - STATE(540), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49409] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1383), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1385), 3, - sym_true, - sym_false, - sym_number, - STATE(528), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49475] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1005), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49541] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1294), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49607] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1387), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1389), 3, - sym_true, - sym_false, - sym_number, - STATE(518), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49673] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1391), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1393), 3, - sym_true, - sym_false, - sym_number, - STATE(534), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49739] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1307), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49805] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1395), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1397), 3, - sym_true, - sym_false, - sym_number, - STATE(508), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49871] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1423), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49937] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - ACTIONS(1399), 1, - anon_sym_RBRACK, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1401), 3, - sym_true, - sym_false, - sym_number, - STATE(506), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50003] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(1005), 1, - sym_select_item, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(898), 3, - sym_true, - sym_false, - sym_number, - STATE(167), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50069] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(1005), 1, - sym_select_item, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1317), 3, - sym_true, - sym_false, - sym_number, - STATE(470), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50135] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(1005), 1, - sym_select_item, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(749), 3, - sym_true, - sym_false, - sym_number, - STATE(50), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50201] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(1311), 1, - sym_select_item, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1345), 3, - sym_true, - sym_false, - sym_number, - STATE(390), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50267] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1403), 3, - sym_true, - sym_false, - sym_number, - STATE(65), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50330] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1405), 3, - sym_true, - sym_false, - sym_number, - STATE(71), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50393] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1407), 3, - sym_true, - sym_false, - sym_number, - STATE(496), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50456] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1423), 3, - sym_true, - sym_false, - sym_number, - STATE(189), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50519] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1441), 3, - sym_true, - sym_false, - sym_number, - STATE(172), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50582] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1459), 3, - sym_true, - sym_false, - sym_number, - STATE(19), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50645] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1463), 3, - sym_true, - sym_false, - sym_number, - STATE(542), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50708] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1465), 3, - sym_true, - sym_false, - sym_number, - STATE(31), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50771] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1467), 3, - sym_true, - sym_false, - sym_number, - STATE(562), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50834] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1469), 3, - sym_true, - sym_false, - sym_number, - STATE(568), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50897] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1471), 3, - sym_true, - sym_false, - sym_number, - STATE(14), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50960] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1473), 3, - sym_true, - sym_false, - sym_number, - STATE(570), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51023] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - ACTIONS(1475), 1, - anon_sym_LPAREN, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1477), 3, - sym_true, - sym_false, - sym_number, - STATE(185), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51086] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1493), 3, - sym_true, - sym_false, - sym_number, - STATE(109), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51149] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1497), 3, - sym_true, - sym_false, - sym_number, - STATE(8), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51212] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1499), 3, - sym_true, - sym_false, - sym_number, - STATE(30), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51275] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1501), 3, - sym_true, - sym_false, - sym_number, - STATE(561), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51338] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1503), 3, - sym_true, - sym_false, - sym_number, - STATE(18), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51401] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1505), 3, - sym_true, - sym_false, - sym_number, - STATE(29), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51464] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1507), 3, - sym_true, - sym_false, - sym_number, - STATE(433), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51527] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1509), 3, - sym_true, - sym_false, - sym_number, - STATE(139), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51590] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1511), 3, - sym_true, - sym_false, - sym_number, - STATE(73), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51653] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1513), 3, - sym_true, - sym_false, - sym_number, - STATE(74), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51716] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1515), 3, - sym_true, - sym_false, - sym_number, - STATE(583), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51779] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1517), 3, - sym_true, - sym_false, - sym_number, - STATE(201), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51842] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1519), 3, - sym_true, - sym_false, - sym_number, - STATE(202), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51905] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1521), 3, - sym_true, - sym_false, - sym_number, - STATE(166), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51968] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1523), 3, - sym_true, - sym_false, - sym_number, - STATE(203), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52031] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1525), 3, - sym_true, - sym_false, - sym_number, - STATE(207), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52094] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1527), 3, - sym_true, - sym_false, - sym_number, - STATE(165), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52157] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1529), 3, - sym_true, - sym_false, - sym_number, - STATE(208), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52220] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1531), 3, - sym_true, - sym_false, - sym_number, - STATE(123), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52283] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1533), 3, - sym_true, - sym_false, - sym_number, - STATE(216), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52346] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1535), 3, - sym_true, - sym_false, - sym_number, - STATE(211), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52409] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1537), 3, - sym_true, - sym_false, - sym_number, - STATE(578), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52472] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1539), 3, - sym_true, - sym_false, - sym_number, - STATE(190), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52535] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1541), 3, - sym_true, - sym_false, - sym_number, - STATE(80), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52598] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1543), 3, - sym_true, - sym_false, - sym_number, - STATE(81), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52661] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1545), 3, - sym_true, - sym_false, - sym_number, - STATE(160), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52724] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1547), 3, - sym_true, - sym_false, - sym_number, - STATE(83), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52787] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1549), 3, - sym_true, - sym_false, - sym_number, - STATE(84), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52850] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1551), 3, - sym_true, - sym_false, - sym_number, - STATE(199), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52913] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1553), 3, - sym_true, - sym_false, - sym_number, - STATE(188), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52976] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1555), 3, - sym_true, - sym_false, - sym_number, - STATE(85), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53039] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1557), 3, - sym_true, - sym_false, - sym_number, - STATE(159), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53102] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1559), 3, - sym_true, - sym_false, - sym_number, - STATE(20), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53165] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1561), 3, - sym_true, - sym_false, - sym_number, - STATE(86), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53228] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1563), 3, - sym_true, - sym_false, - sym_number, - STATE(158), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53291] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1565), 3, - sym_true, - sym_false, - sym_number, - STATE(174), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53354] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1567), 3, - sym_true, - sym_false, - sym_number, - STATE(157), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53417] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1569), 3, - sym_true, - sym_false, - sym_number, - STATE(173), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53480] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(842), 1, - anon_sym_LPAREN, - ACTIONS(846), 1, - aux_sym_alter_column_action_token2, - ACTIONS(848), 1, - anon_sym_DOLLAR, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(852), 1, - aux_sym_array_constructor_token1, - ACTIONS(854), 1, - aux_sym_time_expression_token4, - ACTIONS(856), 1, - anon_sym_STAR, - ACTIONS(860), 1, - sym__identifier, - STATE(271), 1, - sym_identifier, - STATE(755), 1, - sym_not, - STATE(757), 2, - sym_minus, - sym_plus, - ACTIONS(1571), 3, - sym_true, - sym_false, - sym_number, - STATE(155), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53543] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1573), 3, - sym_true, - sym_false, - sym_number, - STATE(557), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53606] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1575), 3, - sym_true, - sym_false, - sym_number, - STATE(576), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53669] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1577), 3, - sym_true, - sym_false, - sym_number, - STATE(114), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53732] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1579), 3, - sym_true, - sym_false, - sym_number, - STATE(112), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53795] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1581), 3, - sym_true, - sym_false, - sym_number, - STATE(111), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53858] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1479), 1, - anon_sym_LPAREN, - ACTIONS(1481), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, - anon_sym_DOLLAR, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - ACTIONS(1487), 1, - aux_sym_array_constructor_token1, - ACTIONS(1489), 1, - aux_sym_time_expression_token4, - ACTIONS(1491), 1, - anon_sym_STAR, - ACTIONS(1495), 1, - sym__identifier, - STATE(218), 1, - sym_identifier, - STATE(771), 1, - sym_not, - STATE(772), 2, - sym_minus, - sym_plus, - ACTIONS(1583), 3, - sym_true, - sym_false, - sym_number, - STATE(110), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53921] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1585), 3, + ACTIONS(1277), 3, sym_true, sym_false, sym_number, @@ -66510,36 +62866,4674 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [53984] = 17, + [48290] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1118), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1128), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1130), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1132), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1134), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1138), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(44), 1, + STATE(47), 1, sym_identifier, - STATE(831), 1, + STATE(770), 1, sym_not, - STATE(832), 2, + STATE(2013), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1279), 3, + sym_true, + sym_false, + sym_number, + STATE(524), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48365] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2119), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1281), 3, + sym_true, + sym_false, + sym_number, + STATE(533), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48440] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2032), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1283), 3, + sym_true, + sym_false, + sym_number, + STATE(566), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48515] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2206), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1285), 3, + sym_true, + sym_false, + sym_number, + STATE(555), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48590] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2182), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1287), 3, + sym_true, + sym_false, + sym_number, + STATE(567), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48665] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2058), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1289), 3, + sym_true, + sym_false, + sym_number, + STATE(536), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48740] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2013), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1291), 3, + sym_true, + sym_false, + sym_number, + STATE(554), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48815] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2158), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1293), 3, + sym_true, + sym_false, + sym_number, + STATE(546), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48890] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2085), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1295), 3, + sym_true, + sym_false, + sym_number, + STATE(561), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [48965] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(2117), 1, + sym_with_query, + STATE(2134), 1, + sym_select_statement, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1297), 3, + sym_true, + sym_false, + sym_number, + STATE(531), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49040] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1299), 1, + anon_sym_RPAREN, + ACTIONS(1301), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1757), 1, + sym_insert_item, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1303), 3, + sym_true, + sym_false, + sym_number, + STATE(577), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49112] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1307), 1, + aux_sym_insert_items_token1, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(1294), 1, + sym_update_value, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1321), 3, + sym_true, + sym_false, + sym_number, + STATE(460), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49181] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1307), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1807), 1, + sym_update_value, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1325), 3, + sym_true, + sym_false, + sym_number, + STATE(485), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49250] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1307), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1294), 1, + sym_update_value, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1325), 3, + sym_true, + sym_false, + sym_number, + STATE(485), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49319] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1301), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1893), 1, + sym_insert_item, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1303), 3, + sym_true, + sym_false, + sym_number, + STATE(577), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1307), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1746), 1, + sym_update_value, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1325), 3, + sym_true, + sym_false, + sym_number, + STATE(485), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49457] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1307), 1, + aux_sym_insert_items_token1, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(1668), 1, + sym_update_value, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1325), 3, + sym_true, + sym_false, + sym_number, + STATE(485), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49526] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1327), 1, + anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(1745), 1, + sym_select_item, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1343), 3, + sym_true, + sym_false, + sym_number, + STATE(484), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49595] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1018), 1, + anon_sym_SEMI, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1347), 3, + sym_true, + sym_false, + sym_number, + STATE(543), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49661] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1449), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49727] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(1165), 1, + sym_order_by_item, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1367), 3, + sym_true, + sym_false, + sym_number, + STATE(212), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49793] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1331), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49859] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1349), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49925] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(1204), 1, + sym_order_by_item, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1367), 3, + sym_true, + sym_false, + sym_number, + STATE(212), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [49991] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1369), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1371), 3, + sym_true, + sym_false, + sym_number, + STATE(539), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50057] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(1031), 1, + sym_select_item, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1343), 3, + sym_true, + sym_false, + sym_number, + STATE(484), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50123] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + ACTIONS(1373), 1, + aux_sym_grant_privileges_token1, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1375), 3, + sym_true, + sym_false, + sym_number, + STATE(393), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50189] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1377), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1379), 3, + sym_true, + sym_false, + sym_number, + STATE(522), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50255] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(1031), 1, + sym_select_item, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(910), 3, + sym_true, + sym_false, + sym_number, + STATE(162), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50321] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1326), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50387] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1381), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1383), 3, + sym_true, + sym_false, + sym_number, + STATE(526), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50453] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1314), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50519] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1385), 1, + aux_sym_return_statement_token2, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1387), 3, + sym_true, + sym_false, + sym_number, + STATE(601), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50585] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1389), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1391), 3, + sym_true, + sym_false, + sym_number, + STATE(545), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50651] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(1533), 1, + sym_select_item, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1343), 3, + sym_true, + sym_false, + sym_number, + STATE(484), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50717] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1393), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1395), 3, + sym_true, + sym_false, + sym_number, + STATE(548), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50783] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1397), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1399), 3, + sym_true, + sym_false, + sym_number, + STATE(530), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50849] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(1031), 1, + sym_select_item, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(788), 3, + sym_true, + sym_false, + sym_number, + STATE(58), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50915] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1031), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [50981] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1401), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1403), 3, + sym_true, + sym_false, + sym_number, + STATE(551), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51047] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1384), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51113] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1405), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1407), 3, + sym_true, + sym_false, + sym_number, + STATE(552), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51179] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1409), 1, + anon_sym_SEMI, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1411), 3, + sym_true, + sym_false, + sym_number, + STATE(549), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51245] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1413), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1415), 3, + sym_true, + sym_false, + sym_number, + STATE(569), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1417), 1, + anon_sym_RPAREN, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1419), 3, + sym_true, + sym_false, + sym_number, + STATE(523), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51377] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1421), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1423), 3, + sym_true, + sym_false, + sym_number, + STATE(527), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51443] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(1031), 1, + sym_select_item, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(850), 3, + sym_true, + sym_false, + sym_number, + STATE(130), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51509] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(1379), 1, + sym_select_item, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1363), 3, + sym_true, + sym_false, + sym_number, + STATE(438), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51575] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + ACTIONS(1425), 1, + anon_sym_RBRACK, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1427), 3, + sym_true, + sym_false, + sym_number, + STATE(560), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51641] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1429), 3, + sym_true, + sym_false, + sym_number, + STATE(512), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51704] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1445), 3, + sym_true, + sym_false, + sym_number, + STATE(128), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51767] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1449), 3, + sym_true, + sym_false, + sym_number, + STATE(607), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51830] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1451), 3, + sym_true, + sym_false, + sym_number, + STATE(499), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51893] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1453), 3, + sym_true, + sym_false, + sym_number, + STATE(493), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [51956] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1469), 3, + sym_true, + sym_false, + sym_number, + STATE(151), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52019] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1473), 3, + sym_true, + sym_false, + sym_number, + STATE(507), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52082] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1475), 3, + sym_true, + sym_false, + sym_number, + STATE(90), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52145] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1477), 3, + sym_true, + sym_false, + sym_number, + STATE(598), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52208] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1479), 3, + sym_true, + sym_false, + sym_number, + STATE(158), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52271] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1481), 3, + sym_true, + sym_false, + sym_number, + STATE(473), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1483), 3, + sym_true, + sym_false, + sym_number, + STATE(179), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52397] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1485), 3, + sym_true, + sym_false, + sym_number, + STATE(181), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52460] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1487), 3, + sym_true, + sym_false, + sym_number, + STATE(153), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52523] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1489), 3, + sym_true, + sym_false, + sym_number, + STATE(590), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52586] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1491), 3, + sym_true, + sym_false, + sym_number, + STATE(223), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52649] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1493), 3, + sym_true, + sym_false, + sym_number, + STATE(222), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52712] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1495), 3, + sym_true, + sym_false, + sym_number, + STATE(220), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52775] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1497), 3, + sym_true, + sym_false, + sym_number, + STATE(175), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52838] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1499), 3, + sym_true, + sym_false, + sym_number, + STATE(152), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52901] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1501), 3, + sym_true, + sym_false, + sym_number, + STATE(217), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [52964] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1503), 3, + sym_true, + sym_false, + sym_number, + STATE(216), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53027] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1505), 3, + sym_true, + sym_false, + sym_number, + STATE(160), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53090] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1507), 3, + sym_true, + sym_false, + sym_number, + STATE(215), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53153] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1509), 3, + sym_true, + sym_false, + sym_number, + STATE(207), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53216] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1511), 3, + sym_true, + sym_false, + sym_number, + STATE(193), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53279] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1513), 3, + sym_true, + sym_false, + sym_number, + STATE(559), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53342] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1515), 3, + sym_true, + sym_false, + sym_number, + STATE(587), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53405] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1517), 3, + sym_true, + sym_false, + sym_number, + STATE(516), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53468] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1519), 3, + sym_true, + sym_false, + sym_number, + STATE(169), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53531] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1521), 3, + sym_true, + sym_false, + sym_number, + STATE(192), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53594] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1523), 3, + sym_true, + sym_false, + sym_number, + STATE(194), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53657] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1525), 3, + sym_true, + sym_false, + sym_number, + STATE(445), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53720] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1527), 3, + sym_true, + sym_false, + sym_number, + STATE(502), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53783] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1529), 3, + sym_true, + sym_false, + sym_number, + STATE(506), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53846] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1531), 3, + sym_true, + sym_false, + sym_number, + STATE(178), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53909] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1533), 3, + sym_true, + sym_false, + sym_number, + STATE(177), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [53972] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1549), 3, + sym_true, + sym_false, + sym_number, + STATE(260), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54035] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1553), 3, + sym_true, + sym_false, + sym_number, + STATE(75), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54098] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1555), 3, + sym_true, + sym_false, + sym_number, + STATE(498), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54161] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1557), 3, + sym_true, + sym_false, + sym_number, + STATE(444), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54224] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1559), 3, + sym_true, + sym_false, + sym_number, + STATE(9), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54287] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1561), 3, + sym_true, + sym_false, + sym_number, + STATE(150), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54350] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1563), 3, + sym_true, + sym_false, + sym_number, + STATE(31), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54413] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1565), 3, + sym_true, + sym_false, + sym_number, + STATE(584), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54476] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1567), 3, + sym_true, + sym_false, + sym_number, + STATE(610), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54539] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1569), 3, + sym_true, + sym_false, + sym_number, + STATE(27), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54602] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1571), 3, + sym_true, + sym_false, + sym_number, + STATE(149), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [54665] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, sym_minus, sym_plus, ACTIONS(1587), 3, @@ -66556,89 +67550,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54047] = 17, + [54728] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1331), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1333), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1337), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1339), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1341), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1343), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(525), 1, + STATE(47), 1, sym_identifier, - STATE(805), 1, + STATE(770), 1, sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1589), 3, - sym_true, - sym_false, - sym_number, - STATE(444), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54110] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1591), 3, sym_true, sym_false, sym_number, - STATE(445), 9, + STATE(599), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66648,43 +67596,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54173] = 17, + [54791] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1479), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1485), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1487), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1489), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1491), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1495), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(218), 1, + STATE(47), 1, sym_identifier, - STATE(771), 1, + STATE(770), 1, sym_not, - STATE(772), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1593), 3, sym_true, sym_false, sym_number, - STATE(108), 9, + STATE(595), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66694,43 +67642,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54236] = 17, + [54854] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1479), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1351), 1, aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, + ACTIONS(1353), 1, anon_sym_DOLLAR, - ACTIONS(1485), 1, + ACTIONS(1355), 1, anon_sym_SQUOTE, - ACTIONS(1487), 1, + ACTIONS(1357), 1, aux_sym_array_constructor_token1, - ACTIONS(1489), 1, + ACTIONS(1359), 1, aux_sym_time_expression_token4, - ACTIONS(1491), 1, + ACTIONS(1361), 1, anon_sym_STAR, - ACTIONS(1495), 1, + ACTIONS(1365), 1, sym__identifier, - STATE(218), 1, + STATE(520), 1, sym_identifier, - STATE(771), 1, + STATE(761), 1, sym_not, - STATE(772), 2, + STATE(769), 2, sym_minus, sym_plus, ACTIONS(1595), 3, sym_true, sym_false, sym_number, - STATE(107), 9, + STATE(450), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66740,43 +67688,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54299] = 17, + [54917] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1479), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1485), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1487), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1489), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1491), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1495), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(218), 1, + STATE(47), 1, sym_identifier, - STATE(771), 1, + STATE(770), 1, sym_not, - STATE(772), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1597), 3, sym_true, sym_false, sym_number, - STATE(104), 9, + STATE(572), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66786,43 +67734,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54362] = 17, + [54980] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1479), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1481), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1483), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1485), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1487), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1489), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1491), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1495), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(218), 1, + STATE(47), 1, sym_identifier, - STATE(771), 1, + STATE(770), 1, sym_not, - STATE(772), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1599), 3, sym_true, sym_false, sym_number, - STATE(103), 9, + STATE(597), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66832,2480 +67780,42 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54425] = 17, + [55043] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1427), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(1433), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(1435), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(1437), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(1439), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(1443), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(281), 1, + STATE(47), 1, sym_identifier, - STATE(791), 1, + STATE(770), 1, sym_not, - STATE(793), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1601), 3, sym_true, sym_false, sym_number, - STATE(154), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54488] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1603), 3, - sym_true, - sym_false, - sym_number, - STATE(446), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54551] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1605), 3, - sym_true, - sym_false, - sym_number, - STATE(451), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54614] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1607), 3, - sym_true, - sym_false, - sym_number, - STATE(447), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54677] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1609), 3, - sym_true, - sym_false, - sym_number, - STATE(448), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54740] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1611), 3, - sym_true, - sym_false, - sym_number, - STATE(497), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54803] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1613), 3, - sym_true, - sym_false, - sym_number, - STATE(150), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54866] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1615), 3, - sym_true, - sym_false, - sym_number, - STATE(149), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54929] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1617), 3, - sym_true, - sym_false, - sym_number, - STATE(225), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54992] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1619), 3, - sym_true, - sym_false, - sym_number, - STATE(79), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55055] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1621), 3, - sym_true, - sym_false, - sym_number, - STATE(148), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55118] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1287), 1, - anon_sym_DOLLAR, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_array_constructor_token1, - ACTIONS(1293), 1, - aux_sym_time_expression_token4, - ACTIONS(1295), 1, - anon_sym_STAR, - ACTIONS(1299), 1, - sym__identifier, - STATE(176), 1, - sym_identifier, - STATE(729), 1, - sym_not, - STATE(728), 2, - sym_minus, - sym_plus, - ACTIONS(1623), 3, - sym_true, - sym_false, - sym_number, - STATE(328), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55181] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1625), 3, - sym_true, - sym_false, - sym_number, - STATE(147), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55244] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1142), 3, - sym_true, - sym_false, - sym_number, - STATE(584), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55307] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1627), 3, - sym_true, - sym_false, - sym_number, - STATE(326), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55370] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1629), 3, - sym_true, - sym_false, - sym_number, - STATE(175), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55433] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1631), 3, - sym_true, - sym_false, - sym_number, - STATE(152), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55496] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1633), 3, - sym_true, - sym_false, - sym_number, - STATE(153), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55559] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1635), 3, - sym_true, - sym_false, - sym_number, - STATE(161), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55622] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1637), 3, - sym_true, - sym_false, - sym_number, - STATE(424), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55685] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1429), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1431), 1, - anon_sym_DOLLAR, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - ACTIONS(1435), 1, - aux_sym_array_constructor_token1, - ACTIONS(1437), 1, - aux_sym_time_expression_token4, - ACTIONS(1439), 1, - anon_sym_STAR, - ACTIONS(1443), 1, - sym__identifier, - STATE(281), 1, - sym_identifier, - STATE(791), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1639), 3, - sym_true, - sym_false, - sym_number, - STATE(162), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55748] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1641), 3, - sym_true, - sym_false, - sym_number, - STATE(56), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55811] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1643), 3, - sym_true, - sym_false, - sym_number, - STATE(77), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55874] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1645), 3, - sym_true, - sym_false, - sym_number, - STATE(452), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55937] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1647), 3, - sym_true, - sym_false, - sym_number, - STATE(580), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56000] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1649), 3, - sym_true, - sym_false, - sym_number, - STATE(213), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56063] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1651), 3, - sym_true, - sym_false, - sym_number, - STATE(72), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56126] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1411), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1413), 1, - anon_sym_DOLLAR, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - ACTIONS(1417), 1, - aux_sym_array_constructor_token1, - ACTIONS(1419), 1, - aux_sym_time_expression_token4, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1425), 1, - sym__identifier, - STATE(313), 1, - sym_identifier, - STATE(748), 1, - sym_not, - STATE(749), 2, - sym_minus, - sym_plus, - ACTIONS(1653), 3, - sym_true, - sym_false, - sym_number, - STATE(236), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56189] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1655), 3, - sym_true, - sym_false, - sym_number, - STATE(69), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56252] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1657), 3, - sym_true, - sym_false, - sym_number, - STATE(68), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56315] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1659), 3, - sym_true, - sym_false, - sym_number, - STATE(586), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56378] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1661), 3, - sym_true, - sym_false, - sym_number, - STATE(67), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56441] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1663), 3, - sym_true, - sym_false, - sym_number, - STATE(467), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56504] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1665), 3, - sym_true, - sym_false, - sym_number, - STATE(57), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56567] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1667), 3, - sym_true, - sym_false, - sym_number, - STATE(59), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56630] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1669), 3, - sym_true, - sym_false, - sym_number, - STATE(556), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56693] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1671), 3, - sym_true, - sym_false, - sym_number, - STATE(11), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56756] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1673), 3, - sym_true, - sym_false, - sym_number, - STATE(12), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56819] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1675), 3, - sym_true, - sym_false, - sym_number, - STATE(581), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56882] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1677), 3, - sym_true, - sym_false, - sym_number, - STATE(13), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56945] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1679), 3, - sym_true, - sym_false, - sym_number, - STATE(15), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57008] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1681), 3, - sym_true, - sym_false, - sym_number, - STATE(17), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57071] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_number, - STATE(560), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57134] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1685), 3, - sym_true, - sym_false, - sym_number, - STATE(22), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57197] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1687), 3, - sym_true, - sym_false, - sym_number, - STATE(23), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57260] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1331), 1, - anon_sym_LPAREN, - ACTIONS(1333), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1335), 1, - anon_sym_DOLLAR, - ACTIONS(1337), 1, - anon_sym_SQUOTE, - ACTIONS(1339), 1, - aux_sym_array_constructor_token1, - ACTIONS(1341), 1, - aux_sym_time_expression_token4, - ACTIONS(1343), 1, - anon_sym_STAR, - ACTIONS(1347), 1, - sym__identifier, - STATE(525), 1, - sym_identifier, - STATE(805), 1, - sym_not, - STATE(818), 2, - sym_minus, - sym_plus, - ACTIONS(1689), 3, - sym_true, - sym_false, - sym_number, - STATE(469), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57323] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1691), 3, - sym_true, - sym_false, - sym_number, - STATE(489), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57386] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1693), 3, - sym_true, - sym_false, - sym_number, - STATE(571), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57449] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1695), 3, - sym_true, - sym_false, - sym_number, - STATE(479), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57512] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1697), 3, - sym_true, - sym_false, - sym_number, - STATE(582), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57575] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_number, - STATE(209), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57638] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1701), 3, - sym_true, - sym_false, - sym_number, - STATE(574), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57701] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_number, - STATE(205), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57764] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, - ACTIONS(1455), 1, - aux_sym_time_expression_token4, - ACTIONS(1457), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - sym__identifier, - STATE(41), 1, - sym_identifier, - STATE(724), 1, - sym_not, - STATE(725), 2, - sym_minus, - sym_plus, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_number, STATE(24), 9, sym_string, sym__value_expression, @@ -69316,641 +67826,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57827] = 17, + [55106] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1707), 3, - sym_true, - sym_false, - sym_number, - STATE(197), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57890] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1709), 3, - sym_true, - sym_false, - sym_number, - STATE(573), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57953] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1711), 3, - sym_true, - sym_false, - sym_number, - STATE(196), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58016] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_number, - STATE(195), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58079] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1715), 3, - sym_true, - sym_false, - sym_number, - STATE(27), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58142] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1717), 3, - sym_true, - sym_false, - sym_number, - STATE(28), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58205] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1719), 3, - sym_true, - sym_false, - sym_number, - STATE(193), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58268] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1721), 3, - sym_true, - sym_false, - sym_number, - STATE(494), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58331] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1723), 3, - sym_true, - sym_false, - sym_number, - STATE(192), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58394] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1725), 3, - sym_true, - sym_false, - sym_number, - STATE(484), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58457] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1727), 3, - sym_true, - sym_false, - sym_number, - STATE(187), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58520] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - aux_sym_alter_column_action_token2, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_SQUOTE, - ACTIONS(892), 1, - aux_sym_array_constructor_token1, - ACTIONS(894), 1, - aux_sym_time_expression_token4, - ACTIONS(896), 1, - anon_sym_STAR, - ACTIONS(900), 1, - sym__identifier, - STATE(338), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(838), 2, - sym_minus, - sym_plus, - ACTIONS(1729), 3, - sym_true, - sym_false, - sym_number, - STATE(186), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58583] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(721), 1, - aux_sym_alter_column_action_token2, - ACTIONS(733), 1, - anon_sym_DOLLAR, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(739), 1, - aux_sym_array_constructor_token1, - ACTIONS(741), 1, - aux_sym_time_expression_token4, - ACTIONS(743), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(751), 1, - sym__identifier, - STATE(212), 1, - sym_identifier, - STATE(795), 1, - sym_not, - STATE(794), 2, - sym_minus, - sym_plus, - ACTIONS(1731), 3, - sym_true, - sym_false, - sym_number, - STATE(66), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58646] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1445), 1, - anon_sym_LPAREN, - ACTIONS(1447), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, - anon_sym_DOLLAR, - ACTIONS(1451), 1, - anon_sym_SQUOTE, - ACTIONS(1453), 1, - aux_sym_array_constructor_token1, ACTIONS(1455), 1, - aux_sym_time_expression_token4, + anon_sym_LPAREN, ACTIONS(1457), 1, - anon_sym_STAR, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, sym__identifier, - STATE(41), 1, + STATE(275), 1, sym_identifier, - STATE(724), 1, + STATE(837), 1, sym_not, - STATE(725), 2, + STATE(812), 2, sym_minus, sym_plus, - ACTIONS(1733), 3, + ACTIONS(1603), 3, sym_true, sym_false, sym_number, - STATE(16), 9, + STATE(180), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69960,39 +67872,1833 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58709] = 17, + [55169] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1445), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1433), 1, aux_sym_alter_column_action_token2, - ACTIONS(1449), 1, + ACTIONS(1435), 1, anon_sym_DOLLAR, - ACTIONS(1451), 1, + ACTIONS(1437), 1, anon_sym_SQUOTE, - ACTIONS(1453), 1, + ACTIONS(1439), 1, aux_sym_array_constructor_token1, - ACTIONS(1455), 1, + ACTIONS(1441), 1, aux_sym_time_expression_token4, - ACTIONS(1457), 1, + ACTIONS(1443), 1, anon_sym_STAR, - ACTIONS(1461), 1, + ACTIONS(1447), 1, sym__identifier, - STATE(41), 1, + STATE(237), 1, sym_identifier, - STATE(724), 1, + STATE(800), 1, sym_not, - STATE(725), 2, + STATE(796), 2, sym_minus, sym_plus, - ACTIONS(1735), 3, + ACTIONS(1605), 3, + sym_true, + sym_false, + sym_number, + STATE(120), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55232] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1607), 3, + sym_true, + sym_false, + sym_number, + STATE(155), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55295] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1609), 3, + sym_true, + sym_false, + sym_number, + STATE(203), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55358] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1611), 3, + sym_true, + sym_false, + sym_number, + STATE(201), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55421] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1613), 3, + sym_true, + sym_false, + sym_number, + STATE(515), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55484] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1168), 3, + sym_true, + sym_false, + sym_number, + STATE(591), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55547] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1615), 3, + sym_true, + sym_false, + sym_number, + STATE(254), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55610] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1617), 3, + sym_true, + sym_false, + sym_number, + STATE(329), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55673] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1619), 3, + sym_true, + sym_false, + sym_number, + STATE(458), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55736] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(896), 1, + anon_sym_LPAREN, + ACTIONS(898), 1, + aux_sym_alter_column_action_token2, + ACTIONS(900), 1, + anon_sym_DOLLAR, + ACTIONS(902), 1, + anon_sym_SQUOTE, + ACTIONS(904), 1, + aux_sym_array_constructor_token1, + ACTIONS(906), 1, + aux_sym_time_expression_token4, + ACTIONS(908), 1, + anon_sym_STAR, + ACTIONS(912), 1, + sym__identifier, + STATE(333), 1, + sym_identifier, + STATE(759), 1, + sym_not, + STATE(760), 2, + sym_minus, + sym_plus, + ACTIONS(1621), 3, + sym_true, + sym_false, + sym_number, + STATE(184), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55799] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1623), 3, + sym_true, + sym_false, + sym_number, + STATE(154), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55862] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1625), 3, + sym_true, + sym_false, + sym_number, + STATE(123), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55925] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1627), 3, + sym_true, + sym_false, + sym_number, + STATE(513), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [55988] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1629), 3, + sym_true, + sym_false, + sym_number, + STATE(449), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56051] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1631), 3, + sym_true, + sym_false, + sym_number, + STATE(190), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56114] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1633), 3, + sym_true, + sym_false, + sym_number, + STATE(126), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56177] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1635), 3, + sym_true, + sym_false, + sym_number, + STATE(157), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56240] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1637), 3, + sym_true, + sym_false, + sym_number, + STATE(89), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56303] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1639), 3, + sym_true, + sym_false, + sym_number, + STATE(88), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56366] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1641), 3, + sym_true, + sym_false, + sym_number, + STATE(483), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56429] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1643), 3, + sym_true, + sym_false, + sym_number, + STATE(198), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56492] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1645), 3, + sym_true, + sym_false, + sym_number, + STATE(204), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56555] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1647), 3, + sym_true, + sym_false, + sym_number, + STATE(461), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56618] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1649), 3, + sym_true, + sym_false, + sym_number, + STATE(205), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56681] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1651), 3, + sym_true, + sym_false, + sym_number, + STATE(17), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56744] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1653), 3, + sym_true, + sym_false, + sym_number, + STATE(176), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56807] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1655), 3, + sym_true, + sym_false, + sym_number, + STATE(579), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56870] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1657), 3, + sym_true, + sym_false, + sym_number, + STATE(174), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56933] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1659), 3, + sym_true, + sym_false, + sym_number, + STATE(30), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [56996] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1661), 3, + sym_true, + sym_false, + sym_number, + STATE(87), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57059] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1663), 3, + sym_true, + sym_false, + sym_number, + STATE(208), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57122] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1665), 3, + sym_true, + sym_false, + sym_number, + STATE(209), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57185] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1667), 3, + sym_true, + sym_false, + sym_number, + STATE(86), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57248] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1669), 3, + sym_true, + sym_false, + sym_number, + STATE(96), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57311] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1671), 3, + sym_true, + sym_false, + sym_number, + STATE(85), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57374] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1673), 3, + sym_true, + sym_false, + sym_number, + STATE(10), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57437] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1675), 3, + sym_true, + sym_false, + sym_number, + STATE(593), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57500] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1677), 3, + sym_true, + sym_false, + sym_number, + STATE(29), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57563] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1679), 3, + sym_true, + sym_false, + sym_number, + STATE(32), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57626] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1681), 3, sym_true, sym_false, sym_number, @@ -70006,43 +69712,1285 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58772] = 17, + [57689] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1303), 1, + ACTIONS(1535), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1537), 1, aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, + ACTIONS(1539), 1, anon_sym_DOLLAR, - ACTIONS(1309), 1, + ACTIONS(1541), 1, anon_sym_SQUOTE, - ACTIONS(1311), 1, + ACTIONS(1543), 1, aux_sym_array_constructor_token1, - ACTIONS(1313), 1, + ACTIONS(1545), 1, aux_sym_time_expression_token4, - ACTIONS(1315), 1, + ACTIONS(1547), 1, anon_sym_STAR, - ACTIONS(1319), 1, + ACTIONS(1551), 1, sym__identifier, - STATE(553), 1, + STATE(341), 1, sym_identifier, - STATE(843), 1, + STATE(788), 1, sym_not, - STATE(842), 2, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1683), 3, + sym_true, + sym_false, + sym_number, + STATE(210), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57752] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1685), 3, + sym_true, + sym_false, + sym_number, + STATE(83), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57815] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1687), 3, + sym_true, + sym_false, + sym_number, + STATE(338), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57878] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1689), 3, + sym_true, + sym_false, + sym_number, + STATE(142), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [57941] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1691), 3, + sym_true, + sym_false, + sym_number, + STATE(146), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58004] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1693), 3, + sym_true, + sym_false, + sym_number, + STATE(148), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58067] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1695), 3, + sym_true, + sym_false, + sym_number, + STATE(11), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58130] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1697), 3, + sym_true, + sym_false, + sym_number, + STATE(82), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58193] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1699), 3, + sym_true, + sym_false, + sym_number, + STATE(12), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58256] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1701), 3, + sym_true, + sym_false, + sym_number, + STATE(79), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58319] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_number, + STATE(23), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58382] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1705), 3, + sym_true, + sym_false, + sym_number, + STATE(77), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58445] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1457), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1459), 1, + anon_sym_DOLLAR, + ACTIONS(1461), 1, + anon_sym_SQUOTE, + ACTIONS(1463), 1, + aux_sym_array_constructor_token1, + ACTIONS(1465), 1, + aux_sym_time_expression_token4, + ACTIONS(1467), 1, + anon_sym_STAR, + ACTIONS(1471), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(837), 1, + sym_not, + STATE(812), 2, + sym_minus, + sym_plus, + ACTIONS(1707), 3, + sym_true, + sym_false, + sym_number, + STATE(172), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58508] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(760), 1, + aux_sym_alter_column_action_token2, + ACTIONS(772), 1, + anon_sym_DOLLAR, + ACTIONS(776), 1, + anon_sym_SQUOTE, + ACTIONS(778), 1, + aux_sym_array_constructor_token1, + ACTIONS(780), 1, + aux_sym_time_expression_token4, + ACTIONS(782), 1, + anon_sym_STAR, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(790), 1, + sym__identifier, + STATE(221), 1, + sym_identifier, + STATE(803), 1, + sym_not, + STATE(802), 2, + sym_minus, + sym_plus, + ACTIONS(1709), 3, + sym_true, + sym_false, + sym_number, + STATE(76), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58571] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1711), 3, + sym_true, + sym_false, + sym_number, + STATE(84), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58634] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1431), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1435), 1, + anon_sym_DOLLAR, + ACTIONS(1437), 1, + anon_sym_SQUOTE, + ACTIONS(1439), 1, + aux_sym_array_constructor_token1, + ACTIONS(1441), 1, + aux_sym_time_expression_token4, + ACTIONS(1443), 1, + anon_sym_STAR, + ACTIONS(1447), 1, + sym__identifier, + STATE(237), 1, + sym_identifier, + STATE(800), 1, + sym_not, + STATE(796), 2, + sym_minus, + sym_plus, + ACTIONS(1713), 3, + sym_true, + sym_false, + sym_number, + STATE(147), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58697] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1715), 3, + sym_true, + sym_false, + sym_number, + STATE(81), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58760] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1717), 3, + sym_true, + sym_false, + sym_number, + STATE(510), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58823] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1719), 3, + sym_true, + sym_false, + sym_number, + STATE(446), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58886] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1721), 3, + sym_true, + sym_false, + sym_number, + STATE(80), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [58949] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1723), 3, + sym_true, + sym_false, + sym_number, + STATE(13), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59012] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1535), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1725), 3, + sym_true, + sym_false, + sym_number, + STATE(188), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59075] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1727), 3, + sym_true, + sym_false, + sym_number, + STATE(14), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59138] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1729), 3, + sym_true, + sym_false, + sym_number, + STATE(20), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1731), 3, + sym_true, + sym_false, + sym_number, + STATE(78), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59264] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1733), 3, + sym_true, + sym_false, + sym_number, + STATE(608), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59327] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1735), 3, + sym_true, + sym_false, + sym_number, + STATE(21), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59390] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, sym_minus, sym_plus, ACTIONS(1737), 3, sym_true, sym_false, sym_number, - STATE(487), 9, + STATE(64), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -70052,43 +71000,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58835] = 17, + [59453] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1303), 1, + ACTIONS(1431), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1433), 1, aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, + ACTIONS(1435), 1, anon_sym_DOLLAR, - ACTIONS(1309), 1, + ACTIONS(1437), 1, anon_sym_SQUOTE, - ACTIONS(1311), 1, + ACTIONS(1439), 1, aux_sym_array_constructor_token1, - ACTIONS(1313), 1, + ACTIONS(1441), 1, aux_sym_time_expression_token4, - ACTIONS(1315), 1, + ACTIONS(1443), 1, anon_sym_STAR, - ACTIONS(1319), 1, + ACTIONS(1447), 1, sym__identifier, - STATE(553), 1, + STATE(237), 1, sym_identifier, - STATE(843), 1, + STATE(800), 1, sym_not, - STATE(842), 2, + STATE(796), 2, sym_minus, sym_plus, ACTIONS(1739), 3, sym_true, sym_false, sym_number, - STATE(485), 9, + STATE(99), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -70098,42 +71046,916 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58898] = 17, + [59516] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(758), 1, aux_sym_alter_column_action_token1, - ACTIONS(745), 1, + ACTIONS(784), 1, anon_sym_DASH, - ACTIONS(747), 1, + ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(842), 1, + ACTIONS(1144), 1, anon_sym_LPAREN, - ACTIONS(846), 1, + ACTIONS(1146), 1, aux_sym_alter_column_action_token2, - ACTIONS(848), 1, + ACTIONS(1152), 1, anon_sym_DOLLAR, - ACTIONS(850), 1, + ACTIONS(1154), 1, anon_sym_SQUOTE, - ACTIONS(852), 1, + ACTIONS(1156), 1, aux_sym_array_constructor_token1, - ACTIONS(854), 1, + ACTIONS(1158), 1, aux_sym_time_expression_token4, - ACTIONS(856), 1, + ACTIONS(1160), 1, anon_sym_STAR, - ACTIONS(860), 1, + ACTIONS(1164), 1, sym__identifier, - STATE(271), 1, + STATE(47), 1, sym_identifier, - STATE(755), 1, + STATE(770), 1, sym_not, - STATE(757), 2, + STATE(775), 2, sym_minus, sym_plus, ACTIONS(1741), 3, sym_true, sym_false, sym_number, + STATE(602), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59579] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1743), 3, + sym_true, + sym_false, + sym_number, + STATE(15), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59642] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1573), 1, + anon_sym_LPAREN, + ACTIONS(1575), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1577), 1, + anon_sym_DOLLAR, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + ACTIONS(1581), 1, + aux_sym_array_constructor_token1, + ACTIONS(1583), 1, + aux_sym_time_expression_token4, + ACTIONS(1585), 1, + anon_sym_STAR, + ACTIONS(1589), 1, + sym__identifier, + STATE(53), 1, + sym_identifier, + STATE(855), 1, + sym_not, + STATE(856), 2, + sym_minus, + sym_plus, + ACTIONS(1745), 3, + sym_true, + sym_false, + sym_number, + STATE(16), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59705] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1747), 3, + sym_true, + sym_false, + sym_number, + STATE(603), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59768] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1537), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1539), 1, + anon_sym_DOLLAR, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + ACTIONS(1543), 1, + aux_sym_array_constructor_token1, + ACTIONS(1545), 1, + aux_sym_time_expression_token4, + ACTIONS(1547), 1, + anon_sym_STAR, + ACTIONS(1551), 1, + sym__identifier, + ACTIONS(1749), 1, + anon_sym_LPAREN, + STATE(341), 1, + sym_identifier, + STATE(788), 1, + sym_not, + STATE(787), 2, + sym_minus, + sym_plus, + ACTIONS(1751), 3, + sym_true, + sym_false, + sym_number, + STATE(189), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59831] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1753), 3, + sym_true, + sym_false, + sym_number, + STATE(589), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59894] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1755), 3, + sym_true, + sym_false, + sym_number, + STATE(22), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [59957] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1757), 3, + sym_true, + sym_false, + sym_number, + STATE(573), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60020] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1759), 3, + sym_true, + sym_false, + sym_number, + STATE(509), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60083] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1761), 3, + sym_true, + sym_false, + sym_number, + STATE(173), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60146] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1763), 3, + sym_true, + sym_false, + sym_number, + STATE(586), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60209] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1765), 3, + sym_true, + sym_false, + sym_number, + STATE(72), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60272] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1767), 3, + sym_true, + sym_false, + sym_number, + STATE(71), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60335] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1769), 3, + sym_true, + sym_false, + sym_number, + STATE(497), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60398] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1771), 3, + sym_true, + sym_false, + sym_number, + STATE(575), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60461] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1329), 1, + anon_sym_LPAREN, + ACTIONS(1331), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1333), 1, + anon_sym_DOLLAR, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(1337), 1, + aux_sym_array_constructor_token1, + ACTIONS(1339), 1, + aux_sym_time_expression_token4, + ACTIONS(1341), 1, + anon_sym_STAR, + ACTIONS(1345), 1, + sym__identifier, + STATE(576), 1, + sym_identifier, + STATE(763), 1, + sym_not, + STATE(862), 2, + sym_minus, + sym_plus, + ACTIONS(1773), 3, + sym_true, + sym_false, + sym_number, + STATE(504), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60524] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1353), 1, + anon_sym_DOLLAR, + ACTIONS(1355), 1, + anon_sym_SQUOTE, + ACTIONS(1357), 1, + aux_sym_array_constructor_token1, + ACTIONS(1359), 1, + aux_sym_time_expression_token4, + ACTIONS(1361), 1, + anon_sym_STAR, + ACTIONS(1365), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(761), 1, + sym_not, + STATE(769), 2, + sym_minus, + sym_plus, + ACTIONS(1775), 3, + sym_true, + sym_false, + sym_number, + STATE(452), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60587] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1144), 1, + anon_sym_LPAREN, + ACTIONS(1146), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1152), 1, + anon_sym_DOLLAR, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(1156), 1, + aux_sym_array_constructor_token1, + ACTIONS(1158), 1, + aux_sym_time_expression_token4, + ACTIONS(1160), 1, + anon_sym_STAR, + ACTIONS(1164), 1, + sym__identifier, + STATE(47), 1, + sym_identifier, + STATE(770), 1, + sym_not, + STATE(775), 2, + sym_minus, + sym_plus, + ACTIONS(1777), 3, + sym_true, + sym_false, + sym_number, + STATE(594), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60650] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(1305), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1311), 1, + anon_sym_DOLLAR, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + ACTIONS(1315), 1, + aux_sym_array_constructor_token1, + ACTIONS(1317), 1, + aux_sym_time_expression_token4, + ACTIONS(1319), 1, + anon_sym_STAR, + ACTIONS(1323), 1, + sym__identifier, + STATE(196), 1, + sym_identifier, + STATE(866), 1, + sym_not, + STATE(865), 2, + sym_minus, + sym_plus, + ACTIONS(1779), 3, + sym_true, + sym_false, + sym_number, + STATE(65), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [60713] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + aux_sym_alter_column_action_token1, + ACTIONS(784), 1, + anon_sym_DASH, + ACTIONS(786), 1, + anon_sym_PLUS, + ACTIONS(834), 1, + anon_sym_LPAREN, + ACTIONS(838), 1, + aux_sym_alter_column_action_token2, + ACTIONS(840), 1, + anon_sym_DOLLAR, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + aux_sym_array_constructor_token1, + ACTIONS(846), 1, + aux_sym_time_expression_token4, + ACTIONS(848), 1, + anon_sym_STAR, + ACTIONS(852), 1, + sym__identifier, + STATE(282), 1, + sym_identifier, + STATE(764), 1, + sym_not, + STATE(765), 2, + sym_minus, + sym_plus, + ACTIONS(1781), 3, + sym_true, + sym_false, + sym_number, STATE(171), 9, sym_string, sym__value_expression, @@ -70144,428 +71966,200 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58961] = 17, + [60776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1743), 3, - sym_true, - sym_false, - sym_number, - STATE(587), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59024] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1745), 3, - sym_true, - sym_false, - sym_number, - STATE(480), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59087] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1747), 3, - sym_true, - sym_false, - sym_number, - STATE(481), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59150] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1126), 1, - anon_sym_DOLLAR, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - aux_sym_array_constructor_token1, - ACTIONS(1132), 1, - aux_sym_time_expression_token4, - ACTIONS(1134), 1, - anon_sym_STAR, - ACTIONS(1138), 1, - sym__identifier, - STATE(44), 1, - sym_identifier, - STATE(831), 1, - sym_not, - STATE(832), 2, - sym_minus, - sym_plus, - ACTIONS(1749), 3, - sym_true, - sym_false, - sym_number, - STATE(567), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59213] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1751), 3, - sym_true, - sym_false, - sym_number, - STATE(491), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59276] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1753), 3, - sym_true, - sym_false, - sym_number, - STATE(488), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59339] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_column_action_token1, - ACTIONS(745), 1, - anon_sym_DASH, - ACTIONS(747), 1, - anon_sym_PLUS, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(1305), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1307), 1, - anon_sym_DOLLAR, - ACTIONS(1309), 1, - anon_sym_SQUOTE, - ACTIONS(1311), 1, - aux_sym_array_constructor_token1, - ACTIONS(1313), 1, - aux_sym_time_expression_token4, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1319), 1, - sym__identifier, - STATE(553), 1, - sym_identifier, - STATE(843), 1, - sym_not, - STATE(842), 2, - sym_minus, - sym_plus, - ACTIONS(1755), 3, - sym_true, - sym_false, - sym_number, - STATE(486), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59402] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, + ACTIONS(1783), 1, anon_sym_COMMA, - ACTIONS(1761), 1, + ACTIONS(1785), 1, aux_sym_update_statement_token4, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - STATE(869), 1, - sym_into, - STATE(909), 1, - sym_select_from, - STATE(952), 1, - sym_select_where, - STATE(981), 1, - sym_select_group_by, - STATE(1007), 1, + STATE(875), 1, aux_sym_returning_repeat1, - STATE(1041), 1, + STATE(895), 1, + sym_into, + STATE(924), 1, + sym_select_from, + STATE(975), 1, + sym_select_where, + STATE(1017), 1, + sym_select_group_by, + STATE(1083), 1, sym_select_having, - STATE(1092), 1, + STATE(1134), 1, sym_select_order_by, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1300), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1352), 1, sym__select_limit_offset, - ACTIONS(1757), 5, + ACTIONS(792), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [59470] = 21, + [60844] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(1783), 1, anon_sym_COMMA, - ACTIONS(1761), 1, + ACTIONS(1785), 1, aux_sym_update_statement_token4, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - STATE(852), 1, - aux_sym_returning_repeat1, - STATE(872), 1, - sym_into, STATE(893), 1, + sym_into, + STATE(926), 1, sym_select_from, - STATE(943), 1, + STATE(969), 1, sym_select_where, - STATE(983), 1, + STATE(1023), 1, sym_select_group_by, - STATE(1051), 1, + STATE(1047), 1, + aux_sym_returning_repeat1, + STATE(1070), 1, sym_select_having, - STATE(1101), 1, + STATE(1137), 1, sym_select_order_by, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1327), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, sym__select_limit_offset, - ACTIONS(711), 5, + ACTIONS(1799), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [59538] = 3, + [60912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(1783), 1, + anon_sym_COMMA, + ACTIONS(1785), 1, + aux_sym_update_statement_token4, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(877), 1, + aux_sym_returning_repeat1, + STATE(893), 1, + sym_into, + STATE(926), 1, + sym_select_from, + STATE(969), 1, + sym_select_where, + STATE(1023), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1137), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [60980] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_COMMA, + ACTIONS(1785), 1, + aux_sym_update_statement_token4, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(887), 1, + sym_into, + STATE(925), 1, + sym_select_from, + STATE(974), 1, + sym_select_where, + STATE(1008), 1, + sym_select_group_by, + STATE(1047), 1, + aux_sym_returning_repeat1, + STATE(1064), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1154), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, + sym__select_limit_offset, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, anon_sym_BSLASH, - ACTIONS(1775), 23, + ACTIONS(1803), 23, aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, aux_sym_create_type_statement_token1, @@ -70589,509 +72183,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [59570] = 21, + [61080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_COMMA, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(867), 1, - sym_into, - STATE(904), 1, - sym_select_from, - STATE(949), 1, - sym_select_where, - STATE(972), 1, - sym_select_group_by, - STATE(1007), 1, - aux_sym_returning_repeat1, - STATE(1054), 1, - sym_select_having, - STATE(1103), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1779), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [59638] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_COMMA, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(855), 1, - aux_sym_returning_repeat1, - STATE(869), 1, - sym_into, - STATE(909), 1, - sym_select_from, - STATE(952), 1, - sym_select_where, - STATE(981), 1, - sym_select_group_by, - STATE(1041), 1, - sym_select_having, - STATE(1092), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1300), 1, - sym__select_limit_offset, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [59706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(877), 1, - sym__list_of_identifiers, - ACTIONS(1781), 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, - [59739] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1787), 1, - aux_sym_update_statement_token2, - ACTIONS(1789), 1, - anon_sym_LPAREN, - STATE(882), 1, - sym_identifier, - ACTIONS(1785), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1791), 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, - [59778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(875), 1, - sym__list_of_identifiers, - ACTIONS(1793), 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, - [59811] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1795), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - STATE(894), 1, - sym_into, - STATE(940), 1, - sym_select_from, - STATE(973), 1, - sym_select_where, - STATE(1059), 1, - sym_select_group_by, - STATE(1078), 1, - aux_sym_returning_repeat1, - STATE(1098), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [59879] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(870), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 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, - [59911] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(893), 1, - sym_select_from, - STATE(943), 1, - sym_select_where, - STATE(983), 1, - sym_select_group_by, - STATE(1051), 1, - sym_select_having, - STATE(1101), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [59973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1803), 1, - aux_sym_join_item_token1, - ACTIONS(1805), 1, - aux_sym_join_item_token2, - ACTIONS(1807), 1, - aux_sym_join_item_token3, ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1230), 1, - sym_join_type, - STATE(864), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1801), 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, - [60015] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - aux_sym_join_item_token1, - ACTIONS(1818), 1, - aux_sym_join_item_token2, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, - STATE(1230), 1, - sym_join_type, - STATE(864), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1813), 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, - [60057] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1803), 1, - aux_sym_join_item_token1, - ACTIONS(1805), 1, - aux_sym_join_item_token2, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1230), 1, - sym_join_type, - STATE(863), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1799), 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, - [60099] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1795), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - STATE(860), 1, - aux_sym_returning_repeat1, + anon_sym_LPAREN, STATE(898), 1, - sym_into, - STATE(935), 1, - sym_select_from, - STATE(985), 1, - sym_select_where, - STATE(1040), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1122), 1, - sym_select_having, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60167] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(895), 1, - sym_select_from, - STATE(947), 1, - sym_select_where, - STATE(975), 1, - sym_select_group_by, - STATE(1031), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1112), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 5, + sym__list_of_identifiers, + ACTIONS(1807), 21, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [60229] = 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, + [61113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(907), 1, + sym__list_of_identifiers, + ACTIONS(1811), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [61146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__identifier, - ACTIONS(1834), 1, + ACTIONS(1815), 1, aux_sym_update_statement_token2, - STATE(857), 1, + ACTIONS(1817), 1, + anon_sym_LPAREN, + STATE(905), 1, sym_identifier, - ACTIONS(1832), 3, + ACTIONS(1813), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1836), 16, + ACTIONS(1819), 16, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, @@ -71108,167 +72273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [60265] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(904), 1, - sym_select_from, - STATE(949), 1, - sym_select_where, - STATE(972), 1, - sym_select_group_by, - STATE(1054), 1, - sym_select_having, - STATE(1103), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1779), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60327] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(864), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 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, - [60359] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1795), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - STATE(874), 1, - aux_sym_returning_repeat1, - STATE(894), 1, - sym_into, - STATE(940), 1, - sym_select_from, - STATE(973), 1, - sym_select_where, - STATE(1059), 1, - sym_select_group_by, - STATE(1098), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60427] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 1, - aux_sym_update_statement_token4, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(909), 1, - sym_select_from, - STATE(952), 1, - sym_select_where, - STATE(981), 1, - sym_select_group_by, - STATE(1041), 1, - sym_select_having, - STATE(1092), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1300), 1, - sym__select_limit_offset, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60489] = 3, + [61185] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -71295,164 +72300,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [60519] = 22, + [61215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1795), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - STATE(906), 1, - sym_into, - STATE(938), 1, - sym_select_from, - STATE(999), 1, - sym_select_where, - STATE(1049), 1, - sym_select_group_by, - STATE(1078), 1, - aux_sym_returning_repeat1, - STATE(1106), 1, - sym_where_filter, - STATE(1133), 1, - sym_select_having, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [60587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1838), 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, - [60614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1840), 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, - [60641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 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, - [60668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1842), 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, - [60695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - STATE(889), 1, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, sym_identifier, - ACTIONS(1844), 3, + ACTIONS(1821), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1846), 16, + ACTIONS(1825), 16, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, @@ -71469,100 +72330,566 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [60728] = 22, + [61251] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - ACTIONS(1848), 1, + ACTIONS(1827), 1, anon_sym_COMMA, - ACTIONS(1850), 1, + ACTIONS(1829), 1, aux_sym_update_statement_token4, - STATE(925), 1, + STATE(928), 1, sym_into, - STATE(944), 1, + STATE(957), 1, sym_select_from, - STATE(1024), 1, + STATE(994), 1, sym_select_where, - STATE(1081), 1, + STATE(1074), 1, sym_select_group_by, - STATE(1106), 1, + STATE(1111), 1, + aux_sym_returning_repeat1, + STATE(1153), 1, sym_where_filter, - STATE(1108), 1, - aux_sym_returning_repeat1, - STATE(1154), 1, + STATE(1157), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, + STATE(1207), 1, sym_select_order_by, - STATE(1741), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1519), 1, sym__select_limit_offset, - [60795] = 22, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61319] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1848), 1, - anon_sym_COMMA, - ACTIONS(1850), 1, + ACTIONS(1785), 1, aux_sym_update_statement_token4, - STATE(888), 1, - aux_sym_returning_repeat1, - STATE(925), 1, - sym_into, - STATE(944), 1, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(924), 1, sym_select_from, - STATE(1024), 1, + STATE(975), 1, sym_select_where, - STATE(1081), 1, + STATE(1017), 1, sym_select_group_by, - STATE(1106), 1, + STATE(1083), 1, + sym_select_having, + STATE(1134), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61381] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(896), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [61413] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1785), 1, + aux_sym_update_statement_token4, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(918), 1, + sym_select_from, + STATE(973), 1, + sym_select_where, + STATE(1005), 1, + sym_select_group_by, + STATE(1057), 1, + sym_select_having, + STATE(1147), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61475] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1827), 1, + anon_sym_COMMA, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + STATE(884), 1, + aux_sym_returning_repeat1, + STATE(921), 1, + sym_into, + STATE(964), 1, + sym_select_from, + STATE(1026), 1, + sym_select_where, + STATE(1080), 1, + sym_select_group_by, + STATE(1124), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61543] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1827), 1, + anon_sym_COMMA, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + STATE(915), 1, + sym_into, + STATE(961), 1, + sym_select_from, + STATE(1009), 1, + sym_select_where, + STATE(1069), 1, + sym_select_group_by, + STATE(1111), 1, + aux_sym_returning_repeat1, + STATE(1140), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1531), 1, + sym__select_limit_offset, + ACTIONS(1801), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61611] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1827), 1, + anon_sym_COMMA, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + STATE(889), 1, + aux_sym_returning_repeat1, + STATE(928), 1, + sym_into, + STATE(957), 1, + sym_select_from, + STATE(994), 1, + sym_select_where, + STATE(1074), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1157), 1, + sym_select_having, + STATE(1207), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1519), 1, + sym__select_limit_offset, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61679] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1837), 1, + aux_sym_join_item_token1, + ACTIONS(1839), 1, + aux_sym_join_item_token2, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1249), 1, + sym_join_type, + STATE(894), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [61721] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(886), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [61753] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1785), 1, + aux_sym_update_statement_token4, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(925), 1, + sym_select_from, + STATE(974), 1, + sym_select_where, + STATE(1008), 1, + sym_select_group_by, + STATE(1064), 1, + sym_select_having, + STATE(1153), 1, sym_where_filter, STATE(1154), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, sym_select_order_by, - STATE(1741), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, sym__select_limit_offset, - [60862] = 2, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61815] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 21, + ACTIONS(1837), 1, + aux_sym_join_item_token1, + ACTIONS(1839), 1, + aux_sym_join_item_token2, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1249), 1, + sym_join_type, + STATE(896), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1831), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [61857] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1785), 1, + aux_sym_update_statement_token4, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(926), 1, + sym_select_from, + STATE(969), 1, + sym_select_where, + STATE(1023), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1137), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61919] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + aux_sym_join_item_token1, + ACTIONS(1852), 1, + aux_sym_join_item_token2, + ACTIONS(1855), 1, + aux_sym_join_item_token3, + ACTIONS(1858), 1, + aux_sym_join_type_token1, + STATE(1249), 1, + sym_join_type, + STATE(896), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1847), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [61961] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + ACTIONS(1864), 1, + anon_sym_COMMA, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(935), 1, + sym_into, + STATE(972), 1, + sym_select_from, + STATE(1040), 1, + sym_select_where, + STATE(1087), 1, + sym_select_group_by, + STATE(1121), 1, + aux_sym_returning_repeat1, + STATE(1153), 1, + sym_where_filter, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1603), 1, + sym__select_limit_offset, + [62028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -71584,14 +72911,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [60889] = 3, + [62055] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 3, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1864), 1, + anon_sym_COMMA, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(897), 1, + aux_sym_returning_repeat1, + STATE(946), 1, + sym_into, + STATE(970), 1, + sym_select_from, + STATE(1051), 1, + sym_select_where, + STATE(1106), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1167), 1, + sym_select_having, + STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1609), 1, + sym__select_limit_offset, + [62122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(457), 18, + ACTIONS(445), 18, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, @@ -71610,36 +72982,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [60918] = 3, + [62151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(493), 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, - [60947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 21, + ACTIONS(1868), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -71661,12 +73007,292 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [60974] = 3, + [62178] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + ACTIONS(1864), 1, + anon_sym_COMMA, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(942), 1, + sym_into, + STATE(966), 1, + sym_select_from, + STATE(1039), 1, + sym_select_where, + STATE(1104), 1, + sym_select_group_by, + STATE(1121), 1, + aux_sym_returning_repeat1, + STATE(1153), 1, + sym_where_filter, + STATE(1168), 1, + sym_select_having, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1589), 1, + sym__select_limit_offset, + [62245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1870), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(455), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [62301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1872), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62328] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1874), 1, + aux_sym_update_statement_token2, + ACTIONS(1876), 1, + anon_sym_LPAREN, + STATE(905), 1, + sym_identifier, + ACTIONS(1813), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1819), 14, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1878), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + ACTIONS(1872), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1880), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(471), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [62454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(119), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1882), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, anon_sym_BSLASH, - ACTIONS(1775), 20, + ACTIONS(1803), 20, aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, aux_sym_create_type_statement_token1, @@ -71687,630 +73313,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [61003] = 3, + [62537] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(479), 18, - aux_sym_update_statement_token2, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, + ACTIONS(1789), 1, aux_sym_select_having_token1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_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, - [61032] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - ACTIONS(1848), 1, - anon_sym_COMMA, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(930), 1, - sym_into, - STATE(945), 1, - sym_select_from, - STATE(1020), 1, - sym_select_where, - STATE(1079), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1108), 1, - aux_sym_returning_repeat1, - STATE(1136), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, - sym_select_order_by, - STATE(1730), 1, - sym__select_limit_offset, - [61099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1854), 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, - [61126] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1848), 1, - anon_sym_COMMA, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(880), 1, - aux_sym_returning_repeat1, - STATE(926), 1, - sym_into, - STATE(955), 1, - sym_select_from, - STATE(1012), 1, - sym_select_where, - STATE(1090), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1151), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, - sym_select_order_by, - STATE(1753), 1, - sym__select_limit_offset, - [61193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 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, - [61220] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1856), 1, - aux_sym_update_statement_token2, - ACTIONS(1858), 1, - anon_sym_LPAREN, - STATE(882), 1, - sym_identifier, - ACTIONS(1785), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1791), 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, - [61257] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(952), 1, - sym_select_where, - STATE(981), 1, - sym_select_group_by, - STATE(1041), 1, - sym_select_having, - STATE(1092), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1300), 1, - sym__select_limit_offset, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61313] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, ACTIONS(1797), 1, - aux_sym_update_statement_token4, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(938), 1, - sym_select_from, - STATE(999), 1, - sym_select_where, - STATE(1049), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1133), 1, - sym_select_having, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61375] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, aux_sym_where_filter_token1, - STATE(946), 1, - sym_select_where, - STATE(990), 1, - sym_select_group_by, - STATE(1038), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1117), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1282), 1, - sym__select_limit_offset, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61431] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(901), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [61461] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(943), 1, - sym_select_where, - STATE(983), 1, - sym_select_group_by, - STATE(1051), 1, - sym_select_having, - STATE(1101), 1, - sym_select_order_by, - STATE(1106), 1, - sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61517] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(940), 1, - sym_select_from, - STATE(973), 1, - sym_select_where, - STATE(1059), 1, - sym_select_group_by, - STATE(1098), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61579] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1797), 1, - aux_sym_update_statement_token4, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(935), 1, - sym_select_from, - STATE(985), 1, - sym_select_where, - STATE(1040), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1122), 1, - sym_select_having, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61641] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, ACTIONS(1864), 1, - aux_sym_join_item_token1, - ACTIONS(1867), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(900), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1813), 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, - [61681] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(900), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [61711] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1870), 1, - aux_sym_join_item_token1, - ACTIONS(1872), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(903), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1799), 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, - [61751] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1870), 1, - aux_sym_join_item_token1, - ACTIONS(1872), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(900), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1801), 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, - [61791] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(947), 1, - sym_select_where, - STATE(975), 1, - sym_select_group_by, - STATE(1031), 1, - sym_select_having, - STATE(1106), 1, - sym_where_filter, - STATE(1112), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(902), 1, + aux_sym_returning_repeat1, + STATE(935), 1, sym_into, - ACTIONS(1830), 5, + STATE(972), 1, + sym_select_from, + STATE(1040), 1, + sym_select_where, + STATE(1087), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1603), 1, + sym__select_limit_offset, + [62604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 21, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [61847] = 3, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62631] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(956), 1, + sym_select_from, + STATE(1015), 1, + sym_select_where, + STATE(1078), 1, + sym_select_group_by, + STATE(1120), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1208), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1544), 1, + sym__select_limit_offset, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, + sym_identifier, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1825), 14, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62727] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -72335,405 +73478,502 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [61875] = 20, + [62755] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, ACTIONS(1797), 1, - aux_sym_update_statement_token4, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(941), 1, - sym_select_from, - STATE(979), 1, + aux_sym_where_filter_token1, + STATE(968), 1, sym_select_where, - STATE(1044), 1, + STATE(1001), 1, sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1111), 1, + STATE(1075), 1, sym_select_having, - STATE(1173), 1, + STATE(1135), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1454), 1, - sym__select_limit_offset, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1834), 1, - aux_sym_update_statement_token2, - STATE(857), 1, - sym_identifier, - ACTIONS(1832), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1836), 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, - [61971] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1785), 1, - anon_sym_COMMA, - ACTIONS(1874), 1, - aux_sym_update_statement_token2, - ACTIONS(1876), 1, - anon_sym_LPAREN, - STATE(882), 1, - sym_identifier, - ACTIONS(1791), 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, - [62007] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(949), 1, - sym_select_where, - STATE(972), 1, - sym_select_group_by, - STATE(1054), 1, - sym_select_having, - STATE(1103), 1, - sym_select_order_by, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1312), 1, sym__select_limit_offset, - ACTIONS(1779), 5, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [62063] = 3, + [62811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(493), 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, + ACTIONS(1855), 1, aux_sym_join_item_token3, + ACTIONS(1858), 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, - sym__identifier, - [62090] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(955), 1, - sym_select_from, - STATE(1012), 1, - sym_select_where, - STATE(1090), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1151), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, - sym_select_order_by, - STATE(1308), 1, - sym_into, - STATE(1753), 1, - sym__select_limit_offset, - [62151] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(913), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 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, - [62180] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, - ACTIONS(1878), 1, - aux_sym_join_item_token1, - ACTIONS(1881), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(913), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1813), 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, - [62219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1832), 1, - anon_sym_COMMA, - ACTIONS(1834), 1, - aux_sym_update_statement_token2, - STATE(857), 1, - sym_identifier, - ACTIONS(1836), 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, - [62252] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1884), 1, - aux_sym_join_item_token1, - ACTIONS(1886), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(913), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1801), 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, - [62291] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(912), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 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, - [62320] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(1890), 1, - anon_sym_COMMA, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1888), 17, + aux_sym_join_item_token1, + ACTIONS(1893), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(919), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1847), 10, anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [62851] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(929), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [62881] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, aux_sym_update_statement_token4, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(957), 1, + sym_select_from, + STATE(994), 1, + sym_select_where, + STATE(1074), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1157), 1, + sym_select_having, + STATE(1207), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1519), 1, + sym__select_limit_offset, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62943] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1896), 1, + aux_sym_join_item_token1, + ACTIONS(1898), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(919), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1831), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [62983] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(964), 1, + sym_select_from, + STATE(1026), 1, + sym_select_where, + STATE(1080), 1, + sym_select_group_by, + STATE(1124), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63045] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(969), 1, + sym_select_where, + STATE(1023), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1137), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_alter_table_rename_column_token2, + [63101] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(973), 1, + sym_select_where, + STATE(1005), 1, + sym_select_group_by, + STATE(1057), 1, + sym_select_having, + STATE(1147), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63157] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(974), 1, + sym_select_where, + STATE(1008), 1, + sym_select_group_by, + STATE(1064), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1154), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, + sym__select_limit_offset, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63213] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1813), 1, + anon_sym_COMMA, + ACTIONS(1900), 1, + aux_sym_update_statement_token2, + ACTIONS(1902), 1, + anon_sym_LPAREN, + STATE(905), 1, + sym_identifier, + ACTIONS(1819), 15, + aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - [62349] = 12, + [63249] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1829), 1, + aux_sym_update_statement_token4, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(961), 1, + sym_select_from, + STATE(1009), 1, + sym_select_where, + STATE(1069), 1, + sym_select_group_by, + STATE(1140), 1, + sym_select_having, + STATE(1153), 1, + sym_where_filter, + STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1531), 1, + sym__select_limit_offset, + ACTIONS(1801), 2, anon_sym_SEMI, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(1897), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, - aux_sym_sequence_min_token1, - ACTIONS(1903), 1, - aux_sym_sequence_max_token1, - ACTIONS(1905), 1, - aux_sym_sequence_start_token1, - ACTIONS(1907), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, - aux_sym_sequence_owned_token1, - STATE(928), 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, - [62394] = 3, + anon_sym_RPAREN, + [63311] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(919), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [63341] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + STATE(975), 1, + sym_select_where, + STATE(1017), 1, + sym_select_group_by, + STATE(1083), 1, + sym_select_having, + STATE(1134), 1, + sym_select_order_by, + STATE(1153), 1, + sym_where_filter, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63397] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1896), 1, + aux_sym_join_item_token1, + ACTIONS(1898), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(922), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [63437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 2, @@ -72757,47 +73997,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [62421] = 12, + [63464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_SEMI, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(1897), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, - aux_sym_sequence_min_token1, - ACTIONS(1903), 1, - aux_sym_sequence_max_token1, - ACTIONS(1905), 1, - aux_sym_sequence_start_token1, - ACTIONS(1907), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, - aux_sym_sequence_owned_token1, - STATE(931), 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, - [62466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 3, + ACTIONS(443), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(457), 16, + ACTIONS(445), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -72814,30 +74021,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [62493] = 12, + [63491] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(1897), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, - aux_sym_sequence_min_token1, - ACTIONS(1903), 1, - aux_sym_sequence_max_token1, - ACTIONS(1905), 1, - aux_sym_sequence_start_token1, - ACTIONS(1907), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1913), 1, + ACTIONS(1904), 1, anon_sym_SEMI, - STATE(932), 9, + ACTIONS(1906), 1, + aux_sym_update_statement_token2, + ACTIONS(1908), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1910), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1912), 1, + aux_sym_sequence_min_token1, + ACTIONS(1914), 1, + aux_sym_sequence_max_token1, + ACTIONS(1916), 1, + aux_sym_sequence_start_token1, + ACTIONS(1918), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1920), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1922), 1, + aux_sym_sequence_owned_token1, + STATE(937), 9, sym_sequence_increment, sym_sequence_min, sym_sequence_max, @@ -72847,20 +74054,120 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_owned, sym_as, aux_sym_create_sequence_statement_repeat1, - [62538] = 5, + [63536] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(966), 1, + sym_select_from, + STATE(1039), 1, + sym_select_where, + STATE(1104), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1168), 1, + sym_select_having, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [63597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1926), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1924), 17, + anon_sym_SEMI, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_alter_table_rename_column_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [63626] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 1, + anon_sym_SEMI, + ACTIONS(1931), 1, + aux_sym_update_statement_token2, + ACTIONS(1934), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1937), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1940), 1, + aux_sym_sequence_min_token1, + ACTIONS(1943), 1, + aux_sym_sequence_max_token1, + ACTIONS(1946), 1, + aux_sym_sequence_start_token1, + ACTIONS(1949), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1952), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1955), 1, + aux_sym_sequence_owned_token1, + STATE(937), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [63671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__identifier, - STATE(889), 1, + ACTIONS(1821), 1, + anon_sym_COMMA, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, sym_identifier, - ACTIONS(1844), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1846), 14, + ACTIONS(1825), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, @@ -72873,136 +74180,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [62569] = 3, + [63704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 3, + ACTIONS(1904), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(479), 16, + ACTIONS(1906), 1, 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, - [62596] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(945), 1, - sym_select_from, - STATE(1020), 1, - sym_select_where, - STATE(1079), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1136), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, - sym_select_order_by, - STATE(1287), 1, - sym_into, - STATE(1730), 1, - sym__select_limit_offset, - [62657] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(944), 1, - sym_select_from, - STATE(1024), 1, - sym_select_where, - STATE(1081), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1154), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, - sym_select_order_by, - STATE(1289), 1, - sym_into, - STATE(1741), 1, - sym__select_limit_offset, - [62718] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(1897), 1, + ACTIONS(1908), 1, aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, + ACTIONS(1910), 1, aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, + ACTIONS(1912), 1, aux_sym_sequence_min_token1, - ACTIONS(1903), 1, + ACTIONS(1914), 1, aux_sym_sequence_max_token1, - ACTIONS(1905), 1, + ACTIONS(1916), 1, aux_sym_sequence_start_token1, - ACTIONS(1907), 1, + ACTIONS(1918), 1, aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, + ACTIONS(1920), 1, aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, + ACTIONS(1922), 1, aux_sym_sequence_owned_token1, - ACTIONS(1915), 1, - anon_sym_SEMI, - STATE(920), 9, + STATE(945), 9, sym_sequence_increment, sym_sequence_min, sym_sequence_max, @@ -73012,30 +74213,30 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_owned, sym_as, aux_sym_create_sequence_statement_repeat1, - [62763] = 12, + [63749] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, + ACTIONS(1906), 1, aux_sym_update_statement_token2, - ACTIONS(1897), 1, + ACTIONS(1908), 1, aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, + ACTIONS(1910), 1, aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, + ACTIONS(1912), 1, aux_sym_sequence_min_token1, - ACTIONS(1903), 1, + ACTIONS(1914), 1, aux_sym_sequence_max_token1, - ACTIONS(1905), 1, + ACTIONS(1916), 1, aux_sym_sequence_start_token1, - ACTIONS(1907), 1, + ACTIONS(1918), 1, aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, + ACTIONS(1920), 1, aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, + ACTIONS(1922), 1, aux_sym_sequence_owned_token1, - ACTIONS(1913), 1, + ACTIONS(1958), 1, anon_sym_SEMI, - STATE(931), 9, + STATE(937), 9, sym_sequence_increment, sym_sequence_min, sym_sequence_max, @@ -73045,27 +74246,290 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_owned, sym_as, aux_sym_create_sequence_statement_repeat1, - [62808] = 9, + [63794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1884), 1, - aux_sym_join_item_token1, - ACTIONS(1886), 1, - aux_sym_join_item_token2, - STATE(1230), 1, + STATE(1249), 1, sym_join_type, - STATE(915), 2, + STATE(948), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1811), 3, + 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, - ACTIONS(1799), 9, + aux_sym_where_filter_token1, + [63823] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(977), 1, + sym_select_from, + STATE(1029), 1, + sym_select_where, + STATE(1116), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1183), 1, + sym_select_having, + STATE(1262), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1586), 1, + sym__select_limit_offset, + [63884] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_update_statement_token2, + ACTIONS(1908), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1910), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1912), 1, + aux_sym_sequence_min_token1, + ACTIONS(1914), 1, + aux_sym_sequence_max_token1, + ACTIONS(1916), 1, + aux_sym_sequence_start_token1, + ACTIONS(1918), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1920), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1922), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1958), 1, + anon_sym_SEMI, + STATE(934), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [63929] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(970), 1, + sym_select_from, + STATE(1051), 1, + sym_select_where, + STATE(1106), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1167), 1, + sym_select_having, + STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1609), 1, + sym__select_limit_offset, + [63990] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, + aux_sym_update_statement_token2, + ACTIONS(1908), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1910), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1912), 1, + aux_sym_sequence_min_token1, + ACTIONS(1914), 1, + aux_sym_sequence_max_token1, + ACTIONS(1916), 1, + aux_sym_sequence_start_token1, + ACTIONS(1918), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1920), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1922), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1960), 1, + anon_sym_SEMI, + STATE(937), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [64035] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + ACTIONS(1866), 1, + aux_sym_update_statement_token4, + STATE(972), 1, + sym_select_from, + STATE(1040), 1, + sym_select_where, + STATE(1087), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [64096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(455), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [64123] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1249), 1, + sym_join_type, + STATE(949), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 16, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [64152] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + aux_sym_join_item_token3, + ACTIONS(1858), 1, + aux_sym_join_type_token1, + ACTIONS(1962), 1, + aux_sym_join_item_token1, + ACTIONS(1965), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(949), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1847), 9, anon_sym_COMMA, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -73075,104 +74539,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [62847] = 20, + [64191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(469), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(471), 16, + aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - ACTIONS(1763), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - ACTIONS(1830), 1, + sym__identifier, + [64218] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + ACTIONS(1872), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1880), 14, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [64249] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1968), 1, + aux_sym_join_item_token1, + ACTIONS(1970), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(953), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - ACTIONS(1850), 1, - aux_sym_update_statement_token4, - STATE(953), 1, - sym_select_from, - STATE(1017), 1, - sym_select_where, - STATE(1074), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1135), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1224), 1, - sym_select_order_by, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [62908] = 12, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [64288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 1, - anon_sym_SEMI, - ACTIONS(1919), 1, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1968), 1, + aux_sym_join_item_token1, + ACTIONS(1970), 1, + aux_sym_join_item_token2, + STATE(1249), 1, + sym_join_type, + STATE(949), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1831), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [64327] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1906), 1, aux_sym_update_statement_token2, + ACTIONS(1908), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1910), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1912), 1, + aux_sym_sequence_min_token1, + ACTIONS(1914), 1, + aux_sym_sequence_max_token1, + ACTIONS(1916), 1, + aux_sym_sequence_start_token1, + ACTIONS(1918), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1920), 1, + aux_sym_sequence_cycle_token1, ACTIONS(1922), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1925), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1928), 1, - aux_sym_sequence_min_token1, - ACTIONS(1931), 1, - aux_sym_sequence_max_token1, - ACTIONS(1934), 1, - aux_sym_sequence_start_token1, - ACTIONS(1937), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1940), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1943), 1, aux_sym_sequence_owned_token1, - STATE(931), 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, - [62953] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(1897), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1899), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1901), 1, - aux_sym_sequence_min_token1, - ACTIONS(1903), 1, - aux_sym_sequence_max_token1, - ACTIONS(1905), 1, - aux_sym_sequence_start_token1, - ACTIONS(1907), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1909), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1911), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1946), 1, + ACTIONS(1972), 1, anon_sym_SEMI, - STATE(931), 9, + STATE(940), 9, sym_sequence_increment, sym_sequence_min, sym_sequence_max, @@ -73182,10 +74682,10 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_owned, sym_as, aux_sym_create_sequence_statement_repeat1, - [62998] = 2, + [64372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 18, + ACTIONS(1924), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_drop_type_statement_token3, @@ -73204,176 +74704,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [63022] = 18, + [64396] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(985), 1, + STATE(1024), 1, sym_select_where, - STATE(1040), 1, + STATE(1071), 1, sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1122), 1, + STATE(1139), 1, sym_select_having, - STATE(1175), 1, + STATE(1153), 1, + sym_where_filter, + STATE(1186), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1308), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, sym_into, - STATE(1519), 1, + STATE(1560), 1, sym__select_limit_offset, - ACTIONS(711), 2, + ACTIONS(1888), 2, anon_sym_SEMI, anon_sym_RPAREN, - [63078] = 18, + [64452] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(973), 1, + STATE(1009), 1, sym_select_where, - STATE(1059), 1, + STATE(1069), 1, sym_select_group_by, - STATE(1098), 1, + STATE(1140), 1, sym_select_having, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, sym_select_offset, - STATE(1289), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, sym_into, - STATE(1427), 1, + STATE(1531), 1, sym__select_limit_offset, - ACTIONS(1757), 2, + ACTIONS(1801), 2, anon_sym_SEMI, anon_sym_RPAREN, - [63134] = 3, + [64508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 1, - anon_sym_COMMA, - ACTIONS(457), 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, + ACTIONS(227), 1, sym__identifier, - [63160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 1, + ACTIONS(1872), 1, anon_sym_COMMA, - ACTIONS(493), 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, - [63186] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(979), 1, - sym_select_where, - STATE(1044), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1111), 1, - sym_select_having, - STATE(1173), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1454), 1, - sym__select_limit_offset, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63242] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1844), 1, - anon_sym_COMMA, - STATE(889), 1, + STATE(914), 1, sym_identifier, - ACTIONS(1846), 15, + ACTIONS(1880), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -73389,88 +74805,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [63272] = 18, + [64538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(999), 1, - sym_select_where, - STATE(1049), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1133), 1, - sym_select_having, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63328] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(998), 1, - sym_select_where, - STATE(1046), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1110), 1, - sym_select_having, - STATE(1161), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1492), 1, - sym__select_limit_offset, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, + ACTIONS(453), 1, anon_sym_COMMA, - ACTIONS(479), 17, + ACTIONS(455), 17, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -73488,258 +74828,253 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [63410] = 14, + [64564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, + ACTIONS(469), 1, + anon_sym_COMMA, + ACTIONS(471), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, - ACTIONS(1767), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, aux_sym_select_order_by_token1, - STATE(981), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [64590] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1015), 1, + sym_select_where, + STATE(1078), 1, sym_select_group_by, - STATE(1041), 1, + STATE(1120), 1, sym_select_having, - STATE(1092), 1, + STATE(1153), 1, + sym_where_filter, + STATE(1208), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1289), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, sym_into, - STATE(1300), 1, + STATE(1544), 1, sym__select_limit_offset, - ACTIONS(1757), 5, + ACTIONS(1833), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63457] = 18, + [64646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(443), 1, + anon_sym_COMMA, + ACTIONS(445), 17, + aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - ACTIONS(1763), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1779), 1, aux_sym_for_statement_token2, - STATE(1020), 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, + sym__identifier, + [64672] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1026), 1, sym_select_where, - STATE(1079), 1, + STATE(1080), 1, sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1136), 1, + STATE(1124), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, + STATE(1153), 1, + sym_where_filter, + STATE(1206), 1, sym_select_order_by, - STATE(1287), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, sym_into, - STATE(1730), 1, + STATE(1495), 1, sym__select_limit_offset, - [63512] = 18, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64728] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, + ACTIONS(1797), 1, aux_sym_where_filter_token1, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1017), 1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(994), 1, sym_select_where, STATE(1074), 1, sym_select_group_by, - STATE(1106), 1, + STATE(1153), 1, sym_where_filter, - STATE(1135), 1, + STATE(1157), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1224), 1, + STATE(1207), 1, sym_select_order_by, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [63567] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(993), 1, - sym_select_group_by, - STATE(1033), 1, - sym_select_having, - STATE(1121), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1286), 1, - sym__select_limit_offset, - STATE(1312), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, sym_into, - ACTIONS(1948), 5, + STATE(1519), 1, + sym__select_limit_offset, + ACTIONS(1799), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63614] = 14, + [64784] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(990), 1, - sym_select_group_by, - STATE(1038), 1, - sym_select_having, - STATE(1117), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1282), 1, - sym__select_limit_offset, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63661] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - STATE(983), 1, - sym_select_group_by, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, STATE(1051), 1, - sym_select_having, - STATE(1101), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63708] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(975), 1, + sym_select_where, + STATE(1106), 1, sym_select_group_by, - STATE(1031), 1, + STATE(1153), 1, + sym_where_filter, + STATE(1167), 1, sym_select_having, - STATE(1112), 1, + STATE(1245), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, sym_into, - ACTIONS(1830), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63755] = 6, + STATE(1609), 1, + sym__select_limit_offset, + [64839] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1029), 1, + sym_select_where, + STATE(1116), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1183), 1, + sym_select_having, + STATE(1262), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1586), 1, + sym__select_limit_offset, + [64894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, anon_sym_LPAREN, - ACTIONS(1952), 1, + ACTIONS(1976), 1, aux_sym_insert_conflict_token1, - STATE(977), 1, + STATE(993), 1, sym__list_of_identifiers, - STATE(978), 2, + STATE(998), 2, sym_fk_action, aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1950), 12, + ACTIONS(1974), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -73752,339 +75087,295 @@ 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, - [63786] = 18, + [64925] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(1012), 1, - sym_select_where, - STATE(1090), 1, + STATE(1000), 1, sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1151), 1, + STATE(1072), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, + STATE(1132), 1, sym_select_order_by, - STATE(1308), 1, - sym_into, - STATE(1753), 1, - sym__select_limit_offset, - [63841] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(972), 1, - sym_select_group_by, - STATE(1054), 1, - sym_select_having, - STATE(1103), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1307), 1, sym__select_limit_offset, - ACTIONS(1779), 5, + STATE(1322), 1, + sym_into, + ACTIONS(1978), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [63888] = 18, + [64972] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, + ACTIONS(1787), 1, aux_sym_grant_roles_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, - STATE(1016), 1, - sym_select_where, - STATE(1066), 1, + STATE(1008), 1, sym_select_group_by, - STATE(1106), 1, - sym_where_filter, - STATE(1157), 1, + STATE(1064), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1221), 1, - sym_select_order_by, - STATE(1333), 1, - sym_into, - STATE(1719), 1, - sym__select_limit_offset, - [63943] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1954), 1, - aux_sym_update_statement_token2, - ACTIONS(1956), 1, - anon_sym_LPAREN, - STATE(882), 1, - sym_identifier, - ACTIONS(1785), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1791), 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, - [63976] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1773), 1, - aux_sym_where_filter_token1, - STATE(1024), 1, - sym_select_where, - STATE(1081), 1, - sym_select_group_by, - STATE(1106), 1, - sym_where_filter, STATE(1154), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, sym_select_order_by, - STATE(1289), 1, - sym_into, - STATE(1741), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, sym__select_limit_offset, - [64031] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, - ACTIONS(1958), 1, - aux_sym_join_item_token1, - ACTIONS(1961), 1, - aux_sym_join_item_token2, - STATE(1194), 1, - sym_join_type, - STATE(956), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1813), 6, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64067] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1964), 1, - aux_sym_join_item_token1, - ACTIONS(1966), 1, - aux_sym_join_item_token2, - STATE(1194), 1, - sym_join_type, - STATE(959), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1799), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64103] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1194), 1, - sym_join_type, - STATE(968), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 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, - [64129] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(1964), 1, - aux_sym_join_item_token1, - ACTIONS(1966), 1, - aux_sym_join_item_token2, - STATE(1194), 1, - sym_join_type, - STATE(956), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1801), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [64165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - STATE(963), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1968), 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, - [64191] = 4, + [65019] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1972), 14, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1040), 1, + sym_select_where, + STATE(1087), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [65074] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1017), 1, + sym_select_group_by, + STATE(1083), 1, + sym_select_having, + STATE(1134), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 5, anon_sym_SEMI, - 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, - [64217] = 7, + [65121] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + STATE(1039), 1, + sym_select_where, + STATE(1104), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1168), 1, + sym_select_having, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [65176] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1001), 1, + sym_select_group_by, + STATE(1075), 1, + sym_select_having, + STATE(1135), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1312), 1, + sym__select_limit_offset, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [65223] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1005), 1, + sym_select_group_by, + STATE(1057), 1, + sym_select_having, + STATE(1147), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [65270] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1023), 1, + sym_select_group_by, + STATE(1070), 1, + sym_select_having, + STATE(1137), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [65317] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__identifier, - ACTIONS(1974), 1, + ACTIONS(1980), 1, aux_sym_update_statement_token2, - ACTIONS(1976), 1, + ACTIONS(1982), 1, anon_sym_LPAREN, - STATE(882), 1, + STATE(905), 1, sym_identifier, - ACTIONS(1785), 3, + ACTIONS(1813), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1791), 9, + ACTIONS(1819), 10, + aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -74094,14 +75385,124 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [64249] = 4, + [65350] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1797), 1, + aux_sym_where_filter_token1, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1036), 1, + sym_select_where, + STATE(1115), 1, + sym_select_group_by, + STATE(1153), 1, + sym_where_filter, + STATE(1174), 1, + sym_select_having, + STATE(1244), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1595), 1, + sym__select_limit_offset, + [65405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1984), 1, + anon_sym_LPAREN, + STATE(1041), 1, + sym_precision, + ACTIONS(55), 14, + anon_sym_SEMI, anon_sym_COMMA, - STATE(917), 1, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [65431] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, + sym_identifier, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1825), 10, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65461] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1986), 1, + aux_sym_join_item_token1, + ACTIONS(1988), 1, + aux_sym_join_item_token2, + STATE(1270), 1, + sym_join_type, + STATE(988), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1835), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [65497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + STATE(936), 1, aux_sym_drop_type_statement_repeat1, - ACTIONS(1978), 14, + ACTIONS(1990), 14, anon_sym_SEMI, aux_sym_update_statement_token4, anon_sym_RPAREN, @@ -74116,14 +75517,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [64275] = 4, + [65523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + STATE(1270), 1, + sym_join_type, + STATE(989), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 13, + anon_sym_SEMI, anon_sym_COMMA, - STATE(961), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + STATE(981), 1, aux_sym_drop_type_statement_repeat1, - ACTIONS(1978), 14, + ACTIONS(1994), 14, anon_sym_SEMI, aux_sym_update_statement_token4, anon_sym_RPAREN, @@ -74138,7 +75561,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [64301] = 3, + [65575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1994), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65601] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1996), 1, + aux_sym_update_statement_token2, + ACTIONS(1998), 1, + anon_sym_LPAREN, + STATE(905), 1, + sym_identifier, + ACTIONS(1813), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1819), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2000), 1, + anon_sym_LPAREN, + STATE(1041), 1, + sym_type_length, + ACTIONS(55), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [65659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + STATE(984), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [65685] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(1986), 1, + aux_sym_join_item_token1, + ACTIONS(1988), 1, + aux_sym_join_item_token2, + STATE(1270), 1, + sym_join_type, + STATE(990), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1831), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [65721] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1270), 1, + sym_join_type, + STATE(990), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65747] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + aux_sym_join_item_token3, + ACTIONS(1858), 1, + aux_sym_join_type_token1, + ACTIONS(2004), 1, + aux_sym_join_item_token1, + ACTIONS(2007), 1, + aux_sym_join_item_token2, + STATE(1270), 1, + sym_join_type, + STATE(990), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1847), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [65783] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -74159,431 +75749,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [64325] = 4, + [65807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_LPAREN, - STATE(1029), 1, - sym_precision, - ACTIONS(55), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - [64351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(1834), 1, - aux_sym_update_statement_token2, - STATE(857), 1, + STATE(1035), 1, sym_identifier, - ACTIONS(1832), 3, + ACTIONS(2010), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1836), 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, - [64381] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1194), 1, - sym_join_type, - STATE(956), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 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, - [64407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - STATE(889), 1, - sym_identifier, - ACTIONS(1844), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1846), 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, - [64434] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1040), 1, - sym_select_group_by, - STATE(1122), 1, - sym_select_having, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - aux_sym_insert_conflict_token1, - STATE(971), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1982), 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, - [64506] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1031), 1, - sym_select_having, - STATE(1112), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64547] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1049), 1, - sym_select_group_by, - STATE(1133), 1, - sym_select_having, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1952), 1, - aux_sym_insert_conflict_token1, - STATE(971), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1987), 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, - [64619] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1038), 1, - sym_select_having, - STATE(1117), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1282), 1, - sym__select_limit_offset, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(1834), 1, - aux_sym_update_statement_token2, - STATE(857), 1, - sym_identifier, - ACTIONS(1832), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1836), 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, - [64689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1952), 1, - aux_sym_insert_conflict_token1, - STATE(974), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1989), 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, - [64714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1952), 1, - aux_sym_insert_conflict_token1, - STATE(971), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1989), 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, - [64739] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1046), 1, - sym_select_group_by, - STATE(1110), 1, - sym_select_having, - STATE(1161), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1492), 1, - sym__select_limit_offset, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64786] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1991), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(1993), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(1995), 1, - aux_sym_conflict_target_token1, - ACTIONS(1997), 1, - aux_sym_create_table_statement_token1, - ACTIONS(1999), 1, - aux_sym_create_schema_statement_token1, - ACTIONS(2001), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2003), 1, - aux_sym_create_index_statement_token2, - ACTIONS(2005), 1, - aux_sym_grant_targets_token5, - ACTIONS(2007), 1, - aux_sym_create_trigger_statement_token1, - ACTIONS(2009), 1, - aux_sym_trigger_event_token2, - ACTIONS(2011), 1, - aux_sym_temporary_token1, - ACTIONS(2013), 1, - aux_sym_temporary_token2, - ACTIONS(2015), 1, - sym_unlogged, - STATE(1605), 1, - sym_temporary, - STATE(2176), 1, - sym_or_replace, - [64835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1054), 1, - sym_select_having, - STATE(1103), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1779), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [64876] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - STATE(1021), 1, - sym_identifier, - ACTIONS(2017), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2019), 10, + ACTIONS(2012), 10, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, @@ -74594,39 +75771,522 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [64903] = 12, + [65834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1976), 1, + aux_sym_insert_conflict_token1, + STATE(1003), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2014), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [65859] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - STATE(1041), 1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1069), 1, + sym_select_group_by, + STATE(1140), 1, sym_select_having, - STATE(1092), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, sym_select_offset, - STATE(1289), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, sym_into, - STATE(1300), 1, + STATE(1531), 1, sym__select_limit_offset, - ACTIONS(1757), 5, + ACTIONS(1801), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65906] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1232), 1, + sym_join_type, + STATE(997), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [65931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(2016), 1, + aux_sym_join_item_token1, + ACTIONS(2018), 1, + aux_sym_join_item_token2, + STATE(1232), 1, + sym_join_type, + STATE(997), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1831), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [65966] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + aux_sym_join_item_token3, + ACTIONS(1858), 1, + aux_sym_join_type_token1, + ACTIONS(2020), 1, + aux_sym_join_item_token1, + ACTIONS(2023), 1, + aux_sym_join_item_token2, + STATE(1232), 1, + sym_join_type, + STATE(997), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1847), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [66001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1976), 1, + aux_sym_insert_conflict_token1, + STATE(1004), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2014), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [66026] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 1, + aux_sym_insert_items_token1, + ACTIONS(2031), 1, + aux_sym_conflict_target_token1, + ACTIONS(2037), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2040), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2043), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2046), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1055), 1, + sym_column_constraint_ty, + STATE(1092), 1, + sym_constraint_foreign_key, + ACTIONS(2034), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(999), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2026), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [66067] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1066), 1, + sym_select_having, + STATE(1129), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1309), 1, + sym__select_limit_offset, + STATE(1317), 1, + sym_into, + ACTIONS(2049), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [64944] = 2, + [66108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 15, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1072), 1, + sym_select_having, + STATE(1132), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1307), 1, + sym__select_limit_offset, + STATE(1322), 1, + sym_into, + ACTIONS(1978), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66149] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + aux_sym_insert_items_token1, + ACTIONS(2055), 1, + aux_sym_conflict_target_token1, + ACTIONS(2059), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2061), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2063), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2065), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1055), 1, + sym_column_constraint_ty, + STATE(1092), 1, + sym_constraint_foreign_key, + ACTIONS(2057), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(1018), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2051), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [66190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1976), 1, + aux_sym_insert_conflict_token1, + STATE(1004), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2067), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [66215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 1, + aux_sym_insert_conflict_token1, + STATE(1004), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2069), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [66240] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1075), 1, + sym_select_having, + STATE(1135), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1312), 1, + sym__select_limit_offset, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, + sym_identifier, + ACTIONS(1821), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1825), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [66310] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1080), 1, + sym_select_group_by, + STATE(1124), 1, + sym_select_having, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66357] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1057), 1, + sym_select_having, + STATE(1147), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66398] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1078), 1, + sym_select_group_by, + STATE(1120), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1544), 1, + sym__select_limit_offset, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(471), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(455), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + ACTIONS(1872), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1880), 10, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [66518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2074), 15, anon_sym_SEMI, aux_sym_update_statement_token2, anon_sym_LPAREN, @@ -74642,78 +76302,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, aux_sym_select_statement_token1, - [64965] = 15, + [66539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1059), 1, - sym_select_group_by, - STATE(1098), 1, - sym_select_having, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65012] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - aux_sym_insert_items_token1, - ACTIONS(2028), 1, - aux_sym_conflict_target_token1, - ACTIONS(2034), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2037), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2040), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2043), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1043), 1, - sym_column_constraint_ty, - STATE(1088), 1, - sym_constraint_foreign_key, - ACTIONS(2031), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(986), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2023), 3, + ACTIONS(443), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [65053] = 5, + ACTIONS(445), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [66562] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1071), 1, + sym_select_group_by, + STATE(1139), 1, + sym_select_having, + STATE(1186), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1560), 1, + sym__select_limit_offset, + ACTIONS(1888), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66609] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, anon_sym_LBRACK, - STATE(1039), 1, + STATE(1076), 1, aux_sym__type_repeat1, - ACTIONS(2048), 2, + ACTIONS(2078), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(81), 11, + ACTIONS(125), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -74725,174 +76376,99 @@ 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, - [65080] = 12, + [66636] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1070), 1, + sym_select_having, + STATE(1137), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66677] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, aux_sym_insert_items_token1, - ACTIONS(2054), 1, + ACTIONS(2055), 1, aux_sym_conflict_target_token1, - ACTIONS(2058), 1, + ACTIONS(2059), 1, aux_sym_alter_column_action_token1, - ACTIONS(2060), 1, + ACTIONS(2061), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(2062), 1, + ACTIONS(2063), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(2064), 1, + ACTIONS(2065), 1, aux_sym_constraint_foreign_key_token1, - STATE(1043), 1, + STATE(1055), 1, sym_column_constraint_ty, - STATE(1088), 1, + STATE(1092), 1, sym_constraint_foreign_key, - ACTIONS(2056), 2, + ACTIONS(2057), 2, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, + STATE(999), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2080), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [66718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(2016), 1, + aux_sym_join_item_token1, + ACTIONS(2018), 1, + aux_sym_join_item_token2, + STATE(1232), 1, + sym_join_type, STATE(996), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2050), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [65121] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(2066), 1, - aux_sym_join_item_token1, - ACTIONS(2068), 1, - aux_sym_join_item_token2, - STATE(1206), 1, - sym_join_type, - STATE(991), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1811), 3, + ACTIONS(1845), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1801), 5, + ACTIONS(1835), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_returning_token1, aux_sym_where_filter_token1, - [65156] = 12, + [66753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1033), 1, - sym_select_having, - STATE(1121), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1286), 1, - sym__select_limit_offset, - STATE(1312), 1, - sym_into, - ACTIONS(1948), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65197] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, - ACTIONS(2070), 1, - aux_sym_join_item_token1, - ACTIONS(2073), 1, - aux_sym_join_item_token2, - STATE(1206), 1, + STATE(1232), 1, sym_join_type, - STATE(991), 2, + STATE(995), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1813), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(457), 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, - [65255] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1045), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1288), 1, - sym__select_limit_offset, - STATE(1334), 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, - [65296] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1206), 1, - sym_join_type, - STATE(991), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 12, + ACTIONS(1835), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -74905,149 +76481,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [65321] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1051), 1, - sym_select_having, - STATE(1101), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65362] = 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(1043), 1, - sym_column_constraint_ty, - STATE(1088), 1, - sym_constraint_foreign_key, - ACTIONS(2056), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(986), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2078), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [65403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(493), 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, - [65426] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1047), 1, - sym_select_group_by, - STATE(1097), 1, - sym_select_having, - STATE(1172), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1312), 1, - sym_into, - STATE(1437), 1, - sym__select_limit_offset, - ACTIONS(1948), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65473] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1044), 1, - sym_select_group_by, - STATE(1111), 1, - sym_select_having, - STATE(1173), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1454), 1, - sym__select_limit_offset, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65520] = 3, + [66778] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -75067,257 +76501,543 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [65543] = 9, + [66801] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(2066), 1, - aux_sym_join_item_token1, - ACTIONS(2068), 1, - aux_sym_join_item_token2, - STATE(1206), 1, - sym_join_type, - STATE(989), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65578] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1206), 1, - sym_join_type, - STATE(994), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 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, - [65603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(479), 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, - [65626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2080), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2082), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [65648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2084), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + ACTIONS(1789), 1, aux_sym_select_having_token1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [65668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2088), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [65690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - anon_sym_COMMA, - STATE(1007), 1, - aux_sym_returning_repeat1, - ACTIONS(2084), 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, - [65714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2095), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [65736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(149), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - [65756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - [65776] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - STATE(889), 1, - sym_identifier, - ACTIONS(1844), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1846), 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, - [65802] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1081), 1, - sym_select_group_by, - STATE(1154), 1, + STATE(1083), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, + STATE(1134), 1, sym_select_order_by, - STATE(1289), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, sym_into, - STATE(1741), 1, + STATE(1352), 1, sym__select_limit_offset, - [65848] = 3, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66842] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1064), 1, + sym_select_having, + STATE(1154), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, + sym__select_limit_offset, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [66883] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1058), 1, + sym_select_group_by, + STATE(1151), 1, + sym_select_having, + STATE(1185), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1571), 1, + sym__select_limit_offset, + ACTIONS(1978), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [66930] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2082), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2084), 1, + aux_sym_drop_function_statement_token1, + ACTIONS(2086), 1, + aux_sym_conflict_target_token1, + ACTIONS(2088), 1, + aux_sym_create_table_statement_token1, + ACTIONS(2090), 1, + aux_sym_create_schema_statement_token1, + ACTIONS(2092), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2094), 1, + aux_sym_create_index_statement_token2, + ACTIONS(2096), 1, + aux_sym_grant_targets_token5, + ACTIONS(2098), 1, + aux_sym_create_trigger_statement_token1, + ACTIONS(2100), 1, + aux_sym_trigger_event_token2, + ACTIONS(2102), 1, + aux_sym_temporary_token1, + ACTIONS(2104), 1, + aux_sym_temporary_token2, + ACTIONS(2106), 1, + sym_unlogged, + STATE(1593), 1, + sym_temporary, + STATE(2320), 1, + sym_or_replace, + [66979] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1074), 1, + sym_select_group_by, + STATE(1157), 1, + sym_select_having, + STATE(1207), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1519), 1, + sym__select_limit_offset, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2010), 14, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + ACTIONS(1872), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1880), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [67072] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1115), 1, + sym_select_group_by, + STATE(1174), 1, + sym_select_having, + STATE(1244), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1595), 1, + sym__select_limit_offset, + [67118] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1106), 1, + sym_select_group_by, + STATE(1167), 1, + sym_select_having, + STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1609), 1, + sym__select_limit_offset, + [67164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 14, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2110), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2112), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(455), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [67228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(445), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [67250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 14, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67270] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1978), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_group_by, + STATE(1162), 1, + sym_select_having, + STATE(1218), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1590), 1, + sym__select_limit_offset, + [67316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(471), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [67338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2118), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67360] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1116), 1, + sym_select_group_by, + STATE(1183), 1, + sym_select_having, + STATE(1262), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1586), 1, + sym__select_limit_offset, + [67406] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + STATE(1104), 1, + sym_select_group_by, + STATE(1168), 1, + sym_select_having, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [67452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(141), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [67472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2120), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2122), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2124), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2126), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 3, @@ -75336,16 +77056,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__type_token1, aux_sym__type_token2, anon_sym_SQUOTE, - [65870] = 3, + [67538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 5, + ACTIONS(2128), 5, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2099), 9, + ACTIONS(2130), 9, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, aux_sym_array_constructor_token1, @@ -75355,334 +77075,10 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_number, sym__identifier, - [65892] = 3, + [67560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2103), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [65914] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1948), 1, - aux_sym_for_statement_token2, - STATE(1064), 1, - sym_select_group_by, - STATE(1155), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1312), 1, - sym_into, - STATE(1716), 1, - sym__select_limit_offset, - [65960] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, - STATE(1066), 1, - sym_select_group_by, - STATE(1157), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1221), 1, - sym_select_order_by, - STATE(1333), 1, - sym_into, - STATE(1719), 1, - sym__select_limit_offset, - [66006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(479), 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, - [66028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2105), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2107), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [66050] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1074), 1, - sym_select_group_by, - STATE(1135), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1224), 1, - sym_select_order_by, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [66096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2109), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [66116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2113), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [66138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2115), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2117), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [66160] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - STATE(1079), 1, - sym_select_group_by, - STATE(1136), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, - sym_select_order_by, - STATE(1287), 1, - sym_into, - STATE(1730), 1, - sym__select_limit_offset, - [66206] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1763), 1, - aux_sym_grant_roles_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1090), 1, - sym_select_group_by, - STATE(1151), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, - sym_select_order_by, - STATE(1308), 1, - sym_into, - STATE(1753), 1, - sym__select_limit_offset, - [66252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2017), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [66272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(457), 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, - [66294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(491), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(493), 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, - [66316] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(139), 14, + ACTIONS(153), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -75697,124 +77093,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, - [66336] = 10, + [67580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1101), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66371] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1117), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1282), 1, - sym__select_limit_offset, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2119), 13, - anon_sym_SEMI, + ACTIONS(2132), 1, anon_sym_COMMA, + STATE(1047), 1, + aux_sym_returning_repeat1, + ACTIONS(2108), 12, + anon_sym_SEMI, + aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [66425] = 10, + [67604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1126), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1288), 1, - sym__select_limit_offset, - STATE(1334), 1, - sym_into, - ACTIONS(2076), 5, + ACTIONS(157), 14, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_SEMI, - ACTIONS(2121), 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, - [66481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, + 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(1035), 1, - aux_sym__type_repeat1, - ACTIONS(153), 11, + aux_sym__type_token1, + aux_sym__type_token2, + [67624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2137), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(145), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -75826,73 +77165,86 @@ 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, - [66504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2128), 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, - [66523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 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, - [66542] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1121), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1286), 1, - sym__select_limit_offset, - STATE(1312), 1, - sym_into, - ACTIONS(1948), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2046), 1, anon_sym_LBRACK, - STATE(1035), 1, + aux_sym__type_token1, + aux_sym__type_token2, + [67666] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1787), 1, + aux_sym_grant_roles_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1087), 1, + sym_select_group_by, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [67712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2141), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2143), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2145), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [67756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_LBRACK, + STATE(1054), 1, aux_sym__type_repeat1, - ACTIONS(164), 11, + ACTIONS(161), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -75904,95 +77256,14 @@ 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, - [66600] = 13, + [67779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1098), 1, - sym_select_having, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66641] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1103), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1779), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66676] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1122), 1, - sym_select_having, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, + ACTIONS(2152), 1, aux_sym_constraint_when_token1, - STATE(1105), 1, + STATE(1148), 1, sym_constraint_when, - ACTIONS(2132), 11, + ACTIONS(2150), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -76004,231 +77275,544 @@ 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, - [66740] = 13, + [67802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1110), 1, - sym_select_having, - STATE(1161), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1492), 1, - sym__select_limit_offset, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66781] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1127), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1291), 1, - sym__select_limit_offset, - STATE(1301), 1, - sym_into, - ACTIONS(2136), 5, + ACTIONS(2156), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2154), 11, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [66816] = 13, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67825] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1097), 1, - sym_select_having, - STATE(1172), 1, + STATE(1135), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, + STATE(1269), 1, + sym_select_limit, STATE(1312), 1, - sym_into, - STATE(1437), 1, sym__select_limit_offset, - ACTIONS(1948), 2, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, anon_sym_SEMI, anon_sym_RPAREN, - [66857] = 13, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [67860] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(1118), 1, + STATE(1131), 1, + sym_select_having, + STATE(1201), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1552), 1, + sym__select_limit_offset, + ACTIONS(2049), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2158), 1, + aux_sym_update_statement_token2, + ACTIONS(2160), 1, + anon_sym_LPAREN, + STATE(905), 1, + sym_identifier, + ACTIONS(1819), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [67928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2164), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2162), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [67951] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1124), 1, + sym_select_having, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [67992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_SEMI, + ACTIONS(2167), 12, + ts_builtin_sym_end, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [68013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 13, + ts_builtin_sym_end, + anon_sym_SEMI, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [68032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1147), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68067] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + aux_sym_conflict_target_token1, + ACTIONS(2175), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2177), 1, + aux_sym_alter_table_action_token2, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2183), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2185), 1, + aux_sym_if_statement_token1, + ACTIONS(2187), 1, + sym__identifier, + STATE(1316), 1, + sym_identifier, + STATE(1446), 1, + sym_table_constraint_ty, + STATE(1732), 1, + sym_if_not_exists, + STATE(1871), 2, + sym_table_constraint, + sym_table_column_item, + [68108] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1128), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1344), 1, + sym_into, + STATE(1377), 1, + sym__select_limit_offset, + ACTIONS(2189), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2156), 1, + anon_sym_COMMA, + STATE(1056), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2191), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [68166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + STATE(1035), 1, + sym_identifier, + ACTIONS(2010), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2012), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [68191] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1120), 1, + sym_select_having, + STATE(1208), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1544), 1, + sym__select_limit_offset, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68232] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1154), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, + sym__select_limit_offset, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68267] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1151), 1, + sym_select_having, + STATE(1185), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1571), 1, + sym__select_limit_offset, + ACTIONS(1978), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68308] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1129), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1309), 1, + sym__select_limit_offset, + STATE(1317), 1, + sym_into, + ACTIONS(2049), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68362] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1140), 1, + sym_select_having, + STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1531), 1, + sym__select_limit_offset, + ACTIONS(1801), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68403] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1132), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1307), 1, + sym__select_limit_offset, + STATE(1322), 1, + sym_into, + ACTIONS(1978), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2076), 1, + anon_sym_LBRACK, + STATE(1054), 1, + aux_sym__type_repeat1, + ACTIONS(172), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 1, + aux_sym_constraint_when_token1, + STATE(1146), 1, + sym_constraint_when, + ACTIONS(2195), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68484] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1139), 1, sym_select_having, STATE(1186), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1334), 1, - sym_into, - STATE(1538), 1, - sym__select_limit_offset, - ACTIONS(2076), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66898] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - aux_sym_constraint_when_token1, - STATE(1113), 1, - sym_constraint_when, - ACTIONS(2138), 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, - [66921] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1111), 1, - sym_select_having, - STATE(1173), 1, - sym_select_order_by, - STATE(1189), 1, + STATE(1269), 1, sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, + STATE(1371), 1, sym_into, - STATE(1454), 1, + STATE(1560), 1, sym__select_limit_offset, - ACTIONS(1830), 2, + ACTIONS(1888), 2, anon_sym_SEMI, anon_sym_RPAREN, - [66962] = 4, + [68525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 1, - anon_sym_COMMA, - STATE(1050), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2119), 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, - [66985] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1092), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1300), 1, - sym__select_limit_offset, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [67020] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2143), 1, - aux_sym_update_statement_token2, - ACTIONS(2145), 1, - anon_sym_LPAREN, - STATE(882), 1, - sym_identifier, - ACTIONS(1791), 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, - [67047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 13, + ACTIONS(2197), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -76242,508 +77826,426 @@ 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, - [67066] = 10, + [68544] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1112), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [67101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 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, - [67120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(1057), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2151), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + ACTIONS(1789), 1, aux_sym_select_having_token1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [67143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(1050), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2155), 11, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [67166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - STATE(1021), 1, - sym_identifier, - ACTIONS(2017), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2019), 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, - [67191] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1133), 1, - sym_select_having, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67232] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - aux_sym_conflict_target_token1, - ACTIONS(2159), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2161), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2163), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2169), 1, - aux_sym_if_statement_token1, - ACTIONS(2171), 1, - sym__identifier, - STATE(1381), 1, - sym_identifier, - STATE(1383), 1, - sym_table_constraint_ty, - STATE(1590), 1, - sym_if_not_exists, - STATE(1826), 2, - sym_table_constraint, - sym_table_column_item, - [67273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 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, - [67291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1821), 1, - aux_sym_join_item_token3, - ACTIONS(1824), 1, - aux_sym_join_type_token1, - ACTIONS(2175), 1, - aux_sym_join_item_token1, - ACTIONS(2178), 1, - aux_sym_join_item_token2, - STATE(1206), 1, - sym_join_type, - ACTIONS(1813), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1062), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1827), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [67323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2017), 1, - anon_sym_COMMA, - STATE(1021), 1, - sym_identifier, - ACTIONS(2019), 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, - [67347] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(2076), 1, - aux_sym_for_statement_token2, - STATE(1152), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1215), 1, - sym_select_order_by, - STATE(1334), 1, - sym_into, - STATE(1714), 1, - sym__select_limit_offset, - [67387] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - ACTIONS(2181), 1, - aux_sym_join_item_token1, - ACTIONS(2183), 1, - aux_sym_join_item_token2, - STATE(1206), 1, - sym_join_type, - ACTIONS(1801), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1062), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [67419] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1948), 1, - aux_sym_for_statement_token2, - STATE(1155), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1312), 1, - sym_into, - STATE(1716), 1, - sym__select_limit_offset, - [67459] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - aux_sym_conflict_target_token1, - ACTIONS(2159), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2163), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2185), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_identifier, - STATE(1383), 1, - sym_table_constraint_ty, - STATE(1740), 1, - sym_create_table_item, - STATE(1942), 2, - sym_table_constraint, - sym_table_column_item, - [67497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(587), 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, - [67515] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2189), 1, - aux_sym_update_statement_token2, - ACTIONS(2191), 1, - aux_sym_insert_statement_token2, - ACTIONS(2193), 1, - aux_sym_returning_token1, - ACTIONS(2195), 1, - aux_sym_index_using_token1, - ACTIONS(2197), 1, - aux_sym_where_filter_token1, - STATE(1166), 1, - sym_identifier, - STATE(1261), 1, - sym_delete_using, - STATE(1355), 1, - sym_where_filter, - STATE(1839), 1, - sym_into, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67553] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - aux_sym_conflict_target_token1, - ACTIONS(2159), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2163), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2199), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_identifier, - STATE(1383), 1, - sym_table_constraint_ty, - STATE(1668), 1, - sym_create_table_item, - STATE(1942), 2, - sym_table_constraint, - sym_table_column_item, - [67591] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1206), 1, - sym_join_type, - STATE(1062), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1801), 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, - [67613] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - aux_sym_conflict_target_token1, - ACTIONS(2159), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2163), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2201), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_identifier, - STATE(1383), 1, - sym_table_constraint_ty, - STATE(1604), 1, - sym_create_table_item, - STATE(1942), 2, - sym_table_constraint, - sym_table_column_item, - [67651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2157), 1, - aux_sym_conflict_target_token1, - ACTIONS(2159), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2163), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2203), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_identifier, - STATE(1383), 1, - sym_table_constraint_ty, - STATE(1662), 1, - sym_create_table_item, - STATE(1942), 2, - sym_table_constraint, - sym_table_column_item, - [67689] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, STATE(1157), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1221), 1, + STATE(1207), 1, sym_select_order_by, - STATE(1333), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, sym_into, - STATE(1719), 1, + STATE(1519), 1, sym__select_limit_offset, - [67729] = 2, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 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, - [67747] = 2, + ACTIONS(2199), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68604] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 12, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1134), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68639] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1137), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, + sym__select_limit_offset, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [68674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2162), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [68693] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(621), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(298), 1, + aux_sym__type_repeat1, + STATE(1615), 1, + sym__type, + ACTIONS(125), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(623), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(225), 2, + sym_predefined_type, + sym_identifier, + [68727] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(621), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(298), 1, + aux_sym__type_repeat1, + STATE(1919), 1, + sym__type, + ACTIONS(125), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(623), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(225), 2, + sym_predefined_type, + sym_identifier, + [68761] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + STATE(1168), 1, + sym_select_having, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [68801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2207), 1, + aux_sym_constraint_when_token2, + ACTIONS(2205), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68821] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + aux_sym_conflict_target_token1, + ACTIONS(2175), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2183), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2209), 1, + anon_sym_RPAREN, + STATE(1316), 1, + sym_identifier, + STATE(1446), 1, + sym_table_constraint_ty, + STATE(1625), 1, + sym_create_table_item, + STATE(1910), 2, + sym_table_constraint, + sym_table_column_item, + [68859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(593), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68877] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + ACTIONS(2211), 1, + aux_sym_join_item_token1, + ACTIONS(2213), 1, + aux_sym_join_item_token2, + STATE(1232), 1, + sym_join_type, + ACTIONS(1831), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(1094), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [68909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2215), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [68927] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2219), 1, + aux_sym_update_statement_token2, + ACTIONS(2221), 1, + aux_sym_insert_statement_token2, + ACTIONS(2223), 1, + aux_sym_returning_token1, + ACTIONS(2225), 1, + aux_sym_index_using_token1, + ACTIONS(2227), 1, + aux_sym_where_filter_token1, + STATE(1198), 1, + sym_identifier, + STATE(1272), 1, + sym_delete_using, + STATE(1387), 1, + sym_where_filter, + STATE(1877), 1, + sym_into, + ACTIONS(2217), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + aux_sym_join_item_token3, + ACTIONS(1858), 1, + aux_sym_join_type_token1, + ACTIONS(2229), 1, + aux_sym_join_item_token1, + ACTIONS(2232), 1, + aux_sym_join_item_token2, + STATE(1232), 1, + sym_join_type, + ACTIONS(1847), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(1094), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1861), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [68997] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1232), 1, + sym_join_type, + STATE(1094), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1831), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [69019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2235), 1, + anon_sym_COMMA, + STATE(1096), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(662), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [69041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2010), 1, + anon_sym_COMMA, + STATE(1035), 1, + sym_identifier, + ACTIONS(2012), 9, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69065] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(2049), 1, + aux_sym_for_statement_token2, + STATE(1178), 1, + sym_select_having, + STATE(1252), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1587), 1, + sym__select_limit_offset, + [69105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -76756,14 +78258,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, anon_sym_LBRACK, - [67765] = 4, + [69123] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2173), 1, + aux_sym_conflict_target_token1, + ACTIONS(2175), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2183), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2238), 1, + anon_sym_RPAREN, + STATE(1316), 1, + sym_identifier, + STATE(1446), 1, + sym_table_constraint_ty, + STATE(1774), 1, + sym_create_table_item, + STATE(1910), 2, + sym_table_constraint, + sym_table_column_item, + [69161] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 1, anon_sym_COMMA, - STATE(1077), 1, + STATE(1096), 1, aux_sym_conflict_target_repeat1, - ACTIONS(638), 10, + ACTIONS(2240), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -76774,96 +78302,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [67787] = 4, + [69183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_returning_repeat1, - ACTIONS(2084), 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, - [67809] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1135), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1224), 1, - sym_select_order_by, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [67849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - aux_sym_constraint_when_token2, - ACTIONS(2211), 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, - [67869] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - STATE(1136), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, - sym_select_order_by, - STATE(1287), 1, - sym_into, - STATE(1730), 1, - sym__select_limit_offset, - [67909] = 3, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(1823), 1, + aux_sym_update_statement_token2, + STATE(879), 1, + sym_identifier, + ACTIONS(1825), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [69207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -76880,110 +78338,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, sym__identifier, - [67929] = 13, + [69227] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - ACTIONS(1765), 1, + ACTIONS(1789), 1, aux_sym_select_having_token1, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - STATE(1151), 1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1183), 1, sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, + STATE(1262), 1, sym_select_order_by, - STATE(1308), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, sym_into, - STATE(1753), 1, + STATE(1586), 1, sym__select_limit_offset, - [67969] = 4, + [69267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(571), 1, - anon_sym_COMMA, - STATE(1077), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(2215), 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, - [67991] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2191), 1, - aux_sym_insert_statement_token2, - ACTIONS(2195), 1, - aux_sym_index_using_token1, - ACTIONS(2197), 1, - aux_sym_where_filter_token1, - ACTIONS(2219), 1, - aux_sym_update_statement_token2, - ACTIONS(2221), 1, - aux_sym_returning_token1, - STATE(1177), 1, - sym_identifier, - STATE(1255), 1, - sym_delete_using, - STATE(1384), 1, - sym_where_filter, - STATE(1779), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68029] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, + ACTIONS(1841), 1, aux_sym_join_item_token3, - ACTIONS(1809), 1, + ACTIONS(1843), 1, aux_sym_join_type_token1, - ACTIONS(2181), 1, + ACTIONS(2211), 1, aux_sym_join_item_token1, - ACTIONS(2183), 1, + ACTIONS(2213), 1, aux_sym_join_item_token2, - STATE(1206), 1, + STATE(1232), 1, sym_join_type, - ACTIONS(1799), 2, + ACTIONS(1835), 2, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, - STATE(1065), 2, + STATE(1091), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1811), 3, + ACTIONS(1845), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [68061] = 5, + [69299] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1180), 1, + sym_select_having, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [69339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1236), 12, + ts_builtin_sym_end, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [69357] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, sym__identifier, - ACTIONS(1834), 1, + ACTIONS(2221), 1, + aux_sym_insert_statement_token2, + ACTIONS(2225), 1, + aux_sym_index_using_token1, + ACTIONS(2227), 1, + aux_sym_where_filter_token1, + ACTIONS(2244), 1, aux_sym_update_statement_token2, - STATE(857), 1, + ACTIONS(2246), 1, + aux_sym_returning_token1, + STATE(1187), 1, sym_identifier, - ACTIONS(1836), 9, + STATE(1273), 1, + sym_delete_using, + STATE(1443), 1, + sym_where_filter, + STATE(1967), 1, + sym_into, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69395] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + STATE(1167), 1, + sym_select_having, + STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1609), 1, + sym__select_limit_offset, + [69435] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1232), 1, + sym_join_type, + STATE(1095), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1835), 9, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, aux_sym_join_item_token1, @@ -76993,10 +78502,158 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [68085] = 2, + [69457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 12, + ACTIONS(2248), 1, + anon_sym_COMMA, + STATE(1111), 1, + aux_sym_returning_repeat1, + ACTIONS(2108), 10, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [69479] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + aux_sym_conflict_target_token1, + ACTIONS(2175), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2183), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2251), 1, + anon_sym_RPAREN, + STATE(1316), 1, + sym_identifier, + STATE(1446), 1, + sym_table_constraint_ty, + STATE(1720), 1, + sym_create_table_item, + STATE(1910), 2, + sym_table_constraint, + sym_table_column_item, + [69517] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + aux_sym_conflict_target_token1, + ACTIONS(2175), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2179), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2181), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2183), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2253), 1, + anon_sym_RPAREN, + STATE(1316), 1, + sym_identifier, + STATE(1446), 1, + sym_table_constraint_ty, + STATE(1638), 1, + sym_create_table_item, + STATE(1910), 2, + sym_table_constraint, + sym_table_column_item, + [69555] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(621), 1, + anon_sym_LBRACK, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(298), 1, + aux_sym__type_repeat1, + STATE(1394), 1, + sym__type, + ACTIONS(125), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(623), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(225), 2, + sym_predefined_type, + sym_identifier, + [69589] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1978), 1, + aux_sym_for_statement_token2, + STATE(1162), 1, + sym_select_having, + STATE(1218), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1590), 1, + sym__select_limit_offset, + [69629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1789), 1, + aux_sym_select_having_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1174), 1, + sym_select_having, + STATE(1244), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1595), 1, + sym__select_limit_offset, + [69669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -77009,395 +78666,80 @@ 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, - [68103] = 4, + [69687] = 4, ACTIONS(3), 1, sym_comment, - STATE(1206), 1, - sym_join_type, - STATE(1071), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1799), 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, - [68125] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1765), 1, - aux_sym_select_having_token1, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1154), 1, - sym_select_having, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, - sym_select_order_by, - STATE(1289), 1, - sym_into, - STATE(1741), 1, - sym__select_limit_offset, - [68165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(479), 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, - [68182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1328), 1, - sym__select_limit_offset, - ACTIONS(1779), 5, + ACTIONS(2257), 1, + anon_sym_COMMA, + STATE(1138), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2154), 9, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68211] = 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(1499), 1, - sym_with_query, - STATE(2157), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [68240] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(274), 1, - aux_sym__type_repeat1, - STATE(1569), 1, - sym__type, - ACTIONS(81), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(593), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(200), 2, - sym_predefined_types, - sym_identifier, - [68271] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - STATE(1180), 1, - sym_as, - STATE(1213), 1, - sym__list_of_identifiers, - STATE(1231), 1, - sym_insert_items, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [68308] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2235), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2237), 1, - aux_sym_update_statement_token3, - ACTIONS(2239), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2241), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2243), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1738), 1, - sym_alter_table_action, - STATE(2188), 1, - sym_alter_table_change, - STATE(2288), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [68339] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, aux_sym_select_order_by_token1, - ACTIONS(1860), 1, + aux_sym_where_filter_token1, + [69708] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(1906), 1, + aux_sym_update_statement_token2, + ACTIONS(2259), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, + aux_sym_insert_items_token1, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + STATE(1196), 1, + sym_as, + STATE(1219), 1, + sym__list_of_identifiers, + STATE(1220), 1, + sym_insert_items, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [69745] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, STATE(1186), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1334), 1, - sym_into, - STATE(1538), 1, - sym__select_limit_offset, - ACTIONS(2076), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68374] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1182), 1, - sym_select_order_by, - STATE(1189), 1, + STATE(1269), 1, sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, + STATE(1371), 1, sym_into, - STATE(1545), 1, + STATE(1560), 1, sym__select_limit_offset, - ACTIONS(1779), 2, + ACTIONS(1888), 2, anon_sym_SEMI, anon_sym_RPAREN, - [68409] = 2, + [69780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2245), 11, - anon_sym_SEMI, + ACTIONS(2267), 1, 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, - [68426] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(274), 1, - aux_sym__type_repeat1, - STATE(1347), 1, - sym__type, - ACTIONS(81), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(593), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(200), 2, - sym_predefined_types, - sym_identifier, - [68457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1300), 1, - sym__select_limit_offset, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - STATE(889), 1, - sym_identifier, - ACTIONS(1846), 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, - [68507] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1299), 1, - sym__select_limit_offset, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68536] = 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(1499), 1, - sym_with_query, - STATE(2245), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [68565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2247), 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, - [68582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [68599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 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, - [68616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_COMMA, - STATE(1108), 1, + STATE(1121), 1, aux_sym_returning_repeat1, - ACTIONS(2084), 9, + ACTIONS(2108), 9, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -77407,10 +78749,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, - [68637] = 2, + [69801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 11, + ACTIONS(471), 11, aux_sym_update_statement_token2, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, @@ -77422,79 +78764,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, sym__identifier, - [68654] = 11, + [69818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1172), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1312), 1, - sym_into, - STATE(1437), 1, - sym__select_limit_offset, - ACTIONS(1948), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68689] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1161), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1492), 1, - sym__select_limit_offset, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68724] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1282), 1, - sym__select_limit_offset, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, + ACTIONS(455), 11, + aux_sym_update_statement_token2, aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68753] = 2, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [69835] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 11, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1207), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1519), 1, + sym__select_limit_offset, + ACTIONS(1799), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(172), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -77506,208 +78818,220 @@ 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, - [68770] = 4, + [69887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, - anon_sym_COMMA, - STATE(1123), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2155), 9, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1453), 1, + sym_with_query, + STATE(2065), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [69916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [69933] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1308), 1, + sym__select_limit_offset, + STATE(1358), 1, + sym_into, + ACTIONS(2270), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_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, - [68791] = 11, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69962] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1344), 1, + sym_into, + STATE(1377), 1, + sym__select_limit_offset, + ACTIONS(2189), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [69991] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, aux_sym_conflict_target_token1, - ACTIONS(2159), 1, + ACTIONS(2175), 1, aux_sym_create_index_statement_token1, - ACTIONS(2163), 1, + ACTIONS(2179), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(2165), 1, + ACTIONS(2181), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(2167), 1, + ACTIONS(2183), 1, aux_sym_table_constraint_ty_token4, - ACTIONS(2171), 1, + ACTIONS(2187), 1, sym__identifier, - STATE(1381), 1, + STATE(1316), 1, sym_identifier, - STATE(1383), 1, + STATE(1446), 1, sym_table_constraint_ty, - STATE(1775), 1, + STATE(1885), 1, sym_create_table_item, - STATE(1942), 2, + STATE(1910), 2, sym_table_constraint, sym_table_column_item, - [68826] = 8, + [70026] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1327), 1, - sym__select_limit_offset, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1286), 1, - sym__select_limit_offset, - STATE(1312), 1, - sym_into, - ACTIONS(1948), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68884] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(1176), 1, + STATE(1197), 1, sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1301), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1344), 1, sym_into, - STATE(1435), 1, + STATE(1524), 1, sym__select_limit_offset, - ACTIONS(2136), 2, + ACTIONS(2189), 2, anon_sym_SEMI, anon_sym_RPAREN, - [68919] = 8, + [70061] = 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(1499), 1, - sym_with_query, - STATE(2237), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [68948] = 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(1499), 1, - sym_with_query, - STATE(2151), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [68977] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1288), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1309), 1, sym__select_limit_offset, - STATE(1334), 1, + STATE(1317), 1, sym_into, - ACTIONS(2076), 5, + ACTIONS(2049), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [69006] = 11, + [70090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(227), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + ACTIONS(1880), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [70111] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1171), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1427), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1343), 1, sym__select_limit_offset, - ACTIONS(1757), 2, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, anon_sym_SEMI, anon_sym_RPAREN, - [69041] = 4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [70140] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1307), 1, + sym__select_limit_offset, + STATE(1322), 1, + sym_into, + ACTIONS(1978), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [70169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, anon_sym_COMMA, - STATE(1123), 1, + STATE(1118), 1, aux_sym_update_statement_repeat2, - ACTIONS(2119), 9, + ACTIONS(2191), 9, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -77717,327 +79041,572 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [69062] = 12, + [70190] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1895), 1, - aux_sym_update_statement_token2, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - STATE(1163), 1, - sym_as, - STATE(1191), 1, - sym__list_of_identifiers, - STATE(1210), 1, - sym_insert_items, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [69099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2191), 1, - aux_sym_insert_statement_token2, - ACTIONS(2195), 1, - aux_sym_index_using_token1, - ACTIONS(2197), 1, - aux_sym_where_filter_token1, - ACTIONS(2263), 1, - aux_sym_returning_token1, - STATE(1167), 1, - sym_identifier, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, STATE(1268), 1, - sym_delete_using, - STATE(1390), 1, - sym_where_filter, - STATE(1957), 1, - sym_into, - ACTIONS(2261), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69134] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, sym_select_offset, - STATE(1291), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1321), 1, sym__select_limit_offset, - STATE(1301), 1, + STATE(1340), 1, sym_into, - ACTIONS(2136), 5, + ACTIONS(1801), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [69163] = 8, + [70219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1278), 1, - sym_into, - STATE(1293), 1, - sym__select_limit_offset, - ACTIONS(2265), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [69192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(164), 11, - anon_sym_SEMI, + ACTIONS(2272), 1, anon_sym_COMMA, + STATE(1138), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2162), 9, + anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_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, - [69209] = 9, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [70240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1185), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1571), 1, + sym__select_limit_offset, + ACTIONS(1978), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70275] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1208), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1544), 1, + sym__select_limit_offset, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70310] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2275), 1, aux_sym_drop_type_statement_token1, - ACTIONS(2237), 1, + ACTIONS(2277), 1, aux_sym_update_statement_token3, - ACTIONS(2239), 1, + ACTIONS(2279), 1, aux_sym_alter_table_statement_token1, - ACTIONS(2241), 1, + ACTIONS(2281), 1, aux_sym_alter_table_action_token1, - ACTIONS(2243), 1, + ACTIONS(2283), 1, aux_sym_alter_table_rename_column_token1, - STATE(1738), 1, + STATE(1704), 1, sym_alter_table_action, - STATE(2284), 1, + STATE(2199), 1, sym_alter_table_change, - STATE(2288), 4, + STATE(2050), 4, sym_alter_table_rename_column, sym_alter_table_rename_constraint, sym_alter_table_rename_table, sym_alter_table_change_schema, - [69240] = 4, + [70341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1453), 1, + sym_with_query, + STATE(2376), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [70370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1453), 1, + sym_with_query, + STATE(2261), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [70399] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1206), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70434] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1453), 1, + sym_with_query, + STATE(2220), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [70463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 11, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1114), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2151), 9, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [70480] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1312), 1, + sym__select_limit_offset, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [70509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [70526] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2221), 1, + aux_sym_insert_statement_token2, + ACTIONS(2225), 1, + aux_sym_index_using_token1, + ACTIONS(2227), 1, + aux_sym_where_filter_token1, + ACTIONS(2291), 1, + aux_sym_returning_token1, + STATE(1199), 1, + sym_identifier, + STATE(1291), 1, + sym_delete_using, + STATE(1425), 1, + sym_where_filter, + STATE(1802), 1, + sym_into, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70561] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1352), 1, + sym__select_limit_offset, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [70590] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1201), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1552), 1, + sym__select_limit_offset, + ACTIONS(2049), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2293), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_conflict_target_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + [70642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2295), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [70659] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1313), 1, + sym__select_limit_offset, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [70688] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2275), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2277), 1, + aux_sym_update_statement_token3, + ACTIONS(2279), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2281), 1, + aux_sym_alter_table_action_token1, + ACTIONS(2283), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1704), 1, + sym_alter_table_action, + STATE(2046), 1, + sym_alter_table_change, + STATE(2050), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [70719] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(1906), 1, + aux_sym_update_statement_token2, + ACTIONS(2259), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, + aux_sym_insert_items_token1, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + STATE(1191), 1, + sym_as, + STATE(1225), 1, + sym__list_of_identifiers, + STATE(1234), 1, + sym_insert_items, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [70756] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1193), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1531), 1, + sym__select_limit_offset, + ACTIONS(1801), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70791] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2221), 1, + aux_sym_insert_statement_token2, + ACTIONS(2223), 1, + aux_sym_returning_token1, + ACTIONS(2225), 1, + aux_sym_index_using_token1, + ACTIONS(2227), 1, + aux_sym_where_filter_token1, + STATE(1198), 1, + sym_identifier, + STATE(1272), 1, + sym_delete_using, + STATE(1387), 1, + sym_where_filter, + STATE(1877), 1, + sym_into, + ACTIONS(2217), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [70826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2297), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2162), 8, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [69261] = 9, + [70846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(274), 1, - aux_sym__type_repeat1, - STATE(1962), 1, - sym__type, - ACTIONS(81), 2, + ACTIONS(2300), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [70862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [70878] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(2049), 1, + aux_sym_for_statement_token2, + STATE(1252), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1587), 1, + sym__select_limit_offset, + [70912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [70928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(593), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(200), 2, - sym_predefined_types, - sym_identifier, - [69292] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + STATE(1159), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2154), 8, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1175), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69327] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1173), 1, - sym_select_order_by, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1454), 1, - sym__select_limit_offset, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69362] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2191), 1, - aux_sym_insert_statement_token2, - ACTIONS(2193), 1, - aux_sym_returning_token1, - ACTIONS(2195), 1, - aux_sym_index_using_token1, - ACTIONS(2197), 1, aux_sym_where_filter_token1, - STATE(1166), 1, - sym_identifier, - STATE(1261), 1, - sym_delete_using, - STATE(1355), 1, - sym_where_filter, - STATE(1839), 1, - sym_into, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69397] = 11, + [70948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1221), 1, - sym_select_order_by, - STATE(1333), 1, - sym_into, - STATE(1719), 1, - sym__select_limit_offset, - [69431] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1224), 1, - sym_select_order_by, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [69465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 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, - [69481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 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, - [69497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 1, + ACTIONS(2310), 1, anon_sym_COMMA, - STATE(1158), 1, + STATE(1171), 1, aux_sym_select_order_by_repeat1, - ACTIONS(2271), 8, + ACTIONS(2308), 8, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -78046,33 +79615,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [69517] = 7, + [70968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2279), 1, + ACTIONS(2316), 1, aux_sym_grant_privileges_token1, - STATE(1554), 1, + STATE(1709), 1, sym_identifier, - STATE(2329), 1, + STATE(2075), 1, sym_grant_targets, - ACTIONS(2275), 3, + ACTIONS(2312), 3, aux_sym_drop_function_statement_token1, aux_sym_grant_targets_token6, aux_sym_grant_targets_token7, - ACTIONS(2277), 3, + ACTIONS(2314), 3, aux_sym_create_table_statement_token1, aux_sym_create_schema_statement_token1, aux_sym_grant_targets_token5, - [69543] = 4, + [70994] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1237), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [71028] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1262), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1586), 1, + sym__select_limit_offset, + [71062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2318), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [71078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [71094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 1, anon_sym_COMMA, - STATE(1147), 1, + STATE(1182), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(2322), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [71114] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2306), 1, + anon_sym_COMMA, + STATE(1164), 1, aux_sym_update_statement_repeat2, - ACTIONS(2155), 8, + ACTIONS(2191), 8, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -78081,26 +79740,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, - [69563] = 4, + [71134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_COMMA, - STATE(1141), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2151), 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, - [69583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 10, + ACTIONS(2324), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -78111,47 +79754,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [69599] = 2, + [71150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 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, - [69615] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1771), 1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1216), 1, + ACTIONS(1978), 1, + aux_sym_for_statement_token2, + STATE(1218), 1, sym_select_order_by, - STATE(1308), 1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, sym_into, - STATE(1753), 1, + STATE(1590), 1, sym__select_limit_offset, - [69649] = 2, + [71184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 10, + ACTIONS(2326), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -78162,229 +79791,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [69665] = 4, + [71200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, - anon_sym_COMMA, - STATE(1147), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2119), 8, + ACTIONS(2328), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [71216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2330), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [71232] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, + ACTIONS(1795), 1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [69685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2292), 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, - [69701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 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, - [69717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2296), 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, - [69733] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, + ACTIONS(2189), 1, aux_sym_for_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1239), 1, + STATE(1230), 1, sym_select_order_by, - STATE(1289), 1, - sym_into, - STATE(1741), 1, - sym__select_limit_offset, - [69767] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(2136), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1212), 1, - sym_select_order_by, - STATE(1301), 1, - sym_into, - STATE(1712), 1, - sym__select_limit_offset, - [69801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 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, - [69817] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, + STATE(1269), 1, sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1228), 1, - sym_select_order_by, - STATE(1287), 1, - sym_into, - STATE(1730), 1, - sym__select_limit_offset, - [69851] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(2076), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1215), 1, - sym_select_order_by, - STATE(1334), 1, + STATE(1344), 1, sym_into, STATE(1714), 1, sym__select_limit_offset, - [69885] = 4, + [71266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_COMMA, - STATE(1139), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2300), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [69905] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1771), 1, - aux_sym_select_order_by_token1, - ACTIONS(1948), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1312), 1, - sym_into, - STATE(1716), 1, - sym__select_limit_offset, - [69939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_COMMA, - STATE(1158), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2302), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [69959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2307), 10, + ACTIONS(2332), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -78395,611 +79856,1566 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [69975] = 9, + [71282] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2313), 1, - aux_sym_update_statement_token4, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - STATE(1185), 1, - aux_sym_update_statement_repeat1, - STATE(1439), 1, - sym_where_filter, - STATE(1933), 1, - sym_returning, - ACTIONS(2309), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70004] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1312), 1, - sym_into, - STATE(1437), 1, - sym__select_limit_offset, - ACTIONS(1948), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70033] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2321), 1, - aux_sym_update_statement_token4, - STATE(1251), 1, - aux_sym_update_statement_repeat1, - STATE(1479), 1, - sym_where_filter, - STATE(1762), 1, - sym_returning, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70062] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - STATE(1213), 1, - sym__list_of_identifiers, - STATE(1231), 1, - sym_insert_items, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [70093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1801), 1, aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [70108] = 7, + STATE(1266), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [71316] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2323), 1, + ACTIONS(2334), 1, aux_sym_create_table_statement_token1, - ACTIONS(2325), 1, + ACTIONS(2336), 1, aux_sym_return_setof_token1, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - STATE(9), 2, - sym_predefined_types, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + STATE(19), 2, + sym_predefined_type, sym_identifier, - STATE(2021), 3, + STATE(2124), 3, sym_return_setof, sym_return_table, sym__type, - [70133] = 9, + [71344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, + ACTIONS(2344), 1, + anon_sym_COMMA, + STATE(1182), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(2342), 8, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - ACTIONS(2329), 1, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - ACTIONS(2331), 1, - aux_sym_index_using_token1, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [71364] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1244), 1, + sym_select_order_by, STATE(1268), 1, - sym_delete_using, - STATE(1390), 1, - sym_where_filter, - STATE(1957), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, sym_into, - ACTIONS(2261), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70162] = 9, + STATE(1595), 1, + sym__select_limit_offset, + [71398] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - ACTIONS(2331), 1, - aux_sym_index_using_token1, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2337), 1, - aux_sym_returning_token1, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1795), 1, + aux_sym_select_order_by_token1, STATE(1245), 1, + sym_select_order_by, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1609), 1, + sym__select_limit_offset, + [71432] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1552), 1, + sym__select_limit_offset, + ACTIONS(2049), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71461] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1571), 1, + sym__select_limit_offset, + ACTIONS(1978), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71490] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2347), 1, + aux_sym_returning_token1, + ACTIONS(2349), 1, + aux_sym_index_using_token1, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + STATE(1272), 1, sym_delete_using, - STATE(1403), 1, + STATE(1387), 1, sym_where_filter, - STATE(1844), 1, + STATE(1877), 1, sym_into, - ACTIONS(2335), 2, + ACTIONS(2217), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70191] = 9, + [71519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(2355), 1, anon_sym_COMMA, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2341), 1, + ACTIONS(2357), 1, aux_sym_update_statement_token4, - STATE(1179), 1, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + STATE(1192), 1, aux_sym_update_statement_repeat1, - STATE(1537), 1, + STATE(1523), 1, sym_where_filter, - STATE(1884), 1, + STATE(1927), 1, sym_returning, - ACTIONS(2339), 2, + ACTIONS(2353), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70220] = 9, + [71548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(2355), 1, anon_sym_COMMA, - ACTIONS(2315), 1, + ACTIONS(2359), 1, aux_sym_returning_token1, - ACTIONS(2317), 1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - ACTIONS(2341), 1, + ACTIONS(2365), 1, aux_sym_update_statement_token4, - STATE(1251), 1, + STATE(1281), 1, aux_sym_update_statement_repeat1, - STATE(1537), 1, + STATE(1574), 1, sym_where_filter, - STATE(1884), 1, + STATE(1816), 1, sym_returning, - ACTIONS(2339), 2, + ACTIONS(2363), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70249] = 9, + [71577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(2355), 1, anon_sym_COMMA, - ACTIONS(2315), 1, + ACTIONS(2359), 1, aux_sym_returning_token1, - ACTIONS(2317), 1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - ACTIONS(2345), 1, + ACTIONS(2369), 1, aux_sym_update_statement_token4, - STATE(1162), 1, + STATE(1189), 1, aux_sym_update_statement_repeat1, - STATE(1522), 1, + STATE(1562), 1, sym_where_filter, - STATE(1799), 1, + STATE(1945), 1, sym_returning, - ACTIONS(2343), 2, + ACTIONS(2367), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70278] = 9, + [71606] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1545), 1, - sym__select_limit_offset, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70307] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1334), 1, - sym_into, - STATE(1538), 1, - sym__select_limit_offset, - ACTIONS(2076), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70336] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1492), 1, - sym__select_limit_offset, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70365] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2259), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, aux_sym_insert_items_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(1048), 1, - sym_column_constraint_ty, - STATE(1088), 1, - sym_constraint_foreign_key, - ACTIONS(2056), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - [70394] = 9, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + STATE(1219), 1, + sym__list_of_identifiers, + STATE(1220), 1, + sym_insert_items, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [71637] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1427), 1, - sym__select_limit_offset, - ACTIONS(1757), 2, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2373), 1, + aux_sym_update_statement_token4, + STATE(1281), 1, + aux_sym_update_statement_repeat1, + STATE(1534), 1, + sym_where_filter, + STATE(1834), 1, + sym_returning, + ACTIONS(2371), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70423] = 9, + [71666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1278), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1348), 1, + sym_into, + STATE(1544), 1, + sym__select_limit_offset, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [71710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2369), 1, + aux_sym_update_statement_token4, + STATE(1281), 1, + aux_sym_update_statement_repeat1, + STATE(1562), 1, + sym_where_filter, + STATE(1945), 1, + sym_returning, + ACTIONS(2367), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2259), 1, + anon_sym_LPAREN, + ACTIONS(2261), 1, + aux_sym_insert_items_token1, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + STATE(1216), 1, + sym_insert_items, + STATE(1217), 1, + sym__list_of_identifiers, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [71770] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1358), 1, + sym_into, + STATE(1505), 1, + sym__select_limit_offset, + ACTIONS(2270), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71799] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2349), 1, + aux_sym_index_using_token1, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2377), 1, + aux_sym_returning_token1, + STATE(1291), 1, + sym_delete_using, + STATE(1425), 1, + sym_where_filter, + STATE(1802), 1, + sym_into, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71828] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2349), 1, + aux_sym_index_using_token1, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2381), 1, + aux_sym_returning_token1, + STATE(1290), 1, + sym_delete_using, + STATE(1389), 1, + sym_where_filter, + STATE(1779), 1, + sym_into, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71857] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2373), 1, + aux_sym_update_statement_token4, + STATE(1203), 1, + aux_sym_update_statement_repeat1, + STATE(1534), 1, + sym_where_filter, + STATE(1834), 1, + sym_returning, + ACTIONS(2371), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71886] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1344), 1, sym_into, STATE(1524), 1, sym__select_limit_offset, - ACTIONS(2265), 2, + ACTIONS(2189), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70452] = 9, + [71915] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2385), 1, + aux_sym_update_statement_token4, + STATE(1195), 1, + aux_sym_update_statement_repeat1, + STATE(1545), 1, + sym_where_filter, + STATE(1846), 1, + sym_returning, + ACTIONS(2383), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71944] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2385), 1, + aux_sym_update_statement_token4, + STATE(1281), 1, + aux_sym_update_statement_repeat1, + STATE(1545), 1, + sym_where_filter, + STATE(1846), 1, + sym_returning, + ACTIONS(2383), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [71973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - ACTIONS(2331), 1, - aux_sym_index_using_token1, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2347), 1, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - STATE(1261), 1, - sym_delete_using, - STATE(1355), 1, - sym_where_filter, - STATE(1839), 1, - sym_into, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70481] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2321), 1, - aux_sym_update_statement_token4, - STATE(1169), 1, - aux_sym_update_statement_repeat1, - STATE(1479), 1, - sym_where_filter, - STATE(1762), 1, - sym_returning, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70510] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2351), 1, - aux_sym_update_statement_token4, - STATE(1251), 1, - aux_sym_update_statement_repeat1, - STATE(1433), 1, - sym_where_filter, - STATE(1806), 1, - sym_returning, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70539] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - STATE(1232), 1, - sym_insert_items, - STATE(1233), 1, - sym__list_of_identifiers, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [70570] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + aux_sym_for_statement_token2, aux_sym_select_limit_token1, - ACTIONS(1769), 1, aux_sym_select_offset_token1, - ACTIONS(1860), 1, + [71988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 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, + [72003] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, sym_select_offset, - STATE(1308), 1, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, sym_into, STATE(1519), 1, sym__select_limit_offset, - ACTIONS(711), 2, + ACTIONS(1799), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70599] = 9, + [72032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - ACTIONS(1769), 1, + ACTIONS(1793), 1, aux_sym_select_offset_token1, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, + STATE(1268), 1, sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1454), 1, - sym__select_limit_offset, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 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, - [70643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 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, - [70658] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2345), 1, - aux_sym_update_statement_token4, - STATE(1251), 1, - aux_sym_update_statement_repeat1, - STATE(1522), 1, - sym_where_filter, - STATE(1799), 1, - sym_returning, - ACTIONS(2343), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70687] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1189), 1, + STATE(1269), 1, sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1301), 1, + STATE(1340), 1, sym_into, - STATE(1435), 1, + STATE(1531), 1, sym__select_limit_offset, - ACTIONS(2136), 2, + ACTIONS(1801), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70716] = 7, + [72061] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1560), 1, + sym__select_limit_offset, + ACTIONS(1888), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72090] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + aux_sym_insert_items_token1, + ACTIONS(2059), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2061), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2063), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2065), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1077), 1, + sym_column_constraint_ty, + STATE(1092), 1, + sym_constraint_foreign_key, + ACTIONS(2057), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + [72119] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1495), 1, + sym__select_limit_offset, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1240), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [70740] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, aux_sym_returning_token1, - STATE(1317), 1, - sym_insert_conflict, - STATE(1463), 1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_update_statement_repeat2, + STATE(1562), 1, + sym_where_filter, + STATE(1945), 1, sym_returning, - STATE(1915), 1, - sym_into, - ACTIONS(2361), 2, + ACTIONS(2367), 2, anon_sym_SEMI, anon_sym_RPAREN, - [70766] = 4, + [72174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1332), 1, - sym_select_offset, - ACTIONS(2367), 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, - [70784] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, + ACTIONS(2391), 1, anon_sym_LPAREN, - ACTIONS(2369), 1, + ACTIONS(2393), 1, sym__identifier, - STATE(858), 1, + STATE(985), 1, sym_identifier, - STATE(868), 1, + STATE(1006), 1, sym_function_call, - STATE(1056), 1, + STATE(1228), 1, sym_from_item, - STATE(865), 3, + STATE(1019), 3, sym_from_select, sym_from_table, sym_from_function, - [70808] = 9, + [72198] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2395), 1, + sym__identifier, + STATE(903), 1, + sym_from_item, + STATE(976), 1, + sym_identifier, + STATE(979), 1, + sym_function_call, + STATE(982), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72222] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1324), 1, + sym_insert_conflict, + STATE(1542), 1, + sym_returning, + STATE(1809), 1, + sym_into, + ACTIONS(2397), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72248] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym__identifier, + STATE(903), 1, + sym_from_item, + STATE(927), 1, + sym_identifier, + STATE(938), 1, + sym_function_call, + STATE(941), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72272] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1354), 1, + sym_insert_conflict, + STATE(1557), 1, + sym_returning, + STATE(1968), 1, + sym_into, + ACTIONS(2405), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72298] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(2229), 1, + ACTIONS(2261), 1, aux_sym_insert_items_token1, - ACTIONS(2231), 1, + ACTIONS(2263), 1, aux_sym_insert_items_token2, - ACTIONS(2233), 1, + ACTIONS(2265), 1, aux_sym_select_statement_token1, - ACTIONS(2371), 1, + ACTIONS(2407), 1, anon_sym_LPAREN, - STATE(1188), 1, + STATE(1240), 1, sym_insert_items, - STATE(1424), 1, + STATE(1405), 1, sym_select_statement, - STATE(2153), 1, + STATE(2230), 1, sym_with_query, - [70836] = 3, + [72326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(2049), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1317), 1, + sym_into, + STATE(1587), 1, + sym__select_limit_offset, + [72354] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2261), 1, + aux_sym_insert_items_token1, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(1250), 1, + sym_insert_items, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [72382] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1323), 1, + sym_insert_conflict, + STATE(1541), 1, + sym_returning, + STATE(1812), 1, + sym_into, + ACTIONS(2409), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2413), 1, + anon_sym_COMMA, + STATE(1251), 1, + aux_sym_update_statement_repeat1, + STATE(1500), 1, + sym_where_filter, + ACTIONS(2411), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [72430] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + ACTIONS(2415), 1, + anon_sym_RPAREN, + STATE(225), 1, + sym_predefined_type, + STATE(1114), 1, + sym_identifier, + STATE(1751), 2, + sym_var_declaration, + sym__type, + [72456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1239), 1, + sym_from_item, + STATE(1019), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72480] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym__identifier, + STATE(927), 1, + sym_identifier, + STATE(938), 1, + sym_function_call, + STATE(1172), 1, + sym_from_item, + STATE(952), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72504] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2261), 1, + aux_sym_insert_items_token1, + ACTIONS(2263), 1, + aux_sym_insert_items_token2, + ACTIONS(2265), 1, + aux_sym_select_statement_token1, + ACTIONS(2407), 1, + anon_sym_LPAREN, + STATE(1214), 1, + sym_insert_items, + STATE(1405), 1, + sym_select_statement, + STATE(2230), 1, + sym_with_query, + [72532] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1346), 1, + sym_into, + STATE(1609), 1, + sym__select_limit_offset, + [72560] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1238), 1, + sym_from_item, + STATE(1019), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72584] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym_update_statement_repeat2, + STATE(1562), 1, + sym_where_filter, + STATE(1945), 1, + sym_returning, + ACTIONS(2367), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72610] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + sym__identifier, + STATE(903), 1, + sym_from_item, + STATE(906), 1, + sym_identifier, + STATE(916), 1, + sym_function_call, + STATE(920), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(2270), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1358), 1, + sym_into, + STATE(1584), 1, + sym__select_limit_offset, + [72662] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_update_statement_repeat2, + STATE(1574), 1, + sym_where_filter, + STATE(1816), 1, + sym_returning, + ACTIONS(2363), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72688] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(1059), 1, + sym_identifier, + STATE(1102), 1, + sym_function_call, + STATE(1598), 1, + sym_from_item, + STATE(1105), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72712] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + ACTIONS(2421), 1, + anon_sym_RPAREN, + STATE(225), 1, + sym_predefined_type, + STATE(1114), 1, + sym_identifier, + STATE(1718), 2, + sym_var_declaration, + sym__type, + [72738] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1337), 1, + sym_insert_conflict, + STATE(1527), 1, + sym_returning, + STATE(1890), 1, + sym_into, + ACTIONS(2423), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72764] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1258), 1, + sym_from_item, + STATE(1019), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72788] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + sym__identifier, + STATE(906), 1, + sym_identifier, + STATE(916), 1, + sym_function_call, + STATE(1084), 1, + sym_from_item, + STATE(931), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72812] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1340), 1, + sym_into, + STATE(1589), 1, + sym__select_limit_offset, + [72840] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_update_statement_repeat2, + STATE(1521), 1, + sym_where_filter, + STATE(1931), 1, + sym_returning, + ACTIONS(2425), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72866] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_update_statement_repeat2, + STATE(1574), 1, + sym_where_filter, + STATE(1816), 1, + sym_returning, + ACTIONS(2363), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72892] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1320), 1, + sym_insert_conflict, + STATE(1573), 1, + sym_returning, + STATE(1818), 1, + sym_into, + ACTIONS(2427), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72918] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1084), 1, + sym_from_item, + STATE(1019), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [72942] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_update_statement_repeat2, + STATE(1496), 1, + sym_where_filter, + STATE(1953), 1, + sym_returning, + ACTIONS(2429), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [72968] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 1, + aux_sym_trigger_scope_token1, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2437), 1, + aux_sym_trigger_cond_token1, + STATE(1566), 1, + sym_trigger_scope, + STATE(1896), 1, + sym_trigger_cond, + STATE(2160), 1, + sym_trigger_exec, + ACTIONS(2431), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [72994] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1978), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1322), 1, + sym_into, + STATE(1590), 1, + sym__select_limit_offset, + [73022] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1368), 1, + sym_into, + STATE(1603), 1, + sym__select_limit_offset, + [73050] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2395), 1, + sym__identifier, + STATE(976), 1, + sym_identifier, + STATE(979), 1, + sym_function_call, + STATE(1084), 1, + sym_from_item, + STATE(980), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_update_statement_repeat2, + STATE(1521), 1, + sym_where_filter, + STATE(1931), 1, + sym_returning, + ACTIONS(2425), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73100] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2417), 1, + sym__identifier, + STATE(906), 1, + sym_identifier, + STATE(916), 1, + sym_function_call, + STATE(1136), 1, + sym_from_item, + STATE(931), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73124] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(1059), 1, + sym_identifier, + STATE(1102), 1, + sym_function_call, + STATE(1741), 1, + sym_from_item, + STATE(1105), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73148] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2399), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1330), 1, + sym_insert_conflict, + STATE(1558), 1, + sym_returning, + STATE(1980), 1, + sym_into, + ACTIONS(2439), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2413), 1, + anon_sym_COMMA, + STATE(1292), 1, + aux_sym_update_statement_repeat1, + STATE(1492), 1, + sym_where_filter, + ACTIONS(2441), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [73196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(2189), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1344), 1, + sym_into, + STATE(1714), 1, + sym__select_limit_offset, + [73224] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym__identifier, + STATE(927), 1, + sym_identifier, + STATE(938), 1, + sym_function_call, + STATE(1084), 1, + sym_from_item, + STATE(952), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73248] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1211), 1, + aux_sym_update_statement_repeat2, + STATE(1545), 1, + sym_where_filter, + STATE(1846), 1, + sym_returning, + ACTIONS(2383), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73274] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2419), 1, + sym__identifier, + STATE(903), 1, + sym_from_item, + STATE(1059), 1, + sym_identifier, + STATE(1102), 1, + sym_function_call, + STATE(1110), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73298] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 1, + aux_sym_trigger_scope_token1, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2437), 1, + aux_sym_trigger_cond_token1, + STATE(1575), 1, + sym_trigger_scope, + STATE(1787), 1, + sym_trigger_cond, + STATE(2366), 1, + sym_trigger_exec, + ACTIONS(2431), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [73324] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1254), 1, + sym_from_item, + STATE(1019), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73348] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2389), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_update_statement_repeat2, + STATE(1547), 1, + sym_where_filter, + STATE(1862), 1, + sym_returning, + ACTIONS(2443), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73374] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + sym__identifier, + STATE(881), 1, + sym_identifier, + STATE(883), 1, + sym_function_call, + STATE(903), 1, + sym_from_item, + STATE(892), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73398] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + sym__identifier, + STATE(881), 1, + sym_identifier, + STATE(883), 1, + sym_function_call, + STATE(1067), 1, + sym_from_item, + STATE(891), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73422] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + sym__identifier, + STATE(881), 1, + sym_identifier, + STATE(883), 1, + sym_function_call, + STATE(1084), 1, + sym_from_item, + STATE(891), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, + sym_select_limit, + STATE(1371), 1, + sym_into, + STATE(1595), 1, + sym__select_limit_offset, + [73474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 3, + aux_sym_predefined_type_token1, + aux_sym_predefined_type_token2, + sym__identifier, + ACTIONS(29), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [73490] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2395), 1, + sym__identifier, + STATE(976), 1, + sym_identifier, + STATE(979), 1, + sym_function_call, + STATE(1275), 1, + sym_from_item, + STATE(980), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 2, @@ -79012,1261 +81428,227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_index_using_token1, aux_sym_where_filter_token1, sym__identifier, - [70852] = 4, + [73530] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1791), 1, aux_sym_select_limit_token1, - STATE(1332), 1, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1268), 1, + sym_select_offset, + STATE(1269), 1, sym_select_limit, - ACTIONS(2367), 6, + STATE(1348), 1, + sym_into, + STATE(1586), 1, + sym__select_limit_offset, + [73558] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + sym__identifier, + STATE(903), 1, + sym_from_item, + STATE(985), 1, + sym_identifier, + STATE(1006), 1, + sym_function_call, + STATE(1020), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + aux_sym_select_limit_token1, + STATE(1338), 1, + sym_select_limit, + ACTIONS(2447), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [70870] = 7, + [73600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2373), 1, - sym__identifier, - STATE(1052), 1, - sym_identifier, - STATE(1087), 1, - sym_function_call, - STATE(1575), 1, - sym_from_item, - STATE(1086), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [70894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2381), 1, - aux_sym_trigger_cond_token1, - STATE(1451), 1, - sym_trigger_scope, - STATE(1824), 1, - sym_trigger_cond, - STATE(2208), 1, - sym_trigger_exec, - ACTIONS(2375), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [70920] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2385), 1, - anon_sym_COMMA, - STATE(1204), 1, - aux_sym_update_statement_repeat1, - STATE(1521), 1, - sym_where_filter, - ACTIONS(2383), 4, + ACTIONS(1793), 1, + aux_sym_select_offset_token1, + STATE(1338), 1, + sym_select_offset, + ACTIONS(2447), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [70942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2387), 1, - sym__identifier, - STATE(954), 1, - sym_identifier, - STATE(967), 1, - sym_function_call, - STATE(1032), 1, - sym_from_item, - STATE(957), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [70966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2389), 1, - sym__identifier, - STATE(908), 1, - sym_identifier, - STATE(914), 1, - sym_function_call, - STATE(1032), 1, - sym_from_item, - STATE(929), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [70990] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2387), 1, - sym__identifier, - STATE(878), 1, - sym_from_item, - STATE(954), 1, - sym_identifier, - STATE(967), 1, - sym_function_call, - STATE(958), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71014] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, aux_sym_returning_token1, - STATE(1330), 1, - sym_insert_conflict, - STATE(1476), 1, - sym_returning, - STATE(1828), 1, - sym_into, - ACTIONS(2391), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71040] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2389), 1, - sym__identifier, - STATE(908), 1, - sym_identifier, - STATE(914), 1, - sym_function_call, - STATE(1142), 1, - sym_from_item, - STATE(929), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71064] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1211), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71088] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - STATE(1433), 1, - sym_where_filter, - STATE(1806), 1, - sym_returning, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71114] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2385), 1, - anon_sym_COMMA, - STATE(1270), 1, - aux_sym_update_statement_repeat1, - STATE(1544), 1, - sym_where_filter, - ACTIONS(2395), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [71136] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - STATE(1456), 1, - sym_where_filter, - STATE(1755), 1, - sym_returning, - ACTIONS(2397), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71162] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2373), 1, - sym__identifier, - STATE(1052), 1, - sym_identifier, - STATE(1087), 1, - sym_function_call, - STATE(1568), 1, - sym_from_item, - STATE(1086), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71186] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1308), 1, - sym_into, - STATE(1753), 1, - sym__select_limit_offset, - [71214] = 8, + [73618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - STATE(1551), 1, - sym_where_filter, - STATE(1939), 1, - sym_returning, - ACTIONS(2399), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71240] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1205), 1, - aux_sym_update_statement_repeat2, - STATE(1551), 1, - sym_where_filter, - STATE(1939), 1, - sym_returning, - ACTIONS(2399), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71266] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1337), 1, - sym_insert_conflict, - STATE(1490), 1, - sym_returning, - STATE(1882), 1, - sym_into, - ACTIONS(2401), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71292] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1214), 1, - aux_sym_update_statement_repeat2, - STATE(1456), 1, - sym_where_filter, - STATE(1755), 1, - sym_returning, - ACTIONS(2397), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71318] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(2265), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1278), 1, - sym_into, - STATE(1711), 1, - sym__select_limit_offset, - [71346] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - ACTIONS(2371), 1, + ACTIONS(2391), 1, anon_sym_LPAREN, - STATE(1200), 1, - sym_insert_items, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [71374] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - STATE(1550), 1, - sym_where_filter, - STATE(1918), 1, - sym_returning, - ACTIONS(2403), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71400] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(2136), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1301), 1, - sym_into, - STATE(1712), 1, - sym__select_limit_offset, - [71428] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1289), 1, - sym_into, - STATE(1741), 1, - sym__select_limit_offset, - [71456] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(2076), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1334), 1, - sym_into, - STATE(1714), 1, - sym__select_limit_offset, - [71484] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2405), 1, - sym__identifier, - STATE(878), 1, - sym_from_item, - STATE(892), 1, - sym_identifier, - STATE(907), 1, - sym_function_call, - STATE(896), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71508] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2381), 1, - aux_sym_trigger_cond_token1, - STATE(1539), 1, - sym_trigger_scope, - STATE(1769), 1, - sym_trigger_cond, - STATE(2328), 1, - sym_trigger_exec, - ACTIONS(2375), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [71534] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2369), 1, - sym__identifier, - STATE(858), 1, - sym_identifier, - STATE(868), 1, - sym_function_call, - STATE(878), 1, - sym_from_item, - STATE(861), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71558] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1948), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1312), 1, - sym_into, - STATE(1716), 1, - sym__select_limit_offset, - [71586] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(878), 1, - sym_from_item, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1002), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71610] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2369), 1, - sym__identifier, - STATE(858), 1, - sym_identifier, - STATE(868), 1, - sym_function_call, - STATE(1032), 1, - sym_from_item, - STATE(865), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71634] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1333), 1, - sym_into, - STATE(1719), 1, - sym__select_limit_offset, - [71662] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2387), 1, - sym__identifier, - STATE(954), 1, - sym_identifier, - STATE(967), 1, - sym_function_call, - STATE(1260), 1, - sym_from_item, - STATE(957), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71686] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1032), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71710] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1280), 1, - sym_insert_conflict, - STATE(1430), 1, - sym_returning, - STATE(1804), 1, - sym_into, - ACTIONS(2407), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71736] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1303), 1, - sym_into, - STATE(1724), 1, - sym__select_limit_offset, - [71764] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1209), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71788] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2373), 1, - sym__identifier, - STATE(1052), 1, - sym_identifier, - STATE(1087), 1, - sym_function_call, - STATE(1566), 1, - sym_from_item, - STATE(1086), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71812] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1319), 1, - sym_insert_conflict, - STATE(1468), 1, - sym_returning, - STATE(1914), 1, - sym_into, - ACTIONS(2409), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71838] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1318), 1, - sym_insert_conflict, - STATE(1480), 1, - sym_returning, - STATE(1825), 1, - sym_into, - ACTIONS(2411), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71864] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2229), 1, - aux_sym_insert_items_token1, - ACTIONS(2231), 1, - aux_sym_insert_items_token2, - ACTIONS(2233), 1, - aux_sym_select_statement_token1, - ACTIONS(2371), 1, - anon_sym_LPAREN, - STATE(1227), 1, - sym_insert_items, - STATE(1424), 1, - sym_select_statement, - STATE(2153), 1, - sym_with_query, - [71892] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1242), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71916] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2405), 1, - sym__identifier, - STATE(892), 1, - sym_identifier, - STATE(907), 1, - sym_function_call, - STATE(1032), 1, - sym_from_item, - STATE(902), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71940] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - STATE(1537), 1, - sym_where_filter, - STATE(1884), 1, - sym_returning, - ACTIONS(2339), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - STATE(976), 1, - sym_function_call, - STATE(1241), 1, - sym_from_item, - STATE(1001), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [71990] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2373), 1, - sym__identifier, - STATE(878), 1, - sym_from_item, - STATE(1052), 1, - sym_identifier, - STATE(1087), 1, - sym_function_call, - STATE(1089), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72014] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1767), 1, - aux_sym_select_limit_token1, - ACTIONS(1769), 1, - aux_sym_select_offset_token1, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - STATE(1189), 1, - sym_select_limit, - STATE(1193), 1, - sym_select_offset, - STATE(1287), 1, - sym_into, - STATE(1730), 1, - sym__select_limit_offset, - [72042] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1236), 1, - aux_sym_update_statement_repeat2, - STATE(1479), 1, - sym_where_filter, - STATE(1762), 1, - sym_returning, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72068] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym_update_statement_repeat2, - STATE(1537), 1, - sym_where_filter, - STATE(1884), 1, - sym_returning, - ACTIONS(2339), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72094] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_update_statement_repeat2, - STATE(1433), 1, - sym_where_filter, - STATE(1806), 1, - sym_returning, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72120] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2405), 1, - sym__identifier, - STATE(892), 1, - sym_identifier, - STATE(907), 1, - sym_function_call, - STATE(1130), 1, - sym_from_item, - STATE(902), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72144] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_LPAREN, - ACTIONS(2389), 1, - sym__identifier, - STATE(878), 1, - sym_from_item, - STATE(908), 1, - sym_identifier, - STATE(914), 1, - sym_function_call, - STATE(916), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72168] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2415), 1, - aux_sym_returning_token1, - STATE(1420), 1, - sym_where_filter, - STATE(1770), 1, - sym_into, - ACTIONS(2413), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72191] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2419), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2417), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [72208] = 6, + sym__identifier, + STATE(1059), 1, + sym_identifier, + STATE(1102), 1, + sym_function_call, + STATE(1606), 1, + sym_from_item, + STATE(1105), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [73642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_SEMI, - ACTIONS(2424), 1, - aux_sym_function_run_as_token1, - STATE(1667), 1, - sym_function_volatility, - STATE(2034), 1, - sym_function_run_as, - ACTIONS(2426), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [72229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, + ACTIONS(2359), 1, aux_sym_returning_token1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - [72242] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - aux_sym_index_col_nulls_token1, - STATE(1474), 1, - sym_index_col_dir, - STATE(1754), 1, - sym_index_col_nulls, - ACTIONS(2428), 2, + ACTIONS(2389), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2430), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - [72263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, - anon_sym_COMMA, - STATE(1271), 1, + STATE(1361), 1, aux_sym_update_statement_repeat2, - ACTIONS(2434), 5, + STATE(1547), 1, + sym_where_filter, + STATE(1862), 1, + sym_returning, + ACTIONS(2443), 2, anon_sym_SEMI, anon_sym_RPAREN, + [73668] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - aux_sym_returning_token1, + ACTIONS(2351), 1, aux_sym_where_filter_token1, - [72280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_COMMA, - STATE(1251), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2438), 5, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, + ACTIONS(2377), 1, aux_sym_returning_token1, - aux_sym_where_filter_token1, - [72297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 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, - [72310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(862), 7, + STATE(1425), 1, + sym_where_filter, + STATE(1802), 1, + sym_into, + ACTIONS(2289), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_offset_token1, - [72323] = 6, + [73691] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, - aux_sym_index_col_nulls_token1, - STATE(1441), 1, - sym_index_col_dir, - STATE(1797), 1, - sym_index_col_nulls, - ACTIONS(2430), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(2445), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72344] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, ACTIONS(2347), 1, aux_sym_returning_token1, - STATE(1355), 1, - sym_where_filter, - STATE(1839), 1, - sym_into, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - ACTIONS(2447), 1, - anon_sym_RPAREN, - STATE(200), 1, - sym_predefined_types, - STATE(1100), 1, - sym_identifier, - STATE(1690), 2, - sym_var_declaration, - sym__type, - [72390] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2451), 1, - aux_sym_grant_roles_token2, - STATE(1706), 1, - sym_identifier, - STATE(2127), 1, - sym_grant_roles, - ACTIONS(2449), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [72411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 2, - aux_sym_predefined_types_token1, - sym__identifier, - ACTIONS(29), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - [72426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, + ACTIONS(2351), 1, aux_sym_where_filter_token1, - [72439] = 4, + STATE(1387), 1, + sym_where_filter, + STATE(1877), 1, + sym_into, + ACTIONS(2217), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [73714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(2453), 1, + aux_sym_index_col_nulls_token1, + STATE(1555), 1, + sym_index_col_dir, + STATE(1947), 1, + sym_index_col_nulls, + ACTIONS(2449), 2, anon_sym_COMMA, - STATE(1250), 1, + anon_sym_RPAREN, + ACTIONS(2451), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + [73735] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_COMMA, + STATE(1295), 1, aux_sym_update_statement_repeat2, - ACTIONS(2453), 5, + ACTIONS(2455), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [72456] = 7, + [73752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2329), 1, - aux_sym_returning_token1, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - STATE(1390), 1, - sym_where_filter, - STATE(1957), 1, - sym_into, - ACTIONS(2261), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72479] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, - aux_sym_sequence_start_token2, - ACTIONS(283), 1, - aux_sym_select_statement_token1, - ACTIONS(285), 1, + ACTIONS(2187), 1, sym__identifier, - ACTIONS(2455), 1, - anon_sym_RPAREN, - STATE(1737), 1, + STATE(1325), 1, sym_identifier, - STATE(2111), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - [72504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 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, - [72517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 1, - sym__identifier, - STATE(1399), 1, - sym_identifier, - STATE(1787), 1, + STATE(1974), 1, sym_var_declaration, ACTIONS(2459), 2, aux_sym_body_token1, aux_sym_declarations_token1, - STATE(1264), 2, + STATE(1285), 2, sym_var_definition, aux_sym_declarations_repeat1, - [72538] = 2, + [73773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(2461), 1, 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, - [72551] = 6, + ACTIONS(2463), 1, + aux_sym_function_run_as_token1, + STATE(1591), 1, + sym_function_volatility, + STATE(2332), 1, + sym_function_run_as, + ACTIONS(2465), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [73794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2469), 1, sym__identifier, - STATE(1399), 1, + STATE(1325), 1, sym_identifier, - STATE(1787), 1, + STATE(1974), 1, sym_var_declaration, - ACTIONS(2466), 2, + ACTIONS(2467), 2, aux_sym_body_token1, aux_sym_declarations_token1, - STATE(1264), 2, + STATE(1278), 2, sym_var_definition, aux_sym_declarations_repeat1, - [72572] = 7, + [73815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - ACTIONS(2468), 1, - anon_sym_RPAREN, - STATE(200), 1, - sym_predefined_types, - STATE(1100), 1, - sym_identifier, - STATE(1571), 2, - sym_var_declaration, - sym__type, - [72595] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2333), 1, - aux_sym_where_filter_token1, - ACTIONS(2337), 1, - aux_sym_returning_token1, - STATE(1403), 1, - sym_where_filter, - STATE(1844), 1, - sym_into, - ACTIONS(2335), 2, + ACTIONS(2474), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_insert_items_repeat1, + ACTIONS(2472), 5, anon_sym_SEMI, anon_sym_RPAREN, - [72618] = 2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [73832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -80274,64 +81656,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [72631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 1, - anon_sym_COMMA, - STATE(1270), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2438), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [72648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - STATE(1271), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2119), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [72665] = 4, + [73845] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2480), 1, anon_sym_COMMA, - STATE(1246), 1, + STATE(1281), 1, + aux_sym_update_statement_repeat1, + ACTIONS(2478), 5, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [73862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + anon_sym_COMMA, + STATE(1282), 1, aux_sym_insert_items_repeat1, + ACTIONS(2483), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [73879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2488), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [73892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [73905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + STATE(1325), 1, + sym_identifier, + STATE(1974), 1, + sym_var_declaration, + ACTIONS(2490), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1278), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [73926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + [73939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2496), 1, + aux_sym_grant_roles_token2, + STATE(1766), 1, + sym_identifier, + STATE(2359), 1, + sym_grant_roles, + ACTIONS(2494), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [73960] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(225), 1, + sym_predefined_type, + STATE(1114), 1, + sym_identifier, + STATE(1839), 2, + sym_var_declaration, + sym__type, + [73983] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(267), 1, + aux_sym_sequence_start_token2, + ACTIONS(291), 1, + aux_sym_select_statement_token1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2498), 1, + anon_sym_RPAREN, + STATE(1711), 1, + sym_identifier, + STATE(2117), 1, + sym_with_query, + STATE(2172), 1, + sym_select_statement, + [74008] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2502), 1, + aux_sym_returning_token1, + STATE(1438), 1, + sym_where_filter, + STATE(1858), 1, + sym_into, + ACTIONS(2500), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74031] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2351), 1, + aux_sym_where_filter_token1, + ACTIONS(2381), 1, + aux_sym_returning_token1, + STATE(1389), 1, + sym_where_filter, + STATE(1779), 1, + sym_into, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2504), 1, + anon_sym_COMMA, + STATE(1292), 1, + aux_sym_update_statement_repeat1, ACTIONS(2478), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [72682] = 6, + aux_sym_where_filter_token1, + [74071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - sym__identifier, - STATE(1399), 1, - sym_identifier, - STATE(1787), 1, - sym_var_declaration, - ACTIONS(2482), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1266), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [72703] = 2, + ACTIONS(2463), 1, + aux_sym_function_run_as_token1, + ACTIONS(2507), 1, + anon_sym_SEMI, + STATE(1762), 1, + sym_function_volatility, + STATE(2392), 1, + sym_function_run_as, + ACTIONS(2465), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [74092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 7, + ACTIONS(2509), 7, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -80339,1718 +81849,1487 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [72716] = 6, + [74105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - aux_sym_function_run_as_token1, - ACTIONS(2486), 1, - anon_sym_SEMI, - STATE(1588), 1, - sym_function_volatility, - STATE(2214), 1, - sym_function_run_as, - ACTIONS(2426), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [72737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, + ACTIONS(2457), 1, anon_sym_COMMA, - STATE(1272), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2488), 5, + STATE(1298), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2511), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [72754] = 6, + aux_sym_where_filter_token1, + [74122] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1844), 1, - sym_into, - ACTIONS(2335), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 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, - [72786] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2019), 1, - aux_sym_insert_statement_token2, - STATE(1021), 1, - sym_identifier, - ACTIONS(2017), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [72804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1548), 1, - sym_returning, - STATE(1938), 1, - sym_into, - ACTIONS(2494), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72824] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1199), 1, - sym_join_type, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [72842] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1312), 1, - sym_into, - ACTIONS(1948), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [72856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 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, - [72868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - STATE(1717), 1, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + STATE(1688), 1, sym__type, - STATE(1847), 1, + STATE(1969), 1, sym_alter_column_type, - STATE(9), 2, - sym_predefined_types, + STATE(19), 2, + sym_predefined_type, sym_identifier, - [72888] = 6, + [74145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2502), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2504), 1, - aux_sym_update_statement_token3, - STATE(1845), 1, - sym_alter_column_action, - ACTIONS(2498), 2, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_COMMA, - [72908] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1334), 1, - sym_into, - ACTIONS(2076), 5, - 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, - [72922] = 2, + aux_sym_where_filter_token1, + [74158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 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, - [72934] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1301), 1, - sym_into, - ACTIONS(2136), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [72948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 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, - [72960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1244), 1, - sym_join_type, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [72978] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1278), 1, - sym_into, - ACTIONS(2265), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [72992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, + ACTIONS(2513), 1, anon_sym_COMMA, - STATE(1336), 1, - aux_sym_returning_repeat1, - STATE(1922), 1, - sym_into, - ACTIONS(2506), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73012] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1283), 1, - sym_into, - ACTIONS(2492), 5, + STATE(1298), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2162), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [73026] = 6, + aux_sym_where_filter_token1, + [74175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1305), 1, - aux_sym_returning_repeat1, - STATE(1770), 1, - sym_into, - ACTIONS(2413), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1770), 1, - sym_into, - ACTIONS(2413), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1295), 1, - aux_sym_returning_repeat1, - STATE(1844), 1, - sym_into, - ACTIONS(2335), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73086] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2508), 1, - aux_sym_schema_role_token1, - ACTIONS(2510), 1, - aux_sym_if_statement_token1, - STATE(1486), 1, - sym_if_not_exists, - STATE(1686), 1, - sym_identifier, - STATE(2050), 1, - sym_schema_role, - [73108] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - STATE(1340), 1, - aux_sym_with_query_repeat1, - ACTIONS(2514), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [73124] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73138] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1287), 1, - sym_into, - ACTIONS(1779), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2265), 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, - [73164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1220), 1, - sym_join_type, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [73182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 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, - [73194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 1, - anon_sym_COMMA, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(638), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_for_statement_token2, - anon_sym_RBRACK, - [73210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1917), 1, - sym_into, - ACTIONS(2519), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73230] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(200), 1, - sym_predefined_types, - STATE(1100), 1, - sym_identifier, - STATE(1759), 2, - sym_var_declaration, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + STATE(1688), 1, sym__type, - [73250] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1315), 1, - aux_sym_returning_repeat1, - STATE(1917), 1, - sym_into, - ACTIONS(2519), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 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, - [73282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, - aux_sym_join_item_token3, - ACTIONS(1809), 1, - aux_sym_join_type_token1, - STATE(1222), 1, - sym_join_type, - ACTIONS(1811), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [73300] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2521), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2523), 1, - aux_sym_create_index_statement_token3, - ACTIONS(2525), 1, - aux_sym_if_statement_token1, - STATE(1687), 1, - sym_if_not_exists, - STATE(2062), 1, + STATE(1991), 1, + sym_alter_column_type, + STATE(19), 2, + sym_predefined_type, sym_identifier, - [73322] = 6, + [74198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, + ACTIONS(2516), 7, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1313), 1, - aux_sym_returning_repeat1, - STATE(1964), 1, - sym_into, - ACTIONS(2527), 2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [74211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 1, + anon_sym_COMMA, + STATE(1279), 1, + aux_sym_insert_items_repeat1, + ACTIONS(2518), 5, anon_sym_SEMI, anon_sym_RPAREN, - [73342] = 2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 6, + ACTIONS(2453), 1, + aux_sym_index_col_nulls_token1, + STATE(1451), 1, + sym_index_col_dir, + STATE(1828), 1, + sym_index_col_nulls, + ACTIONS(2451), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(2520), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 7, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [73354] = 6, + aux_sym_select_offset_token1, + [74262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1922), 1, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2524), 1, + aux_sym_grant_roles_token2, + STATE(1837), 1, + sym_identifier, + ACTIONS(2522), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [74280] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2526), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2528), 1, + aux_sym_create_index_statement_token3, + ACTIONS(2530), 1, + aux_sym_if_statement_token1, + STATE(1684), 1, + sym_if_not_exists, + STATE(2035), 1, + sym_identifier, + [74302] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + ACTIONS(2532), 1, + sym__identifier, + STATE(100), 1, + sym__type, + STATE(19), 2, + sym_predefined_type, + sym_identifier, + [74322] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1317), 1, sym_into, - ACTIONS(2506), 2, + ACTIONS(2049), 5, anon_sym_SEMI, anon_sym_RPAREN, - [73374] = 2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 6, + STATE(1380), 1, + sym_into, + ACTIONS(2534), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74350] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1344), 1, + sym_into, + ACTIONS(2189), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [73386] = 6, + [74376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1964), 1, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2540), 1, + aux_sym_if_statement_token1, + STATE(1390), 1, + sym_identifier, + STATE(1874), 1, + sym_if_exists, + ACTIONS(2538), 2, + aux_sym_conflict_target_token1, + aux_sym_alter_table_action_token2, + [74396] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1322), 1, sym_into, - ACTIONS(2527), 2, + ACTIONS(1978), 5, anon_sym_SEMI, anon_sym_RPAREN, - [73406] = 6, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74410] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74424] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1342), 1, + aux_sym_returning_repeat1, + STATE(1904), 1, + sym_into, + ACTIONS(2542), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + STATE(2264), 1, + sym__type, + STATE(19), 2, + sym_predefined_type, + sym_identifier, + [74464] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2546), 1, + aux_sym_predefined_type_token1, + ACTIONS(2548), 1, + aux_sym_predefined_type_token2, + STATE(1002), 1, + sym__type, + STATE(1016), 2, + sym_predefined_type, + sym_identifier, + [74484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74496] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(225), 1, + sym_predefined_type, + STATE(1086), 1, + sym_identifier, + STATE(1952), 1, + sym__type, + [74518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + ACTIONS(2550), 1, + sym__identifier, + STATE(434), 1, + sym__type, + STATE(225), 2, + sym_predefined_type, + sym_identifier, + [74538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1550), 1, + sym_returning, + STATE(1854), 1, + sym_into, + ACTIONS(2552), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74558] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1557), 1, + sym_returning, + STATE(1968), 1, + sym_into, + ACTIONS(2405), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1559), 1, + sym_returning, + STATE(1985), 1, + sym_into, + ACTIONS(2554), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(1394), 1, + sym__type, + STATE(225), 2, + sym_predefined_type, + sym_identifier, + [74644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_returning_repeat1, + STATE(1978), 1, + sym_into, + ACTIONS(2556), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74664] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(2531), 1, + ACTIONS(2558), 1, aux_sym_trigger_exec_token1, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(1975), 2, + STATE(2016), 2, sym_execute_statement, sym_select_statement, - [73426] = 6, + [74684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1470), 1, - sym_returning, - STATE(1795), 1, - sym_into, - ACTIONS(2533), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73446] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1428), 1, - sym_returning, - STATE(1764), 1, - sym_into, - ACTIONS(2535), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73466] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1480), 1, - sym_returning, - STATE(1825), 1, - sym_into, - ACTIONS(2411), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2539), 1, - aux_sym_grant_roles_token2, - STATE(1789), 1, - sym_identifier, - ACTIONS(2537), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [73504] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1308), 1, - sym_into, - ACTIONS(711), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1807), 1, + ACTIONS(1841), 1, aux_sym_join_item_token3, - ACTIONS(1809), 1, + ACTIONS(1843), 1, aux_sym_join_type_token1, - STATE(1218), 1, + STATE(1213), 1, sym_join_type, - ACTIONS(1811), 3, + ACTIONS(1845), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [73536] = 6, + [74702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2502), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2504), 1, - aux_sym_update_statement_token3, - STATE(1842), 1, - sym_alter_column_action, - ACTIONS(2541), 2, - anon_sym_SEMI, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, anon_sym_COMMA, - [73556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2543), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2119), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2548), 1, - aux_sym_if_statement_token1, - STATE(1363), 1, - sym_identifier, - STATE(1835), 1, - sym_if_exists, - ACTIONS(2546), 2, - aux_sym_conflict_target_token1, - aux_sym_alter_table_action_token2, - [73592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73604] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1289), 1, - sym_into, - ACTIONS(1757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73618] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2552), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1547), 1, - sym_returning, - STATE(1765), 1, - sym_into, - ACTIONS(2554), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73664] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1277), 1, + STATE(1398), 1, aux_sym_returning_repeat1, - STATE(1957), 1, + STATE(1978), 1, sym_into, - ACTIONS(2261), 2, + ACTIONS(2556), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73684] = 2, + [74722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(2401), 1, aux_sym_returning_token1, - aux_sym_for_statement_token2, - [73696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1948), 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, - [73708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2136), 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, - [73720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - STATE(1717), 1, - sym__type, - STATE(1921), 1, - sym_alter_column_type, - STATE(9), 2, - sym_predefined_types, - sym_identifier, - [73740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - STATE(1900), 1, - sym_into, - ACTIONS(2558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2365), 1, - aux_sym_returning_token1, - STATE(1468), 1, + STATE(1569), 1, sym_returning, - STATE(1914), 1, + STATE(1879), 1, sym_into, - ACTIONS(2409), 2, + ACTIONS(2560), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73780] = 7, + [74742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2525), 1, - aux_sym_if_statement_token1, - ACTIONS(2560), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2562), 1, - aux_sym_create_index_statement_token3, - STATE(1723), 1, - sym_if_not_exists, - STATE(2220), 1, - sym_identifier, - [73802] = 2, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1378), 1, + aux_sym_returning_repeat1, + STATE(1779), 1, + sym_into, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 6, + ACTIONS(2562), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [73814] = 4, + [74774] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2564), 1, anon_sym_COMMA, - STATE(1340), 1, + STATE(1333), 1, aux_sym_with_query_repeat1, ACTIONS(2567), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [73830] = 5, + [74790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 1, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2012), 1, + aux_sym_insert_statement_token2, + STATE(1035), 1, + sym_identifier, + ACTIONS(2010), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [74808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2569), 1, + aux_sym_predefined_type_token1, + ACTIONS(2571), 1, + aux_sym_predefined_type_token2, + ACTIONS(2573), 1, + sym__identifier, + STATE(651), 1, + sym__type, + STATE(562), 2, + sym_predefined_type, + sym_identifier, + [74828] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + STATE(1779), 1, + sym_into, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1541), 1, + sym_returning, + STATE(1812), 1, + sym_into, + ACTIONS(2409), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2575), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74880] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2581), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2583), 1, + aux_sym_update_statement_token3, + STATE(1976), 1, + sym_alter_column_action, + ACTIONS(2577), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [74900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, aux_sym_join_item_token3, - ACTIONS(1809), 1, + ACTIONS(1843), 1, aux_sym_join_type_token1, - STATE(1238), 1, + STATE(1229), 1, sym_join_type, - ACTIONS(1811), 3, + ACTIONS(1845), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [73848] = 6, + [74930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + STATE(1972), 1, + sym_into, + ACTIONS(2585), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [74950] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [74964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2270), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [74976] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2201), 1, + aux_sym_predefined_type_token1, + ACTIONS(2203), 1, + aux_sym_predefined_type_token2, + STATE(225), 1, + sym_predefined_type, + STATE(1085), 1, + sym_identifier, + STATE(1680), 1, + sym__type, + [74998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2338), 1, + aux_sym_predefined_type_token1, + ACTIONS(2340), 1, + aux_sym_predefined_type_token2, + STATE(1394), 1, + sym__type, + STATE(19), 2, + sym_predefined_type, + sym_identifier, + [75030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1359), 1, + aux_sym_returning_repeat1, + STATE(1972), 1, + sym_into, + ACTIONS(2585), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 1, + anon_sym_COMMA, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(662), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + anon_sym_RBRACK, + [75078] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2590), 1, + aux_sym_schema_role_token1, + ACTIONS(2592), 1, + aux_sym_if_statement_token1, + STATE(1475), 1, + sym_if_not_exists, + STATE(1623), 1, + sym_identifier, + STATE(2232), 1, + sym_schema_role, + [75100] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2594), 1, + aux_sym_predefined_type_token1, + ACTIONS(2596), 1, + aux_sym_predefined_type_token2, + ACTIONS(2598), 1, + sym__identifier, + STATE(614), 1, + sym__type, + STATE(517), 2, + sym_predefined_type, + sym_identifier, + [75134] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2401), 1, + aux_sym_returning_token1, + STATE(1572), 1, + sym_returning, + STATE(1884), 1, + sym_into, + ACTIONS(2600), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + aux_sym_predefined_type_token1, + ACTIONS(2604), 1, + aux_sym_predefined_type_token2, + ACTIONS(2606), 1, + sym__identifier, + STATE(382), 1, + sym__type, + STATE(199), 2, + sym_predefined_type, + sym_identifier, + [75174] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2530), 1, + aux_sym_if_statement_token1, + ACTIONS(2608), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2610), 1, + aux_sym_create_index_statement_token3, + STATE(1626), 1, + sym_if_not_exists, + STATE(2210), 1, + sym_identifier, + [75196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 1, + aux_sym_predefined_type_token1, + ACTIONS(2614), 1, + aux_sym_predefined_type_token2, + ACTIONS(2616), 1, + sym__identifier, + STATE(486), 1, + sym__type, + STATE(286), 2, + sym_predefined_type, + sym_identifier, + [75216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2534), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + STATE(1928), 1, + sym_into, + ACTIONS(2618), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2620), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2162), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [75276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1255), 1, + sym_join_type, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 1, + anon_sym_COMMA, + STATE(1381), 1, + aux_sym_with_query_repeat1, + ACTIONS(2627), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [75310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2483), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75322] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1346), 1, + sym_into, + ACTIONS(792), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75336] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + aux_sym_predefined_type_token1, + ACTIONS(2631), 1, + aux_sym_predefined_type_token2, + ACTIONS(2633), 1, + sym__identifier, + STATE(420), 1, + sym__type, + STATE(255), 2, + sym_predefined_type, + sym_identifier, + [75356] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(2531), 1, + ACTIONS(2558), 1, aux_sym_trigger_exec_token1, - STATE(2131), 1, + STATE(2117), 1, sym_with_query, - STATE(2036), 2, + STATE(2305), 2, sym_execute_statement, sym_select_statement, - [73868] = 4, + [75376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(1801), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1267), 1, + sym_join_type, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2635), 1, + aux_sym_predefined_type_token1, + ACTIONS(2637), 1, + aux_sym_predefined_type_token2, + ACTIONS(2639), 1, + sym__identifier, + STATE(353), 1, + sym__type, + STATE(161), 2, + sym_predefined_type, + sym_identifier, + [75426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1215), 1, + sym_join_type, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2581), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2583), 1, + aux_sym_update_statement_token3, + STATE(1799), 1, + sym_alter_column_action, + ACTIONS(2641), 2, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1298), 1, + [75476] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + STATE(1904), 1, + sym_into, + ACTIONS(2542), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75496] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + aux_sym_predefined_type_token1, + ACTIONS(2645), 1, + aux_sym_predefined_type_token2, + ACTIONS(2647), 1, + sym__identifier, + STATE(141), 1, + sym__type, + STATE(40), 2, + sym_predefined_type, + sym_identifier, + [75516] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + aux_sym_predefined_type_token1, + ACTIONS(2651), 1, + aux_sym_predefined_type_token2, + ACTIONS(2653), 1, + sym__identifier, + STATE(496), 1, + sym__type, + STATE(294), 2, + sym_predefined_type, + sym_identifier, + [75536] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1358), 1, + sym_into, + ACTIONS(2270), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [75550] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + STATE(1858), 1, + sym_into, + ACTIONS(2500), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75570] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1329), 1, + aux_sym_returning_repeat1, + STATE(1858), 1, + sym_into, + ACTIONS(2500), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2655), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [75602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 1, + anon_sym_COMMA, + STATE(1333), 1, aux_sym_with_query_repeat1, - ACTIONS(2569), 4, + ACTIONS(2657), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [73884] = 5, + [75618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, - aux_sym_predefined_types_token1, - ACTIONS(2573), 1, + ACTIONS(2659), 1, + aux_sym_predefined_type_token1, + ACTIONS(2661), 1, + aux_sym_predefined_type_token2, + ACTIONS(2663), 1, sym__identifier, - STATE(306), 1, + STATE(328), 1, sym__type, - STATE(163), 2, - sym_predefined_types, + STATE(182), 2, + sym_predefined_type, sym_identifier, - [73901] = 5, + [75638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 1, - aux_sym_predefined_types_token1, - ACTIONS(2577), 1, - sym__identifier, - STATE(430), 1, - sym__type, - STATE(279), 2, - sym_predefined_types, - sym_identifier, - [73918] = 2, + ACTIONS(1841), 1, + aux_sym_join_item_token3, + ACTIONS(1843), 1, + aux_sym_join_type_token1, + STATE(1259), 1, + sym_join_type, + ACTIONS(1845), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [75656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 5, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2544), 1, anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [73929] = 2, + STATE(1336), 1, + aux_sym_returning_repeat1, + STATE(1802), 1, + sym_into, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 5, + ACTIONS(2187), 1, + sym__identifier, + ACTIONS(2665), 1, + anon_sym_RPAREN, + ACTIONS(2667), 1, + aux_sym_insert_items_token1, + STATE(1347), 1, + sym_identifier, + STATE(1525), 1, + sym_var_declaration, + [75695] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1856), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2669), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2671), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [75710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2377), 1, + aux_sym_returning_token1, + STATE(1802), 1, + sym_into, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75727] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2673), 1, + anon_sym_SEMI, + ACTIONS(2675), 1, + aux_sym_index_includes_token1, + STATE(1641), 1, + sym_index_includes, + STATE(2156), 1, + sym_where_filter, + [75746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2502), 1, + aux_sym_returning_token1, + STATE(1858), 1, + sym_into, + ACTIONS(2500), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [75763] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1799), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2641), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2671), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [75778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2677), 1, + aux_sym_for_statement_token3, + ACTIONS(2682), 1, + aux_sym_if_statement_token5, + STATE(1391), 1, + aux_sym_if_statement_repeat1, + ACTIONS(2679), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [75795] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1200), 1, + sym_update_set, + STATE(2066), 1, + sym_identifier, + STATE(2068), 1, + sym__list_of_identifiers, + [75814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2686), 1, + aux_sym_body_token1, + ACTIONS(2688), 1, + aux_sym_declarations_token1, + STATE(1971), 1, + sym_body, + STATE(1514), 2, + sym_declarations, + aux_sym_block_repeat1, + [75831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2690), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_items_token1, anon_sym_COLON_EQ, - [73940] = 6, + [75842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(200), 1, - sym_predefined_types, - STATE(1131), 1, - sym_identifier, - STATE(1924), 1, - sym__type, - [73959] = 6, + ACTIONS(2692), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [75853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2525), 1, + ACTIONS(2185), 1, aux_sym_if_statement_token1, - ACTIONS(2560), 1, - aux_sym_insert_conflict_token1, - STATE(1723), 1, + ACTIONS(2187), 1, + sym__identifier, + STATE(1316), 1, + sym_identifier, + STATE(1777), 1, sym_if_not_exists, - STATE(2220), 1, - sym_identifier, - [73978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2581), 1, - aux_sym_predefined_types_token1, - ACTIONS(2583), 1, - sym__identifier, - STATE(459), 1, - sym__type, - STATE(269), 2, - sym_predefined_types, - sym_identifier, - [73995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - ACTIONS(2084), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [74010] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 1, - aux_sym_body_token1, - ACTIONS(2590), 1, - aux_sym_declarations_token1, - STATE(1785), 1, - sym_body, - STATE(1533), 2, - sym_declarations, - aux_sym_block_repeat1, - [74027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - aux_sym_predefined_types_token1, - ACTIONS(2594), 1, - sym__identifier, - STATE(422), 1, - sym__type, - STATE(226), 2, - sym_predefined_types, - sym_identifier, - [74055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2329), 1, - aux_sym_returning_token1, - STATE(1957), 1, - sym_into, - ACTIONS(2261), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74072] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2525), 1, - aux_sym_if_statement_token1, - ACTIONS(2596), 1, - aux_sym_insert_conflict_token1, - STATE(1655), 1, - sym_if_not_exists, - STATE(2053), 1, - sym_identifier, - [74091] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2598), 1, - anon_sym_DOLLAR, - STATE(1361), 1, - sym_dollar_quote, - STATE(2247), 2, - sym_block, - sym_string, - [74108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74119] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2602), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2604), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2606), 1, - aux_sym_table_constraint_ty_token4, - STATE(1360), 1, - sym_table_constraint_ty, - [74138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - aux_sym_constraint_when_token1, - STATE(1669), 1, - sym_constraint_when, - ACTIONS(2608), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [74153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 1, - aux_sym_body_token1, - ACTIONS(2590), 1, - aux_sym_declarations_token1, - STATE(1906), 1, - sym_body, - STATE(1352), 2, - sym_declarations, - aux_sym_block_repeat1, - [74170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1351), 1, - aux_sym_returning_repeat1, - ACTIONS(2610), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [74185] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1842), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2541), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2612), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - ACTIONS(2614), 1, - sym__identifier, - STATE(138), 1, - sym__type, - STATE(9), 2, - sym_predefined_types, - sym_identifier, - [74217] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2616), 1, - aux_sym_conflict_target_token1, - ACTIONS(2618), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2620), 1, - aux_sym_alter_table_rename_column_token2, - STATE(2224), 1, - sym_identifier, - [74236] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - aux_sym_predefined_types_token1, - ACTIONS(2624), 1, - sym__identifier, - STATE(612), 1, - sym__type, - STATE(495), 2, - sym_predefined_types, - sym_identifier, - [74253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1021), 1, - sym_identifier, - ACTIONS(2017), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [74268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - aux_sym_if_statement_token1, - ACTIONS(2171), 1, - sym__identifier, - STATE(1381), 1, - sym_identifier, - STATE(1689), 1, - sym_if_not_exists, - STATE(1842), 1, + STATE(1799), 1, sym_table_column_item, - [74287] = 6, + [75872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2628), 1, - anon_sym_SEMI, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, - STATE(1696), 1, - sym_index_includes, - STATE(2093), 1, - sym_where_filter, - [74306] = 6, + ACTIONS(2686), 1, + aux_sym_body_token1, + ACTIONS(2688), 1, + aux_sym_declarations_token1, + STATE(1895), 1, + sym_body, + STATE(1393), 2, + sym_declarations, + aux_sym_block_repeat1, + [75889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1170), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2192), 1, - sym_identifier, - [74325] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, + ACTIONS(2694), 1, anon_sym_COMMA, - ACTIONS(2632), 1, + STATE(1398), 1, + aux_sym_returning_repeat1, + ACTIONS(2108), 3, anon_sym_SEMI, - STATE(1411), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2634), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2636), 1, - anon_sym_SEMI, - ACTIONS(2638), 1, - anon_sym_COMMA, - STATE(1397), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2640), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, - ACTIONS(2642), 1, - anon_sym_SEMI, - STATE(1691), 1, - sym_index_includes, - STATE(2064), 1, - sym_where_filter, - [74378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - aux_sym_predefined_types_token1, - ACTIONS(2646), 1, - sym__identifier, - STATE(370), 1, - sym__type, - STATE(214), 2, - sym_predefined_types, - sym_identifier, - [74395] = 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, - [74406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1168), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2192), 1, - sym_identifier, - [74425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, - ACTIONS(2650), 1, - anon_sym_SEMI, - STATE(1660), 1, - sym_index_includes, - STATE(2031), 1, - sym_where_filter, - [74444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1160), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2192), 1, - sym_identifier, - [74463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2652), 1, - aux_sym_for_statement_token3, - ACTIONS(2657), 1, - aux_sym_if_statement_token5, - STATE(1379), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2654), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [74480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [74491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2661), 1, - aux_sym_predefined_types_token1, - STATE(988), 1, - sym__type, - STATE(987), 2, - sym_predefined_types, - sym_identifier, - [74508] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1196), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2234), 1, - sym_identifier, - [74527] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - aux_sym_constraint_when_token1, - STATE(1614), 1, - sym_constraint_when, - ACTIONS(2663), 3, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - [74542] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - STATE(1839), 1, - sym_into, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74559] = 5, + [75904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - aux_sym_predefined_types_token1, - ACTIONS(2667), 1, - sym__identifier, - STATE(119), 1, - sym__type, - STATE(37), 2, - sym_predefined_types, - sym_identifier, - [74576] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2092), 1, - sym_trigger_event, - ACTIONS(2669), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [74589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, - aux_sym_predefined_types_token1, - ACTIONS(2673), 1, - sym__identifier, - STATE(619), 1, - sym__type, - STATE(521), 2, - sym_predefined_types, - sym_identifier, - [74606] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2182), 1, - sym_trigger_event, - ACTIONS(2669), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [74619] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, ACTIONS(2675), 1, - anon_sym_SEMI, - STATE(1707), 1, - sym_index_includes, - STATE(1984), 1, - sym_where_filter, - [74638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2337), 1, - aux_sym_returning_token1, - STATE(1844), 1, - sym_into, - ACTIONS(2335), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74655] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - STATE(1347), 1, - sym__type, - STATE(9), 2, - sym_predefined_types, - sym_identifier, - [74672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [74683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2681), 1, - aux_sym_update_statement_token3, - ACTIONS(2683), 1, - aux_sym_fk_ref_action_token1, - STATE(1055), 1, - sym_fk_ref_action, - ACTIONS(2679), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - ACTIONS(2685), 1, - sym__identifier, - STATE(414), 1, - sym__type, - STATE(200), 2, - sym_predefined_types, - sym_identifier, - [74717] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - aux_sym_for_statement_token3, - ACTIONS(2691), 1, - aux_sym_if_statement_token5, - STATE(1379), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2689), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [74734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, - anon_sym_LPAREN, - ACTIONS(2693), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 1, - anon_sym_COMMA, + aux_sym_index_includes_token1, ACTIONS(2697), 1, anon_sym_SEMI, - STATE(1418), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2699), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74764] = 4, + STATE(1694), 1, + sym_index_includes, + STATE(2113), 1, + sym_where_filter, + [75923] = 3, ACTIONS(3), 1, sym_comment, - STATE(1845), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2498), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2612), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [74779] = 5, + STATE(2164), 1, + sym_trigger_event, + ACTIONS(2699), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [75936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(1347), 1, - sym__type, - STATE(200), 2, - sym_predefined_types, - sym_identifier, - [74796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2598), 1, - anon_sym_DOLLAR, - STATE(1361), 1, - sym_dollar_quote, - STATE(2193), 2, - sym_block, - sym_string, - [74813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - anon_sym_SQUOTE, - ACTIONS(2626), 1, - sym__identifier, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2675), 1, + aux_sym_index_includes_token1, ACTIONS(2701), 1, anon_sym_SEMI, - STATE(1867), 1, - sym_identifier, - STATE(1873), 1, - sym_string, - [74832] = 5, + STATE(1651), 1, + sym_index_includes, + STATE(2140), 1, + sym_where_filter, + [75955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2327), 1, - aux_sym_predefined_types_token1, - STATE(2205), 1, - sym__type, - STATE(9), 2, - sym_predefined_types, - sym_identifier, - [74849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2415), 1, - aux_sym_returning_token1, - STATE(1770), 1, - sym_into, - ACTIONS(2413), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74866] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1773), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2612), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - ACTIONS(2703), 2, + ACTIONS(2152), 1, + aux_sym_constraint_when_token1, + STATE(1660), 1, + sym_constraint_when, + ACTIONS(2703), 3, anon_sym_SEMI, anon_sym_COMMA, - [74881] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - sym__identifier, - ACTIONS(2705), 1, anon_sym_RPAREN, - ACTIONS(2707), 1, - aux_sym_insert_items_token1, - STATE(1391), 1, - sym_identifier, - STATE(1445), 1, - sym_var_declaration, - [74900] = 5, + [75970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(285), 1, + ACTIONS(227), 1, sym__identifier, - STATE(2146), 1, - sym_identifier, - STATE(2149), 1, - sym_function_call, - ACTIONS(2709), 2, - aux_sym_drop_function_statement_token1, - aux_sym_grant_targets_token6, - [74917] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2548), 1, + ACTIONS(2526), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2530), 1, aux_sym_if_statement_token1, - STATE(1415), 1, + STATE(1684), 1, + sym_if_not_exists, + STATE(2035), 1, sym_identifier, - STATE(1429), 1, - sym_drop_function_item, - STATE(1956), 1, - sym_if_exists, - [74936] = 6, + [75989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2705), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [76013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, ACTIONS(2711), 1, anon_sym_SEMI, - STATE(1594), 1, - sym_index_includes, - STATE(2201), 1, - sym_where_filter, - [74955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2630), 1, - aux_sym_index_includes_token1, ACTIONS(2713), 1, - anon_sym_SEMI, - STATE(1705), 1, - sym_index_includes, - STATE(2107), 1, - sym_where_filter, - [74974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1259), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2192), 1, - sym_identifier, - [74993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2717), 2, + STATE(1422), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2715), 2, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75010] = 6, + [76030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2548), 1, + ACTIONS(2540), 1, aux_sym_if_statement_token1, - STATE(1372), 1, - sym_drop_function_item, - STATE(1415), 1, + STATE(1419), 1, sym_identifier, - STATE(1956), 1, + STATE(1520), 1, + sym_drop_function_item, + STATE(1899), 1, sym_if_exists, - [75029] = 6, + [76049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - ACTIONS(2630), 1, + ACTIONS(2675), 1, aux_sym_index_includes_token1, + ACTIONS(2717), 1, + anon_sym_SEMI, + STATE(1670), 1, + sym_index_includes, + STATE(2061), 1, + sym_where_filter, + [76068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, ACTIONS(2719), 1, anon_sym_SEMI, - STATE(1634), 1, - sym_index_includes, - STATE(2129), 1, - sym_where_filter, - [75048] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2626), 1, - sym__identifier, - STATE(1178), 1, - sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2192), 1, - sym_identifier, - [75067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_LPAREN, - ACTIONS(2721), 4, - anon_sym_SEMI, - anon_sym_COMMA, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2721), 2, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75080] = 2, + [76085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1190), 1, + sym_update_set, + STATE(2066), 1, + sym_identifier, + STATE(2068), 1, + sym__list_of_identifiers, + [76104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_SEMI, + STATE(1418), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2721), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(842), 1, + anon_sym_SQUOTE, + ACTIONS(2684), 1, + sym__identifier, + ACTIONS(2723), 1, + anon_sym_SEMI, + STATE(1882), 1, + sym_identifier, + STATE(1883), 1, + sym_string, + [76140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2725), 5, @@ -82059,6617 +83338,7051 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [75091] = 5, + [76151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_SEMI, - STATE(1421), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2717), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75108] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_COMMA, - STATE(1418), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2727), 3, - anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75123] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, + ACTIONS(1809), 1, anon_sym_LPAREN, - ACTIONS(2626), 1, + ACTIONS(2684), 1, sym__identifier, - STATE(1259), 1, + STATE(1188), 1, sym_update_set, - STATE(2189), 1, - sym__list_of_identifiers, - STATE(2234), 1, + STATE(2066), 1, sym_identifier, - [75142] = 5, + STATE(2068), 1, + sym__list_of_identifiers, + [76170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - ACTIONS(2732), 1, - aux_sym_returning_token1, - STATE(1917), 1, - sym_into, - ACTIONS(2519), 2, + STATE(2269), 1, + sym_trigger_event, + ACTIONS(2699), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [76183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2675), 1, + aux_sym_index_includes_token1, + ACTIONS(2727), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [75159] = 5, + STATE(1585), 1, + sym_index_includes, + STATE(2381), 1, + sym_where_filter, + [76202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + STATE(1976), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2577), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_SEMI, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2736), 2, + ACTIONS(2671), 2, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75176] = 5, + [76217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - aux_sym_predefined_types_token1, - ACTIONS(2740), 1, - sym__identifier, - STATE(329), 1, - sym__type, - STATE(156), 2, - sym_predefined_types, - sym_identifier, - [75193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, + ACTIONS(1992), 1, anon_sym_COMMA, - STATE(1362), 1, - aux_sym_returning_repeat1, - ACTIONS(2742), 3, + ACTIONS(2729), 1, anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [75208] = 2, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2731), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 5, + ACTIONS(2735), 1, + anon_sym_LPAREN, + ACTIONS(2733), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76247] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_COMMA, + ACTIONS(2737), 1, + anon_sym_SEMI, + STATE(1406), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2739), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2518), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [75219] = 6, + [76275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2743), 1, + anon_sym_COMMA, + STATE(1422), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(2741), 3, + anon_sym_SEMI, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, sym__identifier, - ACTIONS(2225), 1, - aux_sym_predefined_types_token1, - STATE(200), 1, - sym_predefined_types, - STATE(1094), 1, + STATE(2138), 1, sym_identifier, - STATE(1713), 1, - sym__type, - [75238] = 4, - ACTIONS(2746), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - sym_comment, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75252] = 4, + STATE(2280), 1, + sym_function_call, + ACTIONS(2746), 2, + aux_sym_drop_function_statement_token1, + aux_sym_grant_targets_token6, + [76307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1287), 1, - sym_into, - ACTIONS(1779), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1937), 1, - sym_into, - ACTIONS(2752), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 4, - anon_sym_SEMI, + ACTIONS(1992), 1, anon_sym_COMMA, + ACTIONS(2748), 1, + anon_sym_SEMI, + STATE(1409), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2750), 2, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75290] = 4, + [76324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, + ACTIONS(1886), 1, aux_sym_insert_statement_token2, - STATE(1938), 1, - sym_into, - ACTIONS(2494), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [75314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2756), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75324] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, + ACTIONS(2381), 1, aux_sym_returning_token1, - STATE(1939), 1, - sym_returning, - ACTIONS(2399), 2, + STATE(1779), 1, + sym_into, + ACTIONS(2379), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75338] = 4, + [76341] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1035), 1, + sym_identifier, + ACTIONS(2010), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [76356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2540), 1, + aux_sym_if_statement_token1, + STATE(1419), 1, + sym_identifier, + STATE(1420), 1, + sym_drop_function_item, + STATE(1899), 1, + sym_if_exists, + [76375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + aux_sym_for_statement_token3, + ACTIONS(2756), 1, + aux_sym_if_statement_token5, + STATE(1391), 1, + aux_sym_if_statement_repeat1, + ACTIONS(2754), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [76392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [76403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1297), 1, + sym_update_set, + STATE(2066), 1, + sym_identifier, + STATE(2068), 1, + sym__list_of_identifiers, + [76422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1297), 1, + sym_update_set, + STATE(2068), 1, + sym__list_of_identifiers, + STATE(2271), 1, + sym_identifier, + [76441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1221), 1, + sym_update_set, + STATE(2068), 1, + sym__list_of_identifiers, + STATE(2271), 1, + sym_identifier, + [76460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 1, + anon_sym_SQUOTE, ACTIONS(2758), 1, + anon_sym_DOLLAR, + STATE(1397), 1, + sym_dollar_quote, + STATE(2147), 2, + sym_block, + sym_string, + [76477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2760), 5, anon_sym_COMMA, - STATE(1434), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75352] = 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [76488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1278), 1, - sym_into, - ACTIONS(2265), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75366] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, + ACTIONS(227), 1, sym__identifier, - ACTIONS(2761), 1, - aux_sym_update_statement_token2, - ACTIONS(2763), 1, - aux_sym_update_statement_token3, - STATE(2185), 1, + ACTIONS(2530), 1, + aux_sym_if_statement_token1, + ACTIONS(2762), 1, + aux_sym_insert_conflict_token1, + STATE(1724), 1, + sym_if_not_exists, + STATE(2152), 1, sym_identifier, - [75382] = 4, + [76507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2675), 1, + aux_sym_index_includes_token1, + ACTIONS(2764), 1, + anon_sym_SEMI, + STATE(1705), 1, + sym_index_includes, + STATE(2064), 1, + sym_where_filter, + [76526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2472), 5, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(1334), 1, - sym_into, - ACTIONS(2076), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - STATE(1496), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - STATE(1799), 1, - sym_returning, - ACTIONS(2343), 2, + [76537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2766), 1, + aux_sym_returning_token1, + STATE(1978), 1, + sym_into, + ACTIONS(2556), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75424] = 4, + [76554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - STATE(1434), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75438] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - aux_sym_index_col_nulls_token1, - STATE(1780), 1, - sym_index_col_nulls, - ACTIONS(2767), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [75452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2769), 1, - aux_sym_update_statement_token2, - ACTIONS(2771), 1, + ACTIONS(2770), 1, aux_sym_update_statement_token3, - STATE(1983), 1, - sym_identifier, - [75468] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2773), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2775), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75482] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2778), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75496] = 5, + ACTIONS(2772), 1, + aux_sym_fk_ref_action_token1, + STATE(1079), 1, + sym_fk_ref_action, + ACTIONS(2768), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [76571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, - anon_sym_COMMA, - ACTIONS(2782), 1, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + sym__identifier, + STATE(1202), 1, + sym_update_set, + STATE(2066), 1, + sym_identifier, + STATE(2068), 1, + sym__list_of_identifiers, + [76590] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2675), 1, + aux_sym_index_includes_token1, + ACTIONS(2774), 1, + anon_sym_SEMI, + STATE(1755), 1, + sym_index_includes, + STATE(2295), 1, + sym_where_filter, + [76609] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(2758), 1, + anon_sym_DOLLAR, + STATE(1397), 1, + sym_dollar_quote, + STATE(2196), 2, + sym_block, + sym_string, + [76626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + ACTIONS(2347), 1, + aux_sym_returning_token1, + STATE(1877), 1, + sym_into, + ACTIONS(2217), 2, + anon_sym_SEMI, anon_sym_RPAREN, + [76643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2776), 1, + aux_sym_conflict_target_token1, + ACTIONS(2778), 1, + aux_sym_alter_table_action_token2, + ACTIONS(2780), 1, + aux_sym_alter_table_rename_column_token2, + STATE(2209), 1, + sym_identifier, + [76662] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_create_index_statement_token1, ACTIONS(2784), 1, - aux_sym_insert_items_token1, - STATE(1509), 1, - aux_sym_create_type_statement_repeat2, - [75512] = 4, - ACTIONS(2750), 1, - sym_comment, + aux_sym_table_constraint_ty_token1, ACTIONS(2786), 1, - anon_sym_SQUOTE, - STATE(1444), 1, - aux_sym_string_repeat1, - ACTIONS(2788), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75526] = 4, - ACTIONS(2750), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2788), 1, + aux_sym_table_constraint_ty_token4, + STATE(1402), 1, + sym_table_constraint_ty, + [76681] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75540] = 4, - ACTIONS(2750), 1, + ACTIONS(2152), 1, + aux_sym_constraint_when_token1, + STATE(1756), 1, + sym_constraint_when, + ACTIONS(2790), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [76696] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75554] = 4, - ACTIONS(2750), 1, + ACTIONS(2792), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [76707] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_SQUOTE, - STATE(1447), 1, - aux_sym_string_repeat1, - ACTIONS(2796), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75568] = 4, - ACTIONS(2750), 1, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_returning_repeat1, + ACTIONS(2794), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [76722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2544), 1, + anon_sym_COMMA, + STATE(1448), 1, + aux_sym_returning_repeat1, + ACTIONS(2796), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [76737] = 4, + ACTIONS(3), 1, sym_comment, ACTIONS(2798), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75582] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2381), 1, - aux_sym_trigger_cond_token1, - STATE(1940), 1, - sym_trigger_cond, - STATE(2033), 1, - sym_trigger_exec, - [75598] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2800), 1, - anon_sym_SQUOTE, - STATE(1450), 1, - aux_sym_string_repeat1, - ACTIONS(2802), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75612] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(2804), 1, - sym__identifier, - STATE(859), 1, - sym_identifier, - STATE(877), 1, - sym__list_of_identifiers, - [75628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1333), 1, - sym_into, - ACTIONS(1862), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - sym__identifier, - STATE(1254), 1, - sym_identifier, - STATE(1628), 1, - sym_index_col, - [75658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1918), 1, - sym_returning, - ACTIONS(2403), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2169), 1, - aux_sym_if_statement_token1, - STATE(927), 1, - sym_identifier, - STATE(1919), 1, - sym_if_not_exists, - [75688] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 1, - aux_sym_index_using_token1, - STATE(1838), 1, - sym_execute_using, - ACTIONS(2812), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [75716] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_SQUOTE, - STATE(1448), 1, - aux_sym_string_repeat1, - ACTIONS(2816), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75730] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_SQUOTE, - STATE(1458), 1, - aux_sym_string_repeat1, - ACTIONS(2820), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, anon_sym_COMMA, - STATE(1462), 1, - aux_sym_returning_repeat1, - ACTIONS(2084), 2, + STATE(1450), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1924), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75758] = 4, + [76751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1795), 1, - sym_into, - ACTIONS(2533), 2, - anon_sym_SEMI, + ACTIONS(2453), 1, + aux_sym_index_col_nulls_token1, + STATE(1824), 1, + sym_index_col_nulls, + ACTIONS(2801), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [75772] = 4, - ACTIONS(2750), 1, + [76765] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2803), 1, + aux_sym_grant_privileges_token1, + STATE(1597), 1, + sym_identifier, + STATE(2302), 1, + sym_grant_privileges, + [76781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 1, + aux_sym_update_statement_token1, + ACTIONS(2807), 1, + aux_sym_insert_statement_token1, + ACTIONS(2809), 1, + aux_sym_delete_statement_token1, + ACTIONS(2811), 1, + aux_sym_select_statement_token1, + [76797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2540), 1, + aux_sym_if_statement_token1, + STATE(1424), 1, + sym_identifier, + STATE(1825), 1, + sym_if_exists, + [76813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2813), 1, + aux_sym_update_statement_token2, + ACTIONS(2815), 1, + aux_sym_update_statement_token3, + STATE(2262), 1, + sym_identifier, + [76829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2185), 1, + aux_sym_if_statement_token1, + STATE(1842), 1, + sym_if_not_exists, + STATE(2242), 1, + sym_identifier, + [76845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2185), 1, + aux_sym_if_statement_token1, + STATE(954), 1, + sym_identifier, + STATE(1865), 1, + sym_if_not_exists, + [76861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2540), 1, + aux_sym_if_statement_token1, + STATE(1155), 1, + sym_identifier, + STATE(1897), 1, + sym_if_exists, + [76877] = 4, + ACTIONS(2817), 1, + aux_sym_psql_statement_token1, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2821), 1, + sym__identifier, + STATE(1488), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [76891] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2823), 1, anon_sym_SQUOTE, - STATE(1443), 1, + STATE(1493), 1, aux_sym_string_repeat1, - ACTIONS(2748), 2, + ACTIONS(2825), 2, aux_sym_string_token1, aux_sym_string_token2, - [75786] = 4, - ACTIONS(2750), 1, + [76905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1346), 1, + sym_into, + ACTIONS(792), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [76919] = 4, + ACTIONS(2819), 1, sym_comment, ACTIONS(2827), 1, anon_sym_SQUOTE, - STATE(1464), 1, + STATE(1518), 1, aux_sym_string_repeat1, ACTIONS(2829), 2, aux_sym_string_token1, aux_sym_string_token2, - [75800] = 5, - ACTIONS(3), 1, + [76933] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - sym__identifier, - STATE(1254), 1, - sym_identifier, - STATE(1663), 1, - sym_index_col, - [75816] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1388), 1, - sym_trigger_when, - ACTIONS(2831), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [75828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1825), 1, - sym_into, - ACTIONS(2411), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75842] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2833), 1, - anon_sym_LPAREN, - ACTIONS(2835), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2837), 1, - aux_sym_insert_conflict_token3, - STATE(2219), 1, - sym_conflict_target, - [75858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1767), 1, - sym_into, - ACTIONS(2839), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75872] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2841), 1, + ACTIONS(2831), 1, anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - STATE(2212), 1, - sym_identifier, - ACTIONS(2843), 2, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - [75900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2845), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - aux_sym_index_col_nulls_token1, - STATE(1944), 1, - sym_index_col_nulls, - ACTIONS(2847), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [75924] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2849), 1, - anon_sym_SQUOTE, - STATE(1471), 1, - aux_sym_string_repeat1, - ACTIONS(2851), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1765), 1, - sym_into, - ACTIONS(2554), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75952] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2853), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [75966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2548), 1, - aux_sym_if_statement_token1, - STATE(1371), 1, - sym_identifier, - STATE(1971), 1, - sym_if_exists, - [75982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1884), 1, - sym_returning, - ACTIONS(2339), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75996] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1764), 1, - sym_into, - ACTIONS(2535), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_COMMA, STATE(1462), 1, - aux_sym_returning_repeat1, - ACTIONS(2610), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76024] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_SQUOTE, - STATE(1443), 1, aux_sym_string_repeat1, - ACTIONS(2748), 2, + ACTIONS(2833), 2, aux_sym_string_token1, aux_sym_string_token2, - [76038] = 2, - ACTIONS(3), 1, + [76947] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(2859), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [76048] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2548), 1, - aux_sym_if_statement_token1, - STATE(1129), 1, - sym_identifier, - STATE(1903), 1, - sym_if_exists, - [76064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - STATE(1440), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1968), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2508), 1, - aux_sym_schema_role_token1, - STATE(1720), 1, - sym_identifier, - STATE(2213), 1, - sym_schema_role, - [76094] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2861), 1, - anon_sym_SQUOTE, - STATE(1477), 1, - aux_sym_string_repeat1, - ACTIONS(2863), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76108] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2865), 1, - anon_sym_SQUOTE, - STATE(1482), 1, - aux_sym_string_repeat1, - ACTIONS(2867), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2869), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [76132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1914), 1, - sym_into, - ACTIONS(2409), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76146] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2871), 1, - aux_sym_psql_statement_token1, - ACTIONS(2873), 1, - sym__identifier, - STATE(1542), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [76160] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1312), 1, - sym_into, - ACTIONS(1948), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(2111), 1, - sym_select_statement, - STATE(2131), 1, - sym_with_query, - [76190] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2875), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - sym__identifier, - STATE(1254), 1, - sym_identifier, - STATE(1731), 1, - sym_index_col, - [76220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - STATE(1434), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1972), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76234] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - aux_sym_string_repeat1, - ACTIONS(2879), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2804), 1, - sym__identifier, - STATE(1275), 2, - sym_string, - sym_identifier, - [76262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2881), 1, - aux_sym_update_statement_token1, - ACTIONS(2883), 1, - aux_sym_insert_statement_token1, - ACTIONS(2885), 1, - aux_sym_delete_statement_token1, - ACTIONS(2887), 1, - aux_sym_select_statement_token1, - [76278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [76288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [76298] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1503), 1, - aux_sym_create_type_statement_repeat2, - ACTIONS(2898), 2, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - [76326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [76336] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2902), 1, - anon_sym_SQUOTE, - STATE(1502), 1, - aux_sym_string_repeat1, - ACTIONS(2904), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76350] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1386), 1, - sym_trigger_when, - ACTIONS(2831), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [76362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2169), 1, - aux_sym_if_statement_token1, - STATE(1941), 1, - sym_if_not_exists, - STATE(2043), 1, - sym_identifier, - [76378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2169), 1, - aux_sym_if_statement_token1, - STATE(1803), 1, - sym_if_not_exists, - STATE(2207), 1, - sym_identifier, - [76394] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 1, - anon_sym_COMMA, - ACTIONS(2906), 1, - anon_sym_RPAREN, - ACTIONS(2908), 1, - aux_sym_insert_items_token1, - STATE(1503), 1, - aux_sym_create_type_statement_repeat2, - [76410] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2548), 1, - aux_sym_if_statement_token1, - STATE(1398), 1, - sym_identifier, - STATE(1960), 1, - sym_if_exists, - [76426] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2910), 1, - anon_sym_SQUOTE, - STATE(1527), 1, - aux_sym_string_repeat1, - ACTIONS(2912), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [76450] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2916), 1, + ACTIONS(2835), 1, anon_sym_SQUOTE, STATE(1518), 1, aux_sym_string_repeat1, - ACTIONS(2918), 2, + ACTIONS(2829), 2, aux_sym_string_token1, aux_sym_string_token2, - [76464] = 5, + [76961] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2837), 1, + anon_sym_SQUOTE, + STATE(1464), 1, + aux_sym_string_repeat1, + ACTIONS(2839), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [76975] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2841), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [76989] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2843), 1, + anon_sym_SQUOTE, + STATE(1466), 1, + aux_sym_string_repeat1, + ACTIONS(2845), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1990), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, sym__identifier, - ACTIONS(2169), 1, + STATE(2054), 1, + sym_identifier, + ACTIONS(2849), 2, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + [77031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1994), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(1994), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77059] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2851), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77073] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2853), 1, + anon_sym_SQUOTE, + STATE(1472), 1, + aux_sym_string_repeat1, + ACTIONS(2855), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1470), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2002), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2590), 1, + aux_sym_schema_role_token1, + STATE(1683), 1, + sym_identifier, + STATE(2042), 1, + sym_schema_role, + [77117] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2857), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77131] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2859), 1, + anon_sym_SQUOTE, + STATE(1476), 1, + aux_sym_string_repeat1, + ACTIONS(2861), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77145] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77159] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1400), 1, + sym_trigger_when, + ACTIONS(2865), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [77171] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_SQUOTE, + STATE(1478), 1, + aux_sym_string_repeat1, + ACTIONS(2869), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77185] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2185), 1, aux_sym_if_statement_token1, - STATE(918), 1, - sym_identifier, - STATE(1801), 1, + STATE(1989), 1, sym_if_not_exists, - [76480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2235), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2239), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2241), 1, - aux_sym_alter_table_action_token1, - STATE(1904), 1, - sym_alter_table_action, - [76496] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76510] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_SQUOTE, - STATE(1516), 1, - aux_sym_string_repeat1, - ACTIONS(2924), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76524] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1289), 1, - sym_into, - ACTIONS(1757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76552] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - sym__identifier, - STATE(1254), 1, + STATE(2055), 1, sym_identifier, - STATE(1597), 1, - sym_index_col, - [76568] = 2, + [77201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [76578] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1762), 1, - sym_returning, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2928), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1283), 1, - sym_into, - ACTIONS(2492), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_COMMA, - STATE(1481), 1, - aux_sym_returning_repeat1, - ACTIONS(2742), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(227), 1, sym__identifier, - STATE(1254), 1, - sym_identifier, - STATE(1682), 1, - sym_index_col, - [76646] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2930), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76660] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(2131), 1, - sym_with_query, - STATE(2341), 1, - sym_select_statement, - [76676] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2932), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - aux_sym_string_repeat1, - ACTIONS(2748), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76690] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1308), 1, - sym_into, - ACTIONS(711), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(2169), 1, + ACTIONS(2185), 1, aux_sym_if_statement_token1, - STATE(1886), 1, + STATE(943), 1, + sym_identifier, + STATE(1982), 1, sym_if_not_exists, - STATE(2096), 1, - sym_identifier, - [76720] = 2, - ACTIONS(3), 1, + [77217] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(2934), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76730] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 1, - aux_sym_body_token1, - ACTIONS(2938), 1, - aux_sym_declarations_token1, - STATE(1533), 2, - sym_declarations, - aux_sym_block_repeat1, - [76744] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2941), 1, + ACTIONS(2871), 1, anon_sym_SQUOTE, - STATE(1494), 1, + STATE(1518), 1, aux_sym_string_repeat1, - ACTIONS(2943), 2, + ACTIONS(2829), 2, aux_sym_string_token1, aux_sym_string_token2, - [76758] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2945), 1, - anon_sym_SQUOTE, - STATE(1529), 1, - aux_sym_string_repeat1, - ACTIONS(2947), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76772] = 5, + [77231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, - sym__identifier, - STATE(1254), 1, - sym_identifier, - STATE(1647), 1, - sym_index_col, - [76788] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1806), 1, - sym_returning, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1301), 1, - sym_into, - ACTIONS(2136), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2381), 1, - aux_sym_trigger_cond_token1, - STATE(1824), 1, - sym_trigger_cond, - STATE(2208), 1, - sym_trigger_exec, - [76832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(2949), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [76846] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2951), 1, - aux_sym_grant_privileges_token1, - STATE(1622), 1, - sym_identifier, - STATE(2132), 1, - sym_grant_privileges, - [76862] = 4, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(2953), 1, - aux_sym_psql_statement_token1, - ACTIONS(2955), 1, - sym__identifier, - STATE(1542), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [76876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2804), 1, - sym__identifier, - STATE(1247), 2, - sym_string, - sym_identifier, - [76890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2958), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [76900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1303), 1, - sym_into, - ACTIONS(1830), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2960), 4, + ACTIONS(2873), 4, anon_sym_SEMI, aux_sym_create_function_statement_token1, aux_sym_body_token1, aux_sym_declarations_token1, - [76924] = 4, - ACTIONS(3), 1, + [77241] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1891), 1, - sym_into, - ACTIONS(2962), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76938] = 4, - ACTIONS(3), 1, + ACTIONS(2875), 1, + anon_sym_SQUOTE, + STATE(1483), 1, + aux_sym_string_repeat1, + ACTIONS(2877), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77255] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(1860), 1, - aux_sym_insert_statement_token2, - STATE(1954), 1, - sym_into, - ACTIONS(2964), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76952] = 5, - ACTIONS(3), 1, + ACTIONS(2879), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77269] = 4, + ACTIONS(2819), 1, sym_comment, - ACTIONS(2806), 1, - anon_sym_LPAREN, - ACTIONS(2808), 1, + ACTIONS(2881), 1, + anon_sym_SQUOTE, + STATE(1486), 1, + aux_sym_string_repeat1, + ACTIONS(2883), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77283] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2885), 1, + aux_sym_psql_statement_token1, + ACTIONS(2887), 1, sym__identifier, - STATE(1254), 1, + STATE(1488), 2, sym_identifier, - STATE(1902), 1, - sym_index_col, - [76968] = 4, + aux_sym_psql_statement_repeat1, + [77297] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2890), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1893), 1, - sym_returning, - ACTIONS(2966), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76982] = 4, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(2084), 1, + sym_select_statement, + STATE(2117), 1, + sym_with_query, + [77327] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2892), 1, + anon_sym_SQUOTE, + STATE(1489), 1, + aux_sym_string_repeat1, + ACTIONS(2894), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, - aux_sym_returning_token1, - STATE(1755), 1, - sym_returning, - ACTIONS(2397), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2968), 4, + ACTIONS(2896), 4, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, - [77006] = 4, + [77351] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77365] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2900), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(2970), 1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1368), 1, + sym_into, + ACTIONS(1799), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77019] = 4, + [77393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1909), 1, + sym_returning, + ACTIONS(2902), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77407] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_SQUOTE, + STATE(1494), 1, + aux_sym_string_repeat1, + ACTIONS(2906), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77421] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2908), 1, + aux_sym_update_statement_token2, + ACTIONS(2910), 1, + aux_sym_update_statement_token3, + STATE(2070), 1, + sym_identifier, + [77437] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2912), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2441), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [77461] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + STATE(1499), 1, + aux_sym_string_repeat1, + ACTIONS(2916), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77475] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1415), 1, + sym_trigger_when, + ACTIONS(2865), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [77487] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77501] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_SQUOTE, + STATE(1503), 1, + aux_sym_string_repeat1, + ACTIONS(2922), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1380), 1, + sym_into, + ACTIONS(2534), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77529] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2924), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77543] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2926), 1, + anon_sym_SQUOTE, + STATE(1506), 1, + aux_sym_string_repeat1, + ACTIONS(2928), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(2185), 1, + aux_sym_if_statement_token1, + STATE(1894), 1, + sym_if_not_exists, + STATE(2165), 1, + sym_identifier, + [77573] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2930), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77587] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2932), 1, + anon_sym_SQUOTE, + STATE(1509), 1, + aux_sym_string_repeat1, + ACTIONS(2934), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + aux_sym_body_token1, + aux_sym_declarations_token1, + [77611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 1, anon_sym_COMMA, - ACTIONS(2972), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1578), 1, - aux_sym_drop_type_statement_repeat1, - [77032] = 4, + STATE(1512), 1, + aux_sym_returning_repeat1, + ACTIONS(2108), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(2941), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [77635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2943), 1, + aux_sym_body_token1, + ACTIONS(2945), 1, + aux_sym_declarations_token1, + STATE(1514), 2, + sym_declarations, + aux_sym_block_repeat1, + [77649] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2948), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2829), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77663] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2950), 1, + anon_sym_SQUOTE, + STATE(1515), 1, + aux_sym_string_repeat1, + ACTIONS(2952), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + sym__identifier, + STATE(880), 1, + sym_identifier, + STATE(898), 1, + sym__list_of_identifiers, + [77693] = 4, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_SQUOTE, + STATE(1518), 1, + aux_sym_string_repeat1, + ACTIONS(2958), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [77707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1340), 1, + sym_into, + ACTIONS(1801), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1953), 1, + sym_returning, + ACTIONS(2429), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2961), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1834), 1, + sym_returning, + ACTIONS(2371), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1358), 1, + sym_into, + ACTIONS(2270), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2963), 1, + anon_sym_COMMA, + ACTIONS(2965), 1, + anon_sym_RPAREN, + ACTIONS(2967), 1, + aux_sym_insert_items_token1, + STATE(1535), 1, + aux_sym_create_type_statement_repeat2, + [77799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1772), 1, + sym_index_col, + [77815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1812), 1, + sym_into, + ACTIONS(2409), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77829] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(2117), 1, + sym_with_query, + STATE(2172), 1, + sym_select_statement, + [77845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2540), 1, + aux_sym_if_statement_token1, + STATE(1417), 1, + sym_identifier, + STATE(1801), 1, + sym_if_exists, + [77861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2275), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2279), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2281), 1, + aux_sym_alter_table_action_token1, + STATE(1792), 1, + sym_alter_table_action, + [77877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1348), 1, + sym_into, + ACTIONS(1833), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2973), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [77901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + anon_sym_COMMA, + STATE(1546), 1, + aux_sym_returning_repeat1, + ACTIONS(2796), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1846), 1, + sym_returning, + ACTIONS(2383), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [77929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2963), 1, anon_sym_COMMA, ACTIONS(2977), 1, anon_sym_RPAREN, - STATE(1555), 1, - aux_sym_insert_values_repeat1, - [77045] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(2979), 1, - anon_sym_COMMA, - ACTIONS(2981), 1, - anon_sym_RPAREN, - STATE(1751), 1, - aux_sym_create_table_statement_repeat1, - [77058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - anon_sym_DOLLAR, - STATE(1361), 1, - sym_dollar_quote, - STATE(2155), 1, - sym_block, - [77084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(938), 1, - anon_sym_SEMI, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(2985), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2987), 1, - sym__identifier, - STATE(1491), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [77121] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1343), 1, - sym_with_query_item, - STATE(1630), 1, - sym_identifier, - [77134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 1, - aux_sym_trigger_scope_token2, - ACTIONS(2989), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [77145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(1434), 1, - aux_sym_drop_type_statement_repeat1, - [77158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [77167] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2999), 1, - aux_sym_index_using_token1, - STATE(878), 1, - sym_join_condition, - [77180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_COMMA, - ACTIONS(3003), 1, - anon_sym_RPAREN, - STATE(1652), 1, - aux_sym_grant_function_repeat1, - [77193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, - aux_sym_index_using_token1, - ACTIONS(3005), 1, - aux_sym_insert_conflict_token1, - STATE(878), 1, - sym_join_condition, - [77206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_COMMA, - ACTIONS(3003), 1, - anon_sym_RPAREN, - STATE(1653), 1, - aux_sym_grant_function_repeat1, - [77219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_SEMI, - ACTIONS(3009), 1, - anon_sym_COMMA, - STATE(1570), 1, - aux_sym_grant_roles_repeat1, - [77232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(1732), 1, - aux_sym_drop_function_item_repeat1, - [77245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(3016), 1, - aux_sym_update_statement_token2, - STATE(885), 1, - sym_identifier, - [77258] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 1, - anon_sym_SEMI, - ACTIONS(3020), 1, - anon_sym_COMMA, - STATE(1570), 1, - aux_sym_grant_roles_repeat1, - [77271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(1734), 1, - aux_sym_drop_function_item_repeat1, - [77284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2999), 1, - aux_sym_index_using_token1, - ACTIONS(3022), 1, - aux_sym_insert_conflict_token1, - STATE(878), 1, - sym_join_condition, - [77297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3027), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_update_set_repeat1, - [77310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 1, - anon_sym_COMMA, - ACTIONS(3031), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_update_set_repeat1, - [77323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(3033), 1, - aux_sym_alter_table_rename_column_token2, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - [77336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_create_type_statement_repeat1, - [77362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(3033), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1704), 1, - aux_sym_drop_type_statement_repeat1, - [77375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(3044), 1, - anon_sym_COMMA, - STATE(1703), 1, - aux_sym_grant_targets_repeat1, - [77401] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_SEMI, - ACTIONS(3048), 1, - anon_sym_COMMA, - STATE(1698), 1, - aux_sym_alter_table_change_repeat1, - [77414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_COMMA, - ACTIONS(3052), 1, - anon_sym_RPAREN, - STATE(1744), 1, + aux_sym_insert_items_token1, + STATE(1549), 1, aux_sym_create_type_statement_repeat2, - [77427] = 4, + [77945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1947), 1, - sym_identifier, - STATE(1948), 1, - sym_function_signature, - [77440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_SEMI, - ACTIONS(2424), 1, - aux_sym_function_run_as_token1, - STATE(2034), 1, - sym_function_run_as, - [77466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3056), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1381), 1, - sym_identifier, - STATE(1842), 1, - sym_table_column_item, - [77492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_COMMA, - ACTIONS(3065), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [77518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1399), 1, - sym_identifier, - STATE(1746), 1, - sym_var_declaration, - [77531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2650), 1, - anon_sym_SEMI, - STATE(2031), 1, - sym_where_filter, - [77544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3067), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [77570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(1661), 1, - aux_sym_create_index_statement_repeat1, - [77583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3073), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1391), 1, - sym_identifier, - STATE(1749), 1, - sym_var_declaration, - [77609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [77618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3077), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3079), 3, - aux_sym_create_table_statement_token1, - aux_sym_grant_targets_token5, - sym_unlogged, - [77640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3081), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77653] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, - anon_sym_COMMA, - STATE(1727), 1, - aux_sym_create_table_statement_repeat1, - [77666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 1, - aux_sym_create_table_statement_token1, - ACTIONS(3085), 1, - aux_sym_grant_targets_token5, - ACTIONS(3087), 1, - sym_unlogged, - [77679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [77701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, - anon_sym_COMMA, - STATE(1751), 1, - aux_sym_create_table_statement_repeat1, - [77727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - STATE(2085), 1, - sym_identifier, - [77740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 3, - aux_sym_body_token1, - aux_sym_declarations_token1, - sym__identifier, - [77749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - anon_sym_COMMA, - ACTIONS(3101), 1, - anon_sym_SEMI, - STATE(1670), 1, - aux_sym_returning_repeat1, - [77775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 3, + ACTIONS(2981), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [77784] = 4, + aux_sym_constraint_when_token1, + [77955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2013), 1, - sym_function_call, - STATE(2146), 1, - sym_identifier, - [77797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3105), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3107), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [77819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1788), 1, - sym_identifier, - STATE(2056), 1, - sym_assign_statement, - [77832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3109), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 1, - anon_sym_COMMA, - ACTIONS(3115), 1, - aux_sym_grant_targets_token4, - STATE(1648), 1, - aux_sym_drop_type_statement_repeat1, - [77871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(3117), 1, - aux_sym_insert_conflict_token1, - STATE(1697), 1, - aux_sym_drop_type_statement_repeat1, - [77884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_COMMA, - ACTIONS(3119), 1, - anon_sym_RPAREN, - STATE(1751), 1, - aux_sym_create_table_statement_repeat1, - [77897] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(3123), 1, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1722), 1, + sym_index_col, + [77971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1695), 1, + sym_index_col, + [77987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [77997] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2989), 1, + aux_sym_insert_conflict_token3, + STATE(2039), 1, + sym_conflict_target, + [78013] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1968), 1, + sym_into, + ACTIONS(2405), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1985), 1, + sym_into, + ACTIONS(2554), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(890), 1, aux_sym_index_using_token1, - STATE(2252), 1, - sym_index_using, - [77910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3125), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [77945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3131), 1, - anon_sym_RPAREN, - STATE(1752), 1, - aux_sym_create_index_statement_repeat1, - [77958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3133), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [77971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - ACTIONS(3135), 1, - aux_sym_update_statement_token2, - STATE(2108), 1, - sym__list_of_identifiers, - [77984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3139), 1, - aux_sym_trigger_event_token2, - STATE(1750), 1, - aux_sym_trigger_event_repeat1, - [77997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(3143), 1, - aux_sym_into_token1, - STATE(960), 1, - sym_identifier, - [78023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2711), 1, + STATE(1992), 1, + sym_execute_using, + ACTIONS(2991), 2, anon_sym_SEMI, - STATE(2201), 1, - sym_where_filter, - [78036] = 4, + aux_sym_for_statement_token2, + [78055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1371), 1, + sym_into, + ACTIONS(1888), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78049] = 2, + [78069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [78058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3149), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3139), 1, - aux_sym_trigger_event_token2, - ACTIONS(3151), 1, - aux_sym_insert_conflict_token1, - STATE(1631), 1, - aux_sym_trigger_event_repeat1, - [78084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1945), 1, + sym_returning, + ACTIONS(2367), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + anon_sym_COMMA, + STATE(1512), 1, + aux_sym_returning_repeat1, + ACTIONS(2794), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, [78097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(3155), 1, - aux_sym_sequence_owned_token2, - STATE(1144), 1, - sym_identifier, - [78110] = 4, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1931), 1, + sym_returning, + ACTIONS(2425), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - aux_sym_index_using_token1, - ACTIONS(3157), 1, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(2954), 1, + sym__identifier, + STATE(1277), 2, + sym_string, + sym_identifier, + [78125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2993), 1, + anon_sym_COMMA, + STATE(1549), 1, + aux_sym_create_type_statement_repeat2, + ACTIONS(2996), 2, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [78139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1929), 1, + sym_into, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [78163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1344), 1, + sym_into, + ACTIONS(2189), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, anon_sym_LPAREN, - STATE(2175), 1, - sym_index_using, - [78123] = 4, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1657), 1, + sym_index_col, + [78193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1988), 1, + sym_index_col, + [78209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 1, + aux_sym_index_col_nulls_token1, + STATE(1908), 1, + sym_index_col_nulls, + ACTIONS(3002), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [78233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1884), 1, + sym_into, + ACTIONS(2600), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1879), 1, + sym_into, + ACTIONS(2560), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78261] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1875), 1, + sym_into, + ACTIONS(3006), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1322), 1, + sym_into, + ACTIONS(1978), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [78299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1816), 1, + sym_returning, + ACTIONS(2363), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [78323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1582), 1, + sym_index_col, + [78339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [78349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2437), 1, + aux_sym_trigger_cond_token1, + STATE(1787), 1, + sym_trigger_cond, + STATE(2366), 1, + sym_trigger_exec, + [78365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + ACTIONS(2954), 1, + sym__identifier, + STATE(1293), 2, + sym_string, + sym_identifier, + [78379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [78389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1922), 1, + sym_into, + ACTIONS(3016), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(3018), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [78417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1317), 1, + sym_into, + ACTIONS(2049), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1863), 1, + sym_into, + ACTIONS(3020), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1886), 1, + aux_sym_insert_statement_token2, + STATE(1854), 1, + sym_into, + ACTIONS(2552), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_returning_token1, + STATE(1862), 1, + sym_returning, + ACTIONS(2443), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [78473] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2437), 1, + aux_sym_trigger_cond_token1, + STATE(1811), 1, + sym_trigger_cond, + STATE(2296), 1, + sym_trigger_exec, + [78489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__identifier, + STATE(1274), 1, + sym_identifier, + STATE(1754), 1, + sym_index_col, + [78505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3022), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [78518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + aux_sym_insert_items_token1, + ACTIONS(3026), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3028), 1, + aux_sym_alter_column_action_token3, + [78531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_DOLLAR, + STATE(1397), 1, + sym_dollar_quote, + STATE(2313), 1, + sym_block, + [78544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3030), 1, + sym__identifier, + STATE(1459), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [78555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1363), 1, + sym_with_query_item, + STATE(1601), 1, + sym_identifier, + [78568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3034), 1, + anon_sym_RPAREN, + STATE(1764), 1, + aux_sym_create_index_statement_repeat1, + [78581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3034), 1, + anon_sym_RPAREN, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [78594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(2534), 1, + aux_sym_for_statement_token2, + STATE(1380), 1, + sym_into, + [78607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2774), 1, + anon_sym_SEMI, + STATE(2295), 1, + sym_where_filter, + [78620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1888), 1, + aux_sym_for_statement_token2, + STATE(1371), 1, + sym_into, + [78633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(2189), 1, + aux_sym_for_statement_token2, + STATE(1344), 1, + sym_into, + [78646] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1832), 1, + sym_function_signature, + STATE(1838), 1, + sym_identifier, + [78659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1833), 1, + aux_sym_for_statement_token2, + STATE(1348), 1, + sym_into, + [78672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(2049), 1, + aux_sym_for_statement_token2, + STATE(1317), 1, + sym_into, + [78685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, + aux_sym_function_run_as_token1, + ACTIONS(2507), 1, + anon_sym_SEMI, + STATE(2392), 1, + sym_function_run_as, + [78698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 3, + aux_sym_create_table_statement_token1, + aux_sym_grant_targets_token5, + sym_unlogged, + [78707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + aux_sym_create_table_statement_token1, + ACTIONS(3040), 1, + aux_sym_grant_targets_token5, + ACTIONS(3042), 1, + sym_unlogged, + [78720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + ACTIONS(3044), 1, + anon_sym_DOLLAR, + STATE(2167), 1, + sym_identifier, + [78733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1978), 1, + aux_sym_for_statement_token2, + STATE(1322), 1, + sym_into, + [78746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3049), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_type_statement_repeat1, + [78759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(3051), 1, + aux_sym_insert_conflict_token1, + STATE(1642), 1, + aux_sym_drop_type_statement_repeat1, + [78772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3055), 1, + aux_sym_index_using_token1, + STATE(903), 1, + sym_join_condition, + [78785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + anon_sym_COMMA, + ACTIONS(3059), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_update_set_repeat1, + [78798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3061), 1, + anon_sym_COMMA, + ACTIONS(3064), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_update_set_repeat1, + [78811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + aux_sym_update_statement_token2, + STATE(2019), 1, + sym__list_of_identifiers, + [78824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(3068), 1, + aux_sym_into_token1, + STATE(987), 1, + sym_identifier, + [78837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1801), 1, + aux_sym_for_statement_token2, + STATE(1340), 1, + sym_into, + [78850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + aux_sym_grant_targets_token4, + ACTIONS(3070), 1, + anon_sym_COMMA, + STATE(1604), 1, + aux_sym_drop_type_statement_repeat1, + [78863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2138), 1, + sym_identifier, + STATE(2258), 1, + sym_function_call, + [78876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, + aux_sym_index_using_token1, + ACTIONS(3073), 1, + aux_sym_insert_conflict_token1, + STATE(903), 1, + sym_join_condition, + [78889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3075), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [78902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3077), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [78915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + ACTIONS(1799), 1, + aux_sym_for_statement_token2, + STATE(1368), 1, + sym_into, + [78928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + anon_sym_SEMI, + ACTIONS(3081), 1, + anon_sym_COMMA, + STATE(1611), 1, + aux_sym_grant_roles_repeat1, + [78941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3083), 1, + anon_sym_SEMI, + ACTIONS(3085), 1, + anon_sym_COMMA, + STATE(1611), 1, + aux_sym_grant_roles_repeat1, + [78954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3088), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [78967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(792), 1, + aux_sym_for_statement_token2, + ACTIONS(888), 1, + aux_sym_insert_statement_token2, + STATE(1346), 1, + sym_into, + [78980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3090), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [78993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_RPAREN, + STATE(1721), 1, + aux_sym_grant_function_repeat1, + [79006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_RPAREN, + STATE(1717), 1, + aux_sym_grant_function_repeat1, + [79019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3096), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3098), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym__identifier, + ACTIONS(3100), 1, + aux_sym_into_token1, + STATE(1474), 1, + sym_identifier, + [79058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3102), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3106), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_SEMI, + ACTIONS(3110), 1, + aux_sym_schema_role_token1, + STATE(2042), 1, + sym_schema_role, + [79106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3112), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_COMMA, + ACTIONS(3116), 1, + anon_sym_RPAREN, + STATE(1630), 1, + aux_sym_create_table_statement_repeat1, + [79132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2526), 1, + aux_sym_insert_conflict_token1, + STATE(2035), 1, + sym_identifier, + [79145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3118), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3122), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_COMMA, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(1729), 1, + aux_sym_create_table_statement_repeat1, + [79193] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3126), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1838), 1, + sym_identifier, + STATE(1984), 1, + sym_function_signature, + [79219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3134), 1, + anon_sym_COMMA, + ACTIONS(3137), 1, + anon_sym_RPAREN, + STATE(1636), 1, + aux_sym_insert_values_repeat1, + [79267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3139), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2209), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1640), 1, + aux_sym_create_table_statement_repeat1, + [79293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3141), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_COMMA, + ACTIONS(3116), 1, + anon_sym_RPAREN, + STATE(1729), 1, + aux_sym_create_table_statement_repeat1, + [79319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(3143), 1, + anon_sym_SEMI, + STATE(2245), 1, + sym_where_filter, + [79332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + aux_sym_insert_conflict_token1, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + [79345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3147), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, + aux_sym_trigger_scope_token2, + ACTIONS(3151), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [79378] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3155), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79391] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1429), 1, + sym_with_query_item, + STATE(1601), 1, + sym_identifier, + [79404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79417] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3159), 1, anon_sym_COMMA, - ACTIONS(3161), 1, + ACTIONS(3162), 1, anon_sym_RPAREN, - STATE(1739), 1, - aux_sym_insert_values_repeat1, - [78136] = 4, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [79430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3168), 1, + aux_sym_with_query_item_token1, + [79443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2727), 1, anon_sym_SEMI, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78149] = 4, + STATE(2381), 1, + sym_where_filter, + [79456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3165), 1, + ACTIONS(2498), 1, anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78162] = 2, + ACTIONS(2684), 1, + sym__identifier, + STATE(1711), 1, + sym_identifier, + [79469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 3, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, + anon_sym_LPAREN, + ACTIONS(3174), 1, + aux_sym_index_using_token1, + STATE(2389), 1, + sym_index_using, + [79495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [78171] = 4, + [79504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, - ACTIONS(3169), 1, + ACTIONS(3178), 1, anon_sym_RBRACK, - STATE(1304), 1, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78184] = 4, + [79517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_create_index_statement_repeat1, - [78197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 1, - anon_sym_COMMA, - ACTIONS(3173), 1, - aux_sym_grant_targets_token4, - STATE(1748), 1, - aux_sym_drop_type_statement_repeat1, - [78210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1788), 1, - sym_identifier, - STATE(2174), 1, - sym_assign_statement, - [78236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [78249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, + ACTIONS(3032), 1, anon_sym_COMMA, ACTIONS(3180), 1, anon_sym_RPAREN, - STATE(1652), 1, - aux_sym_grant_function_repeat1, - [78262] = 4, + STATE(1583), 1, + aux_sym_create_index_statement_repeat1, + [79530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_RPAREN, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [79543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3182), 1, anon_sym_RPAREN, - STATE(1652), 1, - aux_sym_grant_function_repeat1, - [78275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3184), 1, - anon_sym_RPAREN, - STATE(1304), 1, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78288] = 4, + [79556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, - sym__identifier, + ACTIONS(3184), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [79565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, ACTIONS(3186), 1, - aux_sym_insert_conflict_token1, - STATE(2119), 1, - sym_identifier, - [78301] = 2, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3188), 3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [78310] = 4, + [79587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - aux_sym_index_using_token1, ACTIONS(3190), 1, - anon_sym_LPAREN, - STATE(2130), 1, - sym_index_using, - [78323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, anon_sym_COMMA, ACTIONS(3192), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78336] = 4, + anon_sym_RPAREN, + STATE(1696), 1, + aux_sym_create_type_statement_repeat2, + [79600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3194), 1, - anon_sym_RPAREN, - STATE(1304), 1, + anon_sym_RBRACK, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78349] = 4, + [79613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - anon_sym_SEMI, - STATE(1984), 1, - sym_where_filter, - [78362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, ACTIONS(3196), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [78375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, - anon_sym_COMMA, - STATE(1609), 1, - aux_sym_create_table_statement_repeat1, - [78388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RPAREN, - STATE(1681), 1, - aux_sym_create_index_statement_repeat1, - [78401] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, anon_sym_COMMA, ACTIONS(3198), 1, anon_sym_RPAREN, - STATE(1304), 1, + STATE(1596), 1, + aux_sym_create_type_statement_repeat1, + [79626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3200), 1, + anon_sym_RPAREN, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78414] = 2, + [79639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [78423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, + ACTIONS(3032), 1, anon_sym_COMMA, ACTIONS(3202), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78436] = 4, + anon_sym_RPAREN, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [79652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - aux_sym_function_run_as_token1, + ACTIONS(3057), 1, + anon_sym_COMMA, ACTIONS(3204), 1, - anon_sym_SEMI, - STATE(2037), 1, - sym_function_run_as, - [78449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_COMMA, - ACTIONS(2981), 1, anon_sym_RPAREN, - STATE(1623), 1, - aux_sym_create_table_statement_repeat1, - [78462] = 2, + STATE(1599), 1, + aux_sym_update_set_repeat1, + [79665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 3, - anon_sym_SEMI, + ACTIONS(3057), 1, anon_sym_COMMA, + ACTIONS(3204), 1, anon_sym_RPAREN, - [78471] = 4, + STATE(1600), 1, + aux_sym_update_set_repeat1, + [79678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2697), 1, + anon_sym_SEMI, + STATE(2113), 1, + sym_where_filter, + [79691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3208), 1, anon_sym_SEMI, - STATE(1462), 1, - aux_sym_returning_repeat1, - [78484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3210), 1, - anon_sym_RPAREN, - STATE(1304), 1, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78497] = 2, + [79717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 3, + ACTIONS(3210), 3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [78506] = 4, + [79726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3212), 1, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3214), 1, - anon_sym_RBRACK, - STATE(1304), 1, + anon_sym_RPAREN, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78519] = 4, + [79752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3216), 1, anon_sym_RPAREN, - STATE(1304), 1, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78532] = 4, + [79765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - anon_sym_RPAREN, + ACTIONS(3081), 1, + anon_sym_COMMA, ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1610), 1, + aux_sym_grant_roles_repeat1, + [79778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, anon_sym_COMMA, - STATE(1675), 1, - aux_sym_create_type_statement_repeat2, - [78545] = 4, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1611), 1, + aux_sym_grant_roles_repeat1, + [79791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1399), 1, - sym_identifier, - STATE(1749), 1, - sym_var_declaration, - [78558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3221), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 3, + ACTIONS(3220), 3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [78580] = 4, + [79800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(932), 1, + ACTIONS(3092), 1, anon_sym_COMMA, - ACTIONS(3225), 1, + ACTIONS(3222), 1, + anon_sym_RPAREN, + STATE(1616), 1, + aux_sym_grant_function_repeat1, + [79813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, anon_sym_RBRACK, - STATE(1304), 1, + STATE(1350), 1, aux_sym_conflict_target_repeat1, - [78593] = 4, + [79826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1399), 1, - sym_identifier, - STATE(1585), 1, - sym_var_declaration, - [78606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [78619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RPAREN, - STATE(1693), 1, - aux_sym_create_index_statement_repeat1, - [78632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, + ACTIONS(3226), 1, anon_sym_COMMA, ACTIONS(3229), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [78645] = 4, + aux_sym_alter_table_rename_column_token2, + STATE(1682), 1, + aux_sym_grant_targets_repeat1, + [79839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, - anon_sym_COMMA, + ACTIONS(3110), 1, + aux_sym_schema_role_token1, ACTIONS(3231), 1, - anon_sym_RPAREN, - STATE(1675), 1, - aux_sym_create_type_statement_repeat2, - [78658] = 4, + anon_sym_SEMI, + STATE(2145), 1, + sym_schema_role, + [79852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(2762), 1, + aux_sym_insert_conflict_token1, + STATE(2152), 1, + sym_identifier, + [79865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, anon_sym_COMMA, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_create_type_statement_repeat1, - [78671] = 4, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_index_using_token1, + ACTIONS(3235), 1, + anon_sym_LPAREN, + STATE(2157), 1, + sym_index_using, + [79891] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3237), 1, - anon_sym_SEMI, + aux_sym_sequence_min_token1, ACTIONS(3239), 1, - aux_sym_schema_role_token1, - STATE(2213), 1, - sym_schema_role, - [78684] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2560), 1, - aux_sym_insert_conflict_token1, - STATE(2220), 1, - sym_identifier, - [78697] = 4, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_max_token1, ACTIONS(3241), 1, - aux_sym_insert_items_token1, - ACTIONS(3243), 1, - aux_sym_alter_column_action_token1, + aux_sym_sequence_cycle_token1, + [79904] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(3245), 1, - aux_sym_alter_column_action_token3, - [78710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, - sym__identifier, - STATE(1381), 1, - sym_identifier, - STATE(1845), 1, - sym_table_column_item, - [78723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 1, - anon_sym_RPAREN, - ACTIONS(3012), 1, - anon_sym_COMMA, - STATE(1574), 1, - aux_sym_drop_function_item_repeat1, - [78736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2628), 1, + aux_sym_index_using_token1, + ACTIONS(3243), 2, anon_sym_SEMI, - STATE(2093), 1, - sym_where_filter, - [78749] = 4, + anon_sym_COMMA, + [79915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1802), 1, - sym_function_signature, - STATE(1947), 1, - sym_identifier, - [78762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3247), 1, anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [78775] = 4, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_update_set_repeat1, - [78788] = 4, + ACTIONS(3249), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [79937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_update_set_repeat1, - [78801] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2713), 1, - anon_sym_SEMI, - STATE(2107), 1, - sym_where_filter, - [78814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3251), 1, - aux_sym_insert_conflict_token1, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - [78827] = 4, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79950] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, ACTIONS(3253), 1, - anon_sym_SEMI, - ACTIONS(3255), 1, - anon_sym_COMMA, - STATE(1698), 1, - aux_sym_alter_table_change_repeat1, - [78840] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1861), 1, - sym_grant_function, - STATE(2227), 1, - sym_identifier, - [78853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1346), 1, - sym_with_query_item, - STATE(1630), 1, - sym_identifier, - [78866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3262), 1, - aux_sym_with_query_item_token1, - [78879] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, anon_sym_RPAREN, - ACTIONS(2626), 1, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [79963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3255), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, sym__identifier, - STATE(1737), 1, - sym_identifier, - [78892] = 4, + [79972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1715), 1, - aux_sym_grant_targets_repeat1, - [78905] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - aux_sym_alter_table_rename_column_token2, - STATE(917), 1, - aux_sym_drop_type_statement_repeat1, - [78918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2317), 1, + ACTIONS(2361), 1, aux_sym_where_filter_token1, - ACTIONS(3266), 1, + ACTIONS(2673), 1, anon_sym_SEMI, - STATE(2123), 1, + STATE(2156), 1, sym_where_filter, - [78931] = 4, + [79985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_RPAREN, + STATE(1667), 1, + aux_sym_create_index_statement_repeat1, + [79998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_RPAREN, + ACTIONS(3259), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_create_type_statement_repeat2, + [80011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1325), 1, + sym_identifier, + STATE(1739), 1, + sym_var_declaration, + [80024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3264), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [80046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, anon_sym_COMMA, ACTIONS(3268), 1, - anon_sym_SEMI, - STATE(1710), 1, - aux_sym_grant_roles_repeat1, - [78944] = 4, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - aux_sym_where_filter_token1, - ACTIONS(2642), 1, - anon_sym_SEMI, - STATE(2064), 1, - sym_where_filter, - [78957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(285), 1, - sym__identifier, - ACTIONS(3270), 1, - aux_sym_into_token1, - STATE(1485), 1, - sym_identifier, - [78970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, + ACTIONS(3032), 1, anon_sym_COMMA, - ACTIONS(3272), 1, - anon_sym_SEMI, - STATE(1573), 1, - aux_sym_grant_roles_repeat1, - [78983] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3272), 1, - anon_sym_SEMI, - STATE(1570), 1, - aux_sym_grant_roles_repeat1, - [78996] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(2492), 1, - aux_sym_for_statement_token2, - STATE(1283), 1, - sym_into, - [79009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(2265), 1, - aux_sym_for_statement_token2, - STATE(1278), 1, - sym_into, - [79022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_COMMA, - ACTIONS(3274), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - STATE(1567), 1, - aux_sym_grant_function_repeat1, - [79035] = 4, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [80072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(3272), 1, + aux_sym_alter_table_action_token2, + STATE(1373), 1, + sym_identifier, + [80098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3274), 1, + anon_sym_SEMI, + ACTIONS(3276), 1, + anon_sym_COMMA, + STATE(1734), 1, + aux_sym_alter_table_change_repeat1, + [80111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2717), 1, + anon_sym_SEMI, + STATE(2061), 1, + sym_where_filter, + [80124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1735), 1, + sym_grant_function, + STATE(1999), 1, + sym_identifier, + [80137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_COMMA, + ACTIONS(3280), 1, + anon_sym_RPAREN, + STATE(1636), 1, + aux_sym_insert_values_repeat1, + [80150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3282), 3, + aux_sym_grant_targets_token1, + aux_sym_grant_targets_token2, + aux_sym_grant_targets_token3, + [80159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(3284), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1737), 1, + aux_sym_drop_type_statement_repeat1, + [80172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3286), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3288), 1, + aux_sym_trigger_event_token2, + STATE(1710), 1, + aux_sym_trigger_event_repeat1, + [80185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + ACTIONS(3291), 1, + anon_sym_RPAREN, + STATE(1738), 1, + aux_sym_drop_type_statement_repeat1, + [80198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(3295), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3297), 1, + aux_sym_with_query_item_token1, + [80211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(1006), 1, + anon_sym_SEMI, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, aux_sym_insert_statement_token2, - ACTIONS(2136), 1, + ACTIONS(2270), 1, aux_sym_for_statement_token2, - STATE(1301), 1, + STATE(1358), 1, sym_into, - [79048] = 4, + [80237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_index_col_nulls_token1, + [80246] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3301), 1, + anon_sym_RPAREN, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [80259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3303), 1, + anon_sym_COMMA, + ACTIONS(3306), 1, + anon_sym_RPAREN, + STATE(1717), 1, + aux_sym_grant_function_repeat1, + [80272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2415), 1, + anon_sym_RPAREN, + ACTIONS(3308), 1, + anon_sym_COMMA, + STATE(1753), 1, + aux_sym_drop_function_item_repeat1, + [80285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_index_using_token1, + ACTIONS(3310), 1, + anon_sym_LPAREN, + STATE(2127), 1, + sym_index_using, + [80298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1759), 1, + aux_sym_create_table_statement_repeat1, + [80311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_COMMA, + ACTIONS(3312), 1, + anon_sym_RPAREN, + STATE(1717), 1, + aux_sym_grant_function_repeat1, + [80324] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3301), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym_create_index_statement_repeat1, + [80337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_index_using_token1, + ACTIONS(3314), 1, + anon_sym_LPAREN, + STATE(2281), 1, + sym_index_using, + [80350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(3316), 1, + aux_sym_insert_conflict_token1, + STATE(2285), 1, + sym_identifier, + [80363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(3318), 1, + aux_sym_sequence_owned_token2, + STATE(1163), 1, + sym_identifier, + [80376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3320), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3322), 1, + aux_sym_trigger_event_token2, + STATE(1763), 1, + aux_sym_trigger_event_repeat1, + [80389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + aux_sym_grant_targets_token4, + STATE(1773), 1, + aux_sym_drop_type_statement_repeat1, + [80402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1975), 1, + sym_identifier, + STATE(2301), 1, + sym_assign_statement, + [80415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 1, + anon_sym_COMMA, + ACTIONS(3331), 1, + anon_sym_RPAREN, + STATE(1729), 1, + aux_sym_create_table_statement_repeat1, + [80428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1325), 1, + sym_identifier, + STATE(1775), 1, + sym_var_declaration, + [80441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + sym__identifier, + [80450] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1316), 1, + sym_identifier, + STATE(1799), 1, + sym_table_column_item, + [80463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2209), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1729), 1, + aux_sym_create_table_statement_repeat1, + [80476] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(3279), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1715), 1, - aux_sym_grant_targets_repeat1, - [79061] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(2076), 1, - aux_sym_for_statement_token2, - STATE(1334), 1, - sym_into, - [79074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 1, - aux_sym_index_using_token1, - ACTIONS(3281), 2, + ACTIONS(3335), 1, anon_sym_SEMI, - anon_sym_COMMA, - [79085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3285), 3, - aux_sym_body_token1, - aux_sym_declarations_token1, - sym__identifier, - [79094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1948), 1, - aux_sym_for_statement_token2, - STATE(1312), 1, - sym_into, - [79107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 1, - aux_sym_schema_role_token1, - ACTIONS(3287), 1, - anon_sym_SEMI, - STATE(2045), 1, - sym_schema_role, - [79120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3289), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [79133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(3291), 1, - anon_sym_RPAREN, - STATE(1304), 1, - aux_sym_conflict_target_repeat1, - [79146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(2596), 1, - aux_sym_insert_conflict_token1, - STATE(2053), 1, - sym_identifier, - [79159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1862), 1, - aux_sym_for_statement_token2, - STATE(1333), 1, - sym_into, - [79172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3123), 1, - aux_sym_index_using_token1, - ACTIONS(3293), 1, - anon_sym_LPAREN, - STATE(2061), 1, - sym_index_using, - [79185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 1, - aux_sym_sequence_min_token1, - ACTIONS(3297), 1, - aux_sym_sequence_max_token1, - ACTIONS(3299), 1, - aux_sym_sequence_cycle_token1, - [79198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, - anon_sym_COMMA, - STATE(1751), 1, - aux_sym_create_table_statement_repeat1, - [79211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_index_col_nulls_token1, - [79220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 3, - aux_sym_grant_targets_token1, - aux_sym_grant_targets_token2, - aux_sym_grant_targets_token3, - [79229] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1830), 1, - aux_sym_for_statement_token2, - STATE(1303), 1, - sym_into, - [79242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RPAREN, - STATE(1651), 1, - aux_sym_create_index_statement_repeat1, - [79255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - anon_sym_COMMA, - ACTIONS(3307), 1, - anon_sym_RPAREN, - STATE(1734), 1, - aux_sym_drop_function_item_repeat1, - [79268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1583), 1, - sym_grant_function, - STATE(2227), 1, - sym_identifier, - [79281] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_COMMA, - ACTIONS(3312), 1, - anon_sym_RPAREN, - STATE(1734), 1, - aux_sym_drop_function_item_repeat1, - [79294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_for_statement_token2, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - STATE(1308), 1, - sym_into, - [79307] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - ACTIONS(3316), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3318), 1, - aux_sym_with_query_item_token1, - [79320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2765), 1, - anon_sym_COMMA, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(1564), 1, - aux_sym_drop_type_statement_repeat1, - [79333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_SEMI, - STATE(1584), 1, + STATE(1771), 1, aux_sym_alter_table_change_repeat1, - [79346] = 4, + [80489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3337), 1, anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RPAREN, - STATE(1555), 1, - aux_sym_insert_values_repeat1, - [79359] = 4, + ACTIONS(3339), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1769), 1, + aux_sym_grant_targets_repeat1, + [80502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, + ACTIONS(1992), 1, anon_sym_COMMA, - STATE(1556), 1, - aux_sym_create_table_statement_repeat1, - [79372] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1779), 1, - aux_sym_for_statement_token2, - STATE(1287), 1, - sym_into, - [79385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RPAREN, - STATE(1695), 1, - aux_sym_update_set_repeat1, - [79398] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3123), 1, - aux_sym_index_using_token1, - ACTIONS(3328), 1, - anon_sym_LPAREN, - STATE(2077), 1, - sym_index_using, - [79411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_COMMA, - ACTIONS(3330), 1, - anon_sym_RPAREN, - STATE(1675), 1, - aux_sym_create_type_statement_repeat2, - [79424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_COMMA, - ACTIONS(3330), 1, - anon_sym_RPAREN, - STATE(1685), 1, - aux_sym_create_type_statement_repeat1, - [79437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RPAREN, - STATE(1684), 1, - aux_sym_create_type_statement_repeat2, - [79450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 1, - sym__identifier, - ACTIONS(3334), 1, - aux_sym_alter_table_action_token2, - STATE(1323), 1, - sym_identifier, - [79463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1888), 1, - aux_sym_grant_targets_token4, - ACTIONS(3336), 1, - anon_sym_COMMA, - STATE(1748), 1, + ACTIONS(3339), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1768), 1, aux_sym_drop_type_statement_repeat1, - [79476] = 2, + [80515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 3, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(3339), 1, + aux_sym_alter_table_rename_column_token2, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + [80528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_RPAREN, + STATE(1450), 1, + aux_sym_drop_type_statement_repeat1, + [80541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 3, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_items_token1, - [79485] = 4, + [80550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(227), 1, + sym__identifier, + ACTIONS(3343), 1, + aux_sym_update_statement_token2, + STATE(901), 1, + sym_identifier, + [80563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, + aux_sym_index_using_token1, + ACTIONS(3345), 1, aux_sym_insert_conflict_token1, - ACTIONS(3341), 1, - aux_sym_trigger_event_token2, - STATE(1750), 1, - aux_sym_trigger_event_repeat1, - [79498] = 4, + STATE(903), 1, + sym_join_condition, + [80576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, + ACTIONS(3190), 1, anon_sym_COMMA, ACTIONS(3347), 1, anon_sym_RPAREN, - STATE(1751), 1, - aux_sym_create_table_statement_repeat1, - [79511] = 4, + STATE(1663), 1, + aux_sym_create_type_statement_repeat2, + [80589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(3196), 1, anon_sym_COMMA, - ACTIONS(3305), 1, + ACTIONS(3349), 1, anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_create_index_statement_repeat1, - [79524] = 4, + STATE(1665), 1, + aux_sym_create_type_statement_repeat1, + [80602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - aux_sym_insert_statement_token2, - ACTIONS(1757), 1, - aux_sym_for_statement_token2, - STATE(1289), 1, - sym_into, - [79537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 2, + ACTIONS(3190), 1, anon_sym_COMMA, + ACTIONS(3349), 1, anon_sym_RPAREN, - [79545] = 2, + STATE(1696), 1, + aux_sym_create_type_statement_repeat2, + [80615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 2, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(3351), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [79553] = 2, + STATE(1761), 1, + aux_sym_returning_repeat1, + [80628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 2, - anon_sym_LPAREN, - sym__identifier, - [79561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1442), 1, - sym_identifier, - [79571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 2, - aux_sym_insert_conflict_token1, - sym__identifier, - [79579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3312), 2, + ACTIONS(3057), 1, anon_sym_COMMA, + ACTIONS(3353), 1, anon_sym_RPAREN, - [79587] = 2, + STATE(1669), 1, + aux_sym_update_set_repeat1, + [80641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 2, + ACTIONS(954), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [79595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2126), 1, - sym_identifier, - [79605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79613] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(3355), 1, - aux_sym_update_statement_token1, - ACTIONS(3357), 1, - aux_sym_insert_conflict_token4, - [79623] = 2, + anon_sym_RBRACK, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2962), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 1, - anon_sym_STAR, - STATE(474), 1, - sym_star, - [79649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3359), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1195), 1, - sym_identifier, - [79667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - STATE(2208), 1, - sym_trigger_exec, - [79677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1581), 1, - sym_identifier, - [79695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 2, + ACTIONS(3357), 3, + aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [79703] = 2, + [80663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 2, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3359), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3361), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, + anon_sym_RPAREN, + STATE(1750), 1, + aux_sym_drop_function_item_repeat1, + [80689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, + anon_sym_RPAREN, + STATE(1752), 1, + aux_sym_drop_function_item_repeat1, + [80702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3368), 1, + anon_sym_RPAREN, + STATE(1750), 1, + aux_sym_drop_function_item_repeat1, + [80715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, + anon_sym_RPAREN, + STATE(1750), 1, + aux_sym_drop_function_item_repeat1, + [80728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3370), 1, + anon_sym_RPAREN, + STATE(1701), 1, + aux_sym_create_index_statement_repeat1, + [80741] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + aux_sym_where_filter_token1, + ACTIONS(2764), 1, + anon_sym_SEMI, + STATE(2064), 1, + sym_where_filter, + [80754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3372), 3, anon_sym_SEMI, anon_sym_COMMA, - [79711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1489), 1, - sym_constraint_foreign_key, - [79721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3347), 2, - anon_sym_COMMA, anon_sym_RPAREN, - [79729] = 2, + [80763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(3278), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_RPAREN, + STATE(1707), 1, + aux_sym_insert_values_repeat1, + [80776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_COMMA, + ACTIONS(3376), 1, + anon_sym_RPAREN, + STATE(1350), 1, + aux_sym_conflict_target_repeat1, + [80789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1729), 1, + aux_sym_create_table_statement_repeat1, + [80802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1325), 1, + sym_identifier, + STATE(1742), 1, + sym_var_declaration, + [80815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(3378), 1, anon_sym_SEMI, - anon_sym_COMMA, - [79737] = 2, + STATE(1512), 1, + aux_sym_returning_repeat1, + [80828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 2, - aux_sym_constraint_when_token3, - aux_sym_constraint_when_token4, - [79745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [79753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 2, + ACTIONS(2463), 1, + aux_sym_function_run_as_token1, + ACTIONS(3380), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [79761] = 2, + STATE(2011), 1, + sym_function_run_as, + [80841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [79769] = 2, + ACTIONS(3322), 1, + aux_sym_trigger_event_token2, + ACTIONS(3382), 1, + aux_sym_insert_conflict_token1, + STATE(1710), 1, + aux_sym_trigger_event_repeat1, + [80854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 2, + ACTIONS(3032), 1, anon_sym_COMMA, + ACTIONS(3370), 1, + anon_sym_RPAREN, + STATE(1649), 1, + aux_sym_create_index_statement_repeat1, + [80867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1975), 1, + sym_identifier, + STATE(2057), 1, + sym_assign_statement, + [80880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, + anon_sym_COMMA, + ACTIONS(3384), 1, + anon_sym_SEMI, + STATE(1678), 1, + aux_sym_grant_roles_repeat1, + [80893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1347), 1, + sym_identifier, + STATE(1739), 1, + sym_var_declaration, + [80906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1992), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, aux_sym_alter_table_rename_column_token2, - [79777] = 2, + STATE(936), 1, + aux_sym_drop_type_statement_repeat1, + [80919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 2, + ACTIONS(3337), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1682), 1, + aux_sym_grant_targets_repeat1, + [80932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1963), 1, + sym_grant_function, + STATE(1999), 1, + sym_identifier, + [80945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 1, + anon_sym_SEMI, + ACTIONS(3390), 1, + anon_sym_COMMA, + STATE(1771), 1, + aux_sym_alter_table_change_repeat1, + [80958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_RPAREN, + STATE(1716), 1, + aux_sym_create_index_statement_repeat1, + [80971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, + aux_sym_grant_targets_token4, + STATE(1604), 1, + aux_sym_drop_type_statement_repeat1, + [80984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2253), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1733), 1, + aux_sym_create_table_statement_repeat1, + [80997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3190), 1, + anon_sym_COMMA, + ACTIONS(3397), 1, + anon_sym_RPAREN, + STATE(1744), 1, + aux_sym_create_type_statement_repeat2, + [81010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + aux_sym_index_using_token1, + ACTIONS(3399), 1, + anon_sym_LPAREN, + STATE(2115), 1, + sym_index_using, + [81023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym__identifier, + STATE(1316), 1, + sym_identifier, + STATE(1976), 1, + sym_table_column_item, + [81036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1686), 1, + sym_identifier, + [81046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1455), 1, + sym_identifier, + [81064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_COMMA, + ACTIONS(3403), 1, + anon_sym_RPAREN, + [81074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 1, + anon_sym_STAR, + STATE(317), 1, + sym_star, + [81084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3405), 2, + aux_sym_update_statement_token1, + aux_sym_delete_statement_token1, + [81092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(910), 1, + sym__list_of_identifiers, + [81102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 2, anon_sym_LPAREN, sym__identifier, - [79785] = 3, + [81110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_STAR, - STATE(403), 1, - sym_star, - [79795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, + ACTIONS(2954), 1, sym__identifier, - STATE(950), 1, + STATE(911), 1, sym_identifier, - [79805] = 3, + [81120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_DOLLAR, - STATE(1853), 1, - sym_dollar_quote, - [79815] = 2, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + STATE(2296), 1, + sym_trigger_exec, + [81130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [79823] = 3, + ACTIONS(2954), 1, + sym__identifier, + STATE(1830), 1, + sym_identifier, + [81140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_SEMI, - ACTIONS(3375), 1, - anon_sym_COLON_EQ, - [79833] = 2, + ACTIONS(3409), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [81148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [79841] = 2, + ACTIONS(2684), 1, + sym__identifier, + STATE(1677), 1, + sym_identifier, + [81158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 2, + ACTIONS(2954), 1, + sym__identifier, + STATE(1479), 1, + sym_identifier, + [81168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 2, anon_sym_SEMI, anon_sym_COMMA, - [79849] = 3, + [81176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2684), 1, sym__identifier, - STATE(1936), 1, + STATE(2041), 1, sym_identifier, - [79859] = 3, + [81186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3411), 2, anon_sym_SEMI, - ACTIONS(3381), 1, - anon_sym_DOLLAR, - [79869] = 3, + aux_sym_function_run_as_token1, + [81194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - aux_sym_get_diagnostics_statement_token2, - ACTIONS(3385), 1, - aux_sym_get_diagnostics_statement_token3, - [79879] = 3, + ACTIONS(3413), 2, + aux_sym_function_run_as_token2, + aux_sym_function_run_as_token3, + [81202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1156), 1, + sym_identifier, + [81212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3415), 1, + aux_sym_insert_items_token1, + [81222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + sym__identifier, + STATE(1108), 1, + sym_identifier, + [81232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1386), 1, + sym_identifier, + [81258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3051), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3421), 1, + aux_sym_grant_privileges_token2, + [81276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [81284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1409), 1, + anon_sym_SEMI, + ACTIONS(3423), 1, + anon_sym_COMMA, + [81294] = 3, ACTIONS(29), 1, aux_sym_psql_statement_token1, ACTIONS(31), 1, sym__identifier, - ACTIONS(2750), 1, + ACTIONS(2819), 1, sym_comment, - [79889] = 3, + [81304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, - sym__identifier, - STATE(1621), 1, - sym_identifier, - [79899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 2, - aux_sym_index_col_nulls_token2, - aux_sym_index_col_nulls_token3, - [79915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 2, + ACTIONS(3064), 2, anon_sym_COMMA, anon_sym_RPAREN, - [79923] = 3, + [81312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1276), 1, - sym_insert_values, - [79933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2319), 2, + ACTIONS(2991), 2, anon_sym_SEMI, - anon_sym_RPAREN, - [79941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 2, - aux_sym_insert_conflict_token1, - aux_sym_trigger_event_token2, - [79949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(922), 1, - sym_identifier, - [79959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3393), 1, - aux_sym_function_return_token1, - STATE(2105), 1, - sym_function_return, - [79969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2096), 1, - sym_identifier, - [79979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [79987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1174), 1, - sym_identifier, - [79997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2399), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [80005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [80013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [80021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1901), 1, - sym_identifier, - [80031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 1, - aux_sym_sequence_start_token2, - ACTIONS(3397), 1, - sym_number, - [80041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2070), 1, - sym_identifier, - [80051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 2, - aux_sym_function_run_as_token2, - aux_sym_function_run_as_token3, - [80059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - aux_sym_sequence_increment_token2, - ACTIONS(3403), 1, - sym_number, - [80069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(896), 1, - anon_sym_STAR, - STATE(429), 1, - sym_star, - [80079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(984), 1, - sym_identifier, - [80089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 2, - aux_sym_schema_role_token1, - sym__identifier, - [80097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 1, - aux_sym_join_item_token3, - ACTIONS(3407), 1, - aux_sym_join_type_token3, - [80107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [80115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym_COMMA, - ACTIONS(3411), 1, - anon_sym_RPAREN, - [80125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(3415), 1, - aux_sym_drop_function_statement_token1, - [80135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1657), 1, - sym_identifier, - [80145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2060), 1, - sym_identifier, - [80155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - sym_string, - [80165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - STATE(2033), 1, - sym_trigger_exec, - [80175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [80183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2541), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [80191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 2, - aux_sym_update_statement_token1, - aux_sym_delete_statement_token1, - [80199] = 2, + aux_sym_for_statement_token2, + [81320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2554), 2, anon_sym_SEMI, anon_sym_RPAREN, - [80207] = 3, + [81328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1285), 1, - sym_identifier, - [80217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 1, + ACTIONS(1467), 1, anon_sym_STAR, - STATE(363), 1, + STATE(435), 1, sym_star, - [80227] = 3, + [81338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, - anon_sym_COMMA, - ACTIONS(3421), 1, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + STATE(2100), 1, + sym_trigger_exec, + [81348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2405), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [80237] = 3, + [81356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2032), 1, - sym_identifier, - [80247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1506), 1, - sym_identifier, - [80257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3423), 1, - anon_sym_LPAREN, - ACTIONS(3425), 1, - aux_sym_create_type_statement_token2, - [80267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1398), 1, - sym_identifier, - [80277] = 3, + ACTIONS(3425), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [81364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3427), 1, - anon_sym_COMMA, - ACTIONS(3429), 1, - anon_sym_RPAREN, - [80287] = 2, + anon_sym_LPAREN, + STATE(1364), 1, + sym_insert_values, + [81374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80295] = 2, + ACTIONS(1074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [81382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2443), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1243), 1, + sym_identifier, + [81400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2552), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + STATE(131), 1, + sym_string, + [81418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1719), 1, + sym_identifier, + [81428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1498), 1, + sym_identifier, + [81438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(1881), 1, + sym__list_of_identifiers, + [81448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(1551), 1, + sym__list_of_identifiers, + [81458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3431), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [80303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2261), 2, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - [80311] = 3, + [81466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym__list_of_identifiers, - [80321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(631), 1, - sym_star, - [80331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [80339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, + ACTIONS(2954), 1, sym__identifier, - STATE(1124), 1, + STATE(1411), 1, sym_identifier, - [80349] = 2, + [81476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 2, - anon_sym_SEMI, + ACTIONS(3433), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(3435), 1, + aux_sym_drop_function_statement_token1, + [81486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [81494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [80357] = 2, + [81502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [80365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 1, - anon_sym_SQUOTE, - STATE(82), 1, - sym_string, - [80375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3433), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [80383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 2, - anon_sym_SEMI, - aux_sym_where_filter_token1, - [80391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1888), 2, - anon_sym_COMMA, - aux_sym_grant_targets_token4, - [80399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 1, + ACTIONS(2954), 1, sym__identifier, - STATE(1069), 1, + STATE(2070), 1, sym_identifier, - [80409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1095), 1, - sym_identifier, - [80419] = 3, + [81512] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3439), 1, - anon_sym_COMMA, - ACTIONS(3441), 1, - anon_sym_RPAREN, - [80429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 2, anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [80437] = 3, + ACTIONS(3441), 1, + aux_sym_update_statement_token2, + [81522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(856), 1, - anon_sym_STAR, - STATE(391), 1, - sym_star, - [80447] = 3, + ACTIONS(842), 1, + anon_sym_SQUOTE, + STATE(1743), 1, + sym_string, + [81532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 1, - anon_sym_STAR, - STATE(122), 1, - sym_star, - [80457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(891), 1, - sym__list_of_identifiers, - [80467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2266), 1, - sym_identifier, - [80485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2263), 1, - sym_identifier, - [80495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(1774), 1, - sym__list_of_identifiers, - [80505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [80513] = 2, + ACTIONS(3443), 1, + aux_sym_function_return_token1, + STATE(2063), 1, + sym_function_return, + [81542] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3445), 2, - anon_sym_LPAREN, + aux_sym_insert_conflict_token1, sym__identifier, - [80521] = 3, + [81550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 1, - anon_sym_STAR, - STATE(606), 1, - sym_star, - [80531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2254), 1, - sym_identifier, - [80541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1641), 1, - sym_identifier, - [80551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, + ACTIONS(2383), 2, anon_sym_SEMI, - ACTIONS(3449), 1, - anon_sym_DOLLAR, - [80561] = 3, + anon_sym_RPAREN, + [81558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(850), 1, - anon_sym_SQUOTE, - STATE(1935), 1, - sym_string, - [80571] = 2, + ACTIONS(3447), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1835), 1, + sym_identifier, + [81576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3083), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(2062), 1, + sym_function_parameters, + [81594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3364), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [81602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1502), 1, + sym_identifier, + [81612] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3451), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [80579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1438), 1, - sym_identifier, - [80589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3453), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [80597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(933), 1, - sym_identifier, - [80607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 1, - sym__identifier, - STATE(1085), 1, - sym_identifier, - [80617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - anon_sym_SEMI, - ACTIONS(3457), 1, anon_sym_COMMA, - [80627] = 3, + aux_sym_alter_table_rename_column_token2, + [81620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 1, - anon_sym_SQUOTE, - STATE(105), 1, - sym_string, - [80637] = 3, + ACTIONS(2684), 1, + sym__identifier, + STATE(2055), 1, + sym_identifier, + [81630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 2, + aux_sym_schema_role_token1, + sym__identifier, + [81638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 2, + anon_sym_COMMA, + aux_sym_grant_targets_token4, + [81646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3357), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [81654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2367), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1160), 1, + anon_sym_STAR, + STATE(109), 1, + sym_star, + [81672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(1471), 1, + sym_identifier, + [81682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3453), 1, + anon_sym_COMMA, + ACTIONS(3455), 1, + anon_sym_RPAREN, + [81692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(955), 1, + sym_identifier, + [81702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 1, + anon_sym_STAR, + STATE(385), 1, + sym_star, + [81720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 2, + anon_sym_LPAREN, + sym__identifier, + [81728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81736] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3459), 1, anon_sym_COMMA, ACTIONS(3461), 1, anon_sym_RPAREN, - [80647] = 2, + [81746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3463), 1, - aux_sym_grant_privileges_token2, - [80665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(743), 1, - anon_sym_STAR, - STATE(309), 1, - sym_star, - [80675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(964), 1, - sym_identifier, - [80685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1743), 1, - sym_identifier, - [80695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3465), 1, - anon_sym_SQUOTE, - STATE(168), 1, - sym_string, - [80705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2409), 2, + ACTIONS(3463), 2, anon_sym_SEMI, - anon_sym_RPAREN, - [80713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, anon_sym_COMMA, - ACTIONS(3469), 1, - anon_sym_RPAREN, - [80723] = 2, + [81754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [80731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 2, + ACTIONS(3104), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [80739] = 3, + [81762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1980), 1, - sym_identifier, - [80749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1709), 1, - sym_identifier, - [80759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1219), 1, - sym_identifier, - [80769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(876), 1, - sym_identifier, - [80779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2136), 1, - sym_identifier, - [80789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 2, + ACTIONS(2556), 2, anon_sym_SEMI, anon_sym_RPAREN, - [80797] = 3, + [81770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(908), 1, + anon_sym_STAR, + STATE(455), 1, + sym_star, + [81780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 1, + anon_sym_STAR, + STATE(615), 1, + sym_star, + [81790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3465), 2, + anon_sym_SEMI, + aux_sym_where_filter_token1, + [81798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1256), 1, + sym_identifier, + [81824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(943), 1, + sym_identifier, + [81834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 1, anon_sym_SQUOTE, - STATE(5), 1, + STATE(74), 1, sym_string, - [80807] = 2, + [81844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2331), 1, + sym_identifier, + [81854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2326), 1, + sym_identifier, + [81864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2319), 1, + sym_identifier, + [81874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 1, + anon_sym_COMMA, + ACTIONS(3471), 1, + anon_sym_RPAREN, + [81884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [81892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1339), 1, + sym_identifier, + [81902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2317), 1, + sym_identifier, + [81912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1417), 1, + sym_identifier, + [81922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3473), 2, anon_sym_SEMI, anon_sym_RPAREN, - [80815] = 2, + [81930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [81938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3475), 2, anon_sym_SEMI, - aux_sym_function_run_as_token1, - [80823] = 3, + aux_sym_create_function_statement_token1, + [81954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2314), 1, - sym_identifier, - [80833] = 3, + ACTIONS(3016), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [81962] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3477), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3479), 1, - anon_sym_RPAREN, - [80843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3147), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2069), 1, - sym_identifier, - [80861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(933), 1, - sym_identifier, - [80871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [80879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_SEMI, - ACTIONS(3485), 1, - aux_sym_update_statement_token2, - [80889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [80897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1096), 1, - sym_identifier, - [80907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [80915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [80923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, anon_sym_DOLLAR, - STATE(1786), 1, - sym_dollar_quote, - [80933] = 3, + [81972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2162), 1, - sym_identifier, - [80943] = 3, + ACTIONS(2065), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1563), 1, + sym_constraint_foreign_key, + [81982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1339), 1, - sym_insert_values, - [80953] = 3, + ACTIONS(842), 1, + anon_sym_SQUOTE, + STATE(1805), 1, + sym_string, + [81992] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3481), 1, + anon_sym_SEMI, + ACTIONS(3483), 1, + anon_sym_COMMA, + [82002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3331), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3485), 1, + aux_sym_update_statement_token1, ACTIONS(3487), 1, - anon_sym_SQUOTE, - STATE(132), 1, - sym_string, - [80963] = 3, + aux_sym_insert_conflict_token4, + [82028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(1461), 1, anon_sym_SQUOTE, - STATE(374), 1, + STATE(124), 1, sym_string, - [80973] = 3, + [82038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(850), 1, - anon_sym_SQUOTE, - STATE(1808), 1, - sym_string, - [80983] = 3, + ACTIONS(3489), 2, + aux_sym_constraint_when_token3, + aux_sym_constraint_when_token4, + [82046] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3491), 1, anon_sym_COMMA, ACTIONS(3493), 1, anon_sym_RPAREN, - [80993] = 2, + [82056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 2, + ACTIONS(2409), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2187), 1, + sym_identifier, + [82074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [81001] = 2, + [82082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [81025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(918), 1, - sym_identifier, - [81051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2113), 1, - sym_identifier, - [81061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1725), 1, - sym_identifier, - [81087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 2, + ACTIONS(3137), 2, anon_sym_COMMA, anon_sym_RPAREN, - [81095] = 3, + [82090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(1848), 1, - sym__list_of_identifiers, - [81105] = 3, + ACTIONS(2684), 1, + sym__identifier, + STATE(2294), 1, + sym_identifier, + [82100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_STAR, - STATE(315), 1, - sym_star, - [81115] = 3, + ACTIONS(2758), 1, + anon_sym_DOLLAR, + STATE(1973), 1, + sym_dollar_quote, + [82110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 1, + aux_sym_trigger_exec_token1, + STATE(2366), 1, + sym_trigger_exec, + [82120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1141), 1, + sym_identifier, + [82130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1209), 1, + sym_identifier, + [82140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1404), 1, + sym_identifier, + [82150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(955), 1, + sym_identifier, + [82160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 1, + anon_sym_SQUOTE, + STATE(170), 1, + sym_string, + [82170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - aux_sym_alter_column_action_token1, ACTIONS(3497), 1, - aux_sym_insert_items_token1, - [81125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - STATE(7), 1, - sym_string, - [81135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_SQUOTE, - STATE(461), 1, - sym_string, - [81145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3387), 1, - sym__identifier, - STATE(1849), 1, - sym_identifier, - [81155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 1, anon_sym_COMMA, - ACTIONS(3503), 1, + ACTIONS(3499), 1, anon_sym_RPAREN, - [81165] = 3, + [82180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2684), 1, sym__identifier, - STATE(1624), 1, + STATE(2292), 1, sym_identifier, - [81175] = 2, + [82190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2585), 2, anon_sym_SEMI, anon_sym_RPAREN, - [81183] = 2, + [82198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [82214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1776), 1, + sym_identifier, + [82224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(967), 1, + sym_identifier, + [82258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(1861), 1, + sym__list_of_identifiers, + [82276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 1, + anon_sym_SQUOTE, + STATE(5), 1, + sym_string, + [82286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_LPAREN, + STATE(1536), 1, + sym__list_of_identifiers, + [82296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2971), 1, + sym__identifier, + STATE(1445), 1, + sym_identifier, + [82306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_STAR, + STATE(453), 1, + sym_star, + [82316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 1, + anon_sym_COMMA, + ACTIONS(3511), 1, + anon_sym_RPAREN, + [82326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 1, + anon_sym_STAR, + STATE(636), 1, + sym_star, + [82352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(983), 1, + sym_identifier, + [82370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2188), 1, + sym_identifier, + [82380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3517), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + aux_sym_update_set_token1, + [82390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3521), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [82398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3523), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3525), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [82430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2429), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_SQUOTE, + STATE(424), 1, + sym_string, + [82448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2255), 1, + sym_identifier, + [82458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + anon_sym_COMMA, + ACTIONS(3533), 1, + anon_sym_RPAREN, + [82468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3188), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [81191] = 3, + [82476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 1, - anon_sym_SEMI, - ACTIONS(3505), 1, - anon_sym_COMMA, - [81201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3507), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2964), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2397), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - aux_sym_trigger_exec_token1, - STATE(1987), 1, - sym_trigger_exec, - [81243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(2207), 1, - sym_identifier, - [81253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3511), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 1, + ACTIONS(842), 1, anon_sym_SQUOTE, - STATE(55), 1, + STATE(1804), 1, sym_string, - [81271] = 2, + [82486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81279] = 3, + ACTIONS(3535), 2, + aux_sym_insert_items_token1, + aux_sym_alter_column_action_token2, + [82494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1467), 1, - sym_identifier, - [81289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 1, - anon_sym_COMMA, - ACTIONS(3519), 1, - anon_sym_RPAREN, - [81299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 1, - anon_sym_LPAREN, - STATE(2203), 1, - sym_function_parameters, - [81309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3393), 1, - aux_sym_function_return_token1, - STATE(2199), 1, - sym_function_return, - [81319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 1, + ACTIONS(848), 1, anon_sym_STAR, - STATE(97), 1, + STATE(404), 1, sym_star, - [81329] = 2, + [82504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3525), 1, - aux_sym_update_set_token1, - [81347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_LPAREN, - STATE(1504), 1, - sym__list_of_identifiers, - [81357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [81365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, + ACTIONS(2954), 1, sym__identifier, - STATE(1396), 1, + STATE(1654), 1, sym_identifier, - [81391] = 2, + [82514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [81407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3533), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, + ACTIONS(2954), 1, sym__identifier, - STATE(1404), 1, + STATE(1119), 1, sym_identifier, - [81425] = 3, + [82524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - anon_sym_COMMA, ACTIONS(3537), 1, - anon_sym_RPAREN, - [81435] = 2, + aux_sym_join_item_token3, + ACTIONS(3539), 1, + aux_sym_join_type_token3, + [82534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, + ACTIONS(3417), 1, sym__identifier, - STATE(1359), 1, + STATE(1093), 1, sym_identifier, - [81469] = 2, + [82544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3541), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [81477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym__identifier, - STATE(1436), 1, - sym_identifier, - [81487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1289), 1, - anon_sym_SQUOTE, - STATE(51), 1, - sym_string, - [81497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 2, - aux_sym_insert_items_token1, - aux_sym_alter_column_action_token2, - [81505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 1, - anon_sym_SQUOTE, - STATE(151), 1, - sym_string, - [81515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(1417), 1, - sym_identifier, - [81525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - sym__identifier, - STATE(2185), 1, - sym_identifier, - [81535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3545), 1, - anon_sym_COMMA, - ACTIONS(3547), 1, - anon_sym_RPAREN, - [81545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - aux_sym_if_statement_token1, - [81552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_SEMI, - [81559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - aux_sym__interval_fields_token6, - [81566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3553), 1, - anon_sym_RBRACK, - [81573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, anon_sym_LPAREN, - [81580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, sym__identifier, - [81587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_LPAREN, - [81594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3561), 1, - anon_sym_DOLLAR, - [81601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 1, - anon_sym_RPAREN, - [81608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 1, - aux_sym_update_statement_token3, - [81615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2642), 1, - anon_sym_SEMI, - [81622] = 2, + [82552] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3543), 1, - aux_sym_fk_ref_action_token2, - [81629] = 2, + anon_sym_SQUOTE, + STATE(482), 1, + sym_string, + [82562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(940), 1, + ACTIONS(2363), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [81636] = 2, + [82570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3545), 2, + aux_sym_index_col_nulls_token2, + aux_sym_index_col_nulls_token3, + [82578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3002), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3547), 1, + anon_sym_COMMA, + ACTIONS(3549), 1, + anon_sym_RPAREN, + [82596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3286), 2, + aux_sym_insert_conflict_token1, + aux_sym_trigger_event_token2, + [82612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, + aux_sym_create_type_statement_token2, + [82622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 1, + anon_sym_SQUOTE, + STATE(7), 1, + sym_string, + [82648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1736), 1, + sym_identifier, + [82658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3555), 1, + sym__identifier, + STATE(1844), 1, + sym_identifier, + [82668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 1, + anon_sym_SQUOTE, + STATE(59), 1, + sym_string, + [82678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(782), 1, + anon_sym_STAR, + STATE(350), 1, + sym_star, + [82688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + anon_sym_COMMA, + ACTIONS(3561), 1, + anon_sym_RPAREN, + [82698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(2250), 1, + sym_identifier, + [82708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1585), 1, + anon_sym_STAR, + STATE(137), 1, + sym_star, + [82726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3229), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [82734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1723), 1, + sym_identifier, + [82744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2243), 1, + sym_identifier, + [82754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2234), 1, + sym_identifier, + [82764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2217), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2600), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3563), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(1301), 1, + sym_insert_values, + [82798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_DOLLAR, + STATE(1878), 1, + sym_dollar_quote, + [82808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 2, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + [82824] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3567), 1, anon_sym_SEMI, - [81643] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(3569), 1, - aux_sym_if_not_exists_token1, - [81650] = 2, + anon_sym_COLON_EQ, + [82834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(992), 1, - anon_sym_RPAREN, - [81657] = 2, + ACTIONS(3571), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, + [82842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, - aux_sym_time_expression_token3, - [81664] = 2, + ACTIONS(2669), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3573), 1, anon_sym_SEMI, - [81671] = 2, + ACTIONS(3575), 1, + anon_sym_DOLLAR, + [82860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(2542), 2, anon_sym_SEMI, - [81678] = 2, + anon_sym_RPAREN, + [82868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3249), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [82892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(939), 1, + sym_identifier, + [82902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1313), 1, + anon_sym_SQUOTE, + STATE(57), 1, + sym_string, + [82912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 1, + aux_sym_function_return_token1, + STATE(2169), 1, + sym_function_return, + [82922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [82930] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3577), 1, - aux_sym_function_return_token1, - [81685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 1, - aux_sym__interval_fields_token2, - [81692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3212), 1, - aux_sym__interval_fields_token6, - [81699] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_get_diagnostics_statement_token2, ACTIONS(3579), 1, - anon_sym_RBRACK, - [81706] = 2, + aux_sym_get_diagnostics_statement_token3, + [82940] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3581), 1, - anon_sym_DOLLAR, - [81713] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3583), 1, - anon_sym_DOLLAR, - [81720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 1, anon_sym_RPAREN, - [81727] = 2, + [82950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, - aux_sym_if_not_exists_token1, - [81734] = 2, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym__identifier, + STATE(2165), 1, + sym_identifier, + [82968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + sym__identifier, + STATE(1013), 1, + sym_identifier, + [82978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [82986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3587), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [82994] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3589), 1, - aux_sym_if_statement_token1, - [81741] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_start_token2, ACTIONS(3591), 1, - sym__identifier, - [81748] = 2, + sym_number, + [83004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_RPAREN, - [81755] = 2, + ACTIONS(3555), 1, + sym__identifier, + STATE(1727), 1, + sym_identifier, + [83014] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3593), 1, - aux_sym_update_statement_token4, - [81762] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3595), 1, - aux_sym_for_statement_token2, - [81769] = 2, + anon_sym_RPAREN, + [83024] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3597), 1, - aux_sym_insert_statement_token2, - [81776] = 2, + aux_sym_sequence_increment_token2, + ACTIONS(3599), 1, + sym_number, + [83034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_SEMI, - [81783] = 2, + ACTIONS(1541), 1, + anon_sym_SQUOTE, + STATE(166), 1, + sym_string, + [83044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 1, + aux_sym_fk_ref_action_token2, + [83051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3601), 1, - aux_sym_insert_conflict_token3, - [81790] = 2, + anon_sym_LPAREN, + [83058] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3603), 1, - anon_sym_SEMI, - [81797] = 2, + aux_sym_time_expression_token3, + [83065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3605), 1, anon_sym_SEMI, - [81804] = 2, + [83072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_RPAREN, - [81811] = 2, + ACTIONS(3266), 1, + aux_sym__interval_fields_token2, + [83079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, + aux_sym__interval_fields_token6, + [83086] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3607), 1, - aux_sym_time_expression_token3, - [81818] = 2, + anon_sym_RBRACK, + [83093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3609), 1, - anon_sym_SEMI, - [81825] = 2, + aux_sym_if_statement_token1, + [83100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3611), 1, - anon_sym_SEMI, - [81832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 1, - aux_sym__interval_fields_token2, - [81839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3200), 1, - aux_sym__interval_fields_token2, - [81846] = 2, + anon_sym_RPAREN, + [83107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3613), 1, - anon_sym_LPAREN, - [81853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 1, - anon_sym_RPAREN, - [81860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3200), 1, - aux_sym__interval_fields_token6, - [81867] = 2, + aux_sym_for_statement_token2, + [83114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3615), 1, - anon_sym_RBRACK, - [81874] = 2, + anon_sym_DOLLAR, + [83121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3617), 1, - aux_sym_update_statement_token2, - [81881] = 2, + anon_sym_RPAREN, + [83128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3619), 1, aux_sym_trigger_exec_token1, - [81888] = 2, + [83135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3621), 1, - anon_sym_DOLLAR, - [81895] = 2, + anon_sym_SEMI, + [83142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3623), 1, - anon_sym_RPAREN, - [81902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - aux_sym_time_expression_token3, - [81909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 1, - aux_sym_table_constraint_ty_token3, - [81916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - aux_sym_table_constraint_ty_token3, - [81923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(956), 1, - anon_sym_RPAREN, - [81930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_RPAREN, - [81937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3631), 1, - aux_sym_alter_column_action_token1, - [81944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2675), 1, anon_sym_SEMI, - [81951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_SEMI, - [81958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_SEMI, - [81965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3204), 1, - anon_sym_SEMI, - [81972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 1, - anon_sym_SEMI, - [81979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 1, - anon_sym_SEMI, - [81986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, - anon_sym_SEMI, - [81993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 1, - anon_sym_RPAREN, - [82000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - aux_sym_function_return_token1, - [82007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, - aux_sym_time_expression_token3, - [82014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - anon_sym_SEMI, - [82021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, - aux_sym_if_not_exists_token1, - [82028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 1, - anon_sym_LPAREN, - [82035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 1, - aux_sym__interval_fields_token2, - [82042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - anon_sym_SEMI, - [82049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - anon_sym_SEMI, - [82056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 1, - aux_sym__interval_fields_token6, - [82063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 1, - anon_sym_RBRACK, - [82070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, - aux_sym_for_statement_token2, - [82077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_SEMI, - [82084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - [82091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 1, - anon_sym_RPAREN, - [82098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3665), 1, - aux_sym_insert_conflict_token1, - [82105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 1, - anon_sym_RPAREN, - [82112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 1, - anon_sym_RPAREN, - [82119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_SEMI, - [82126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 1, - aux_sym_update_statement_token2, - [82133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_SEMI, - [82140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - aux_sym_if_statement_token1, - [82147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - aux_sym_alter_table_rename_column_token2, - [82154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 1, - anon_sym_LPAREN, - [82161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 1, - aux_sym_insert_conflict_token1, - [82168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 1, - anon_sym_RPAREN, - [82175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2628), 1, - anon_sym_SEMI, - [82182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3679), 1, - aux_sym_time_expression_token3, - [82189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 1, - aux_sym_join_item_token3, - [82196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 1, - aux_sym_drop_function_statement_token1, - [82203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 1, - aux_sym__interval_fields_token2, - [82210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - aux_sym_alter_table_rename_column_token2, - [82217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_SEMI, - [82224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 1, - aux_sym__interval_fields_token6, - [82231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - anon_sym_RBRACK, - [82238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 1, - sym_number, - [82245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 1, - anon_sym_SEMI, - [82252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 1, - anon_sym_DOLLAR, - [82259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - anon_sym_RPAREN, - [82266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_LPAREN, - [82273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 1, - aux_sym_create_table_statement_token1, - [82280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(936), 1, - anon_sym_RPAREN, - [82287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, - aux_sym_for_statement_token2, - [82294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3701), 1, - anon_sym_SEMI, - [82301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3703), 1, - anon_sym_LBRACK, - [82308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym_SEMI, - [82315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - sym_number, - [82322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_DOLLAR, - [82329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3711), 1, - anon_sym_SEMI, - [82336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1024), 1, - anon_sym_RPAREN, - [82343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 1, - aux_sym_sequence_increment_token2, - [82350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3715), 1, - aux_sym_time_expression_token3, - [82357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3717), 1, - anon_sym_SEMI, - [82364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3147), 1, - aux_sym__interval_fields_token2, - [82371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 1, - aux_sym_insert_conflict_token1, - [82378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_SEMI, - [82385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3147), 1, - aux_sym__interval_fields_token6, - [82392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3721), 1, - anon_sym_RBRACK, - [82399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, - anon_sym_LPAREN, - [82406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2734), 1, - anon_sym_SEMI, - [82413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3725), 1, - anon_sym_DOLLAR, - [82420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - anon_sym_RPAREN, - [82427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_SEMI, - [82434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3731), 1, - aux_sym_for_statement_token2, - [82441] = 2, + [83149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1028), 1, anon_sym_RPAREN, - [82448] = 2, + [83156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3733), 1, - aux_sym_sequence_increment_token2, - [82455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, + ACTIONS(3625), 1, aux_sym_for_statement_token2, - [82462] = 2, + [83163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, - aux_sym_update_statement_token2, - [82469] = 2, + ACTIONS(3627), 1, + aux_sym_insert_items_token2, + [83170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, - aux_sym_time_expression_token3, - [82476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 1, + ACTIONS(3629), 1, anon_sym_SEMI, - [82483] = 2, + [83177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, - aux_sym_update_statement_token2, - [82490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - aux_sym_update_statement_token3, - [82497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(998), 1, - anon_sym_RPAREN, - [82504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - anon_sym_RPAREN, - [82511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 1, - aux_sym_time_expression_token3, - [82518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_LPAREN, - [82525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 1, - aux_sym__interval_fields_token2, - [82532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - aux_sym_insert_conflict_token2, - [82539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3753), 1, - aux_sym_for_statement_token2, - [82546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 1, - aux_sym__interval_fields_token6, - [82553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, - anon_sym_RBRACK, - [82560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3757), 1, - aux_sym_insert_conflict_token1, - [82567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - sym__identifier, - [82574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_DOLLAR, - [82581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_RPAREN, - [82588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_SEMI, - [82595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1018), 1, - anon_sym_RPAREN, - [82602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_RPAREN, - [82609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, - aux_sym_insert_conflict_token3, - [82616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3769), 1, - anon_sym_SEMI, - [82623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_SEMI, - [82630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_SEMI, - [82637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 1, - anon_sym_LPAREN, - [82644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2887), 1, - aux_sym_select_statement_token1, - [82651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 1, - aux_sym_insert_conflict_token1, - [82658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - anon_sym_RPAREN, - [82665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 1, - aux_sym_for_statement_token2, - [82672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3777), 1, - aux_sym_time_expression_token3, - [82679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3779), 1, - aux_sym_trigger_scope_token1, - [82686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3107), 1, - aux_sym__interval_fields_token2, - [82693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3781), 1, - aux_sym_get_diagnostics_statement_token3, - [82700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3783), 1, - anon_sym_SEMI, - [82707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3107), 1, - aux_sym__interval_fields_token6, - [82714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_RBRACK, - [82721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 1, - anon_sym_DOLLAR, - [82728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - [82735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 1, - anon_sym_DOLLAR, - [82742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3791), 1, - anon_sym_RPAREN, - [82749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(672), 1, - anon_sym_LPAREN, - [82756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - aux_sym_for_statement_token2, - [82763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(944), 1, - anon_sym_RPAREN, - [82770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_SEMI, - [82777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 1, - anon_sym_SEMI, - [82784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 1, - anon_sym_RPAREN, - [82791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 1, - sym_number, - [82798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, - aux_sym_select_statement_token1, - [82805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOLLAR, - [82812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_SEMI, - [82819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(964), 1, - anon_sym_RPAREN, - [82826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_RPAREN, - [82833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3811), 1, - aux_sym_time_expression_token3, - [82840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_LPAREN, - [82847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - aux_sym__interval_fields_token2, - [82854] = 2, - ACTIONS(2750), 1, - sym_comment, - ACTIONS(3815), 1, - aux_sym_dollar_quote_string_token1, - [82861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 1, - anon_sym_SEMI, - [82868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - aux_sym__interval_fields_token6, - [82875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3819), 1, - anon_sym_RBRACK, - [82882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3821), 1, - aux_sym_drop_type_statement_token2, - [82889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3823), 1, - aux_sym_time_expression_token2, - [82896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_DOLLAR, - [82903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_RPAREN, - [82910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3829), 1, - aux_sym_alter_column_action_token2, - [82917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3831), 1, - sym__identifier, - [82924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, - anon_sym_RPAREN, - [82931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - anon_sym_SEMI, - [82938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2697), 1, - anon_sym_SEMI, - [82945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, - anon_sym_SEMI, - [82952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3835), 1, - anon_sym_LPAREN, - [82959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3837), 1, - aux_sym_drop_function_statement_token1, - [82966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 1, - anon_sym_LPAREN, - [82973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 1, - aux_sym_create_table_statement_token1, - [82980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 1, - anon_sym_RPAREN, - [82987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 1, - anon_sym_SEMI, - [82994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - aux_sym_time_expression_token3, - [83001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3845), 1, - aux_sym_insert_conflict_token1, - [83008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - aux_sym__interval_fields_token2, - [83015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - aux_sym_function_return_token1, - [83022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3849), 1, - aux_sym_update_statement_token3, - [83029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - aux_sym__interval_fields_token6, - [83036] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_RBRACK, - [83043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_SEMI, - [83050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_EQ, - [83057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3857), 1, - anon_sym_DOLLAR, - [83064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_RPAREN, - [83071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - anon_sym_EQ, - [83078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - aux_sym_create_function_statement_token1, - [83085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - aux_sym_or_replace_token1, - [83092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 1, - anon_sym_RPAREN, - [83099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 1, - aux_sym_for_statement_token2, - [83106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - anon_sym_RBRACK, - [83113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - anon_sym_SEMI, - [83120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 1, - aux_sym_update_statement_token2, - [83127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 1, - anon_sym_RPAREN, - [83134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2650), 1, - anon_sym_SEMI, - [83141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 1, - aux_sym_insert_conflict_token1, - [83148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3877), 1, - aux_sym_function_return_token1, - [83155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1026), 1, - anon_sym_RPAREN, - [83162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - aux_sym_update_statement_token2, - [83169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, + ACTIONS(3631), 1, aux_sym_if_not_exists_token1, - [83176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3883), 1, - anon_sym_LPAREN, - [83183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_SEMI, - [83190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 1, - aux_sym_create_index_statement_token2, - [83197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1022), 1, - anon_sym_RPAREN, - [83204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 1, - aux_sym_function_return_token1, - [83211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - anon_sym_SEMI, - [83218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3287), 1, - anon_sym_SEMI, - [83225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_SEMI, - [83232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, - aux_sym_join_item_token3, - [83239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_RPAREN, - [83246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3895), 1, - aux_sym_create_trigger_statement_token1, - [83253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, - sym_number, - [83260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - aux_sym_insert_conflict_token3, - [83267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3901), 1, - aux_sym_insert_conflict_token1, - [83274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 1, - sym_number, - [83281] = 2, + [83184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, anon_sym_RPAREN, - [83288] = 2, + [83191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3633), 1, + aux_sym_update_statement_token2, + [83198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 1, + aux_sym_time_expression_token3, + [83205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3637), 1, + aux_sym_sequence_increment_token2, + [83212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3639), 1, + sym_number, + [83219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3249), 1, + aux_sym__interval_fields_token2, + [83226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3249), 1, + aux_sym__interval_fields_token6, + [83233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3641), 1, + anon_sym_RBRACK, + [83240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 1, + anon_sym_RPAREN, + [83247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + [83254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 1, + anon_sym_RPAREN, + [83261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3239), 1, + sym_number, + [83268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3237), 1, + sym_number, + [83275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3649), 1, + aux_sym_if_statement_token1, + [83282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 1, + anon_sym_RPAREN, + [83289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + aux_sym_alter_column_action_token2, + [83296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3653), 1, + aux_sym_drop_type_statement_token2, + [83303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3655), 1, + aux_sym_insert_conflict_token1, + [83310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3657), 1, + anon_sym_LPAREN, + [83317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3659), 1, + aux_sym_create_schema_statement_token1, + [83324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 1, + anon_sym_RPAREN, + [83331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, + aux_sym_insert_conflict_token3, + [83338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + aux_sym_time_expression_token3, + [83345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3665), 1, + anon_sym_SEMI, + [83352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3231), 1, + anon_sym_SEMI, + [83359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3667), 1, + anon_sym_SEMI, + [83366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 1, + aux_sym__interval_fields_token2, + [83373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 1, + aux_sym_if_not_exists_token1, + [83380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, + anon_sym_SEMI, + [83387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3220), 1, + aux_sym__interval_fields_token6, + [83394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + anon_sym_RBRACK, + [83401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3675), 1, + aux_sym_insert_conflict_token4, + [83408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3274), 1, + anon_sym_SEMI, + [83415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3677), 1, + anon_sym_RPAREN, + [83422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + [83429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + anon_sym_RPAREN, + [83436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3683), 1, + anon_sym_SEMI, + [83443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3685), 1, + anon_sym_LPAREN, + [83450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3687), 1, + aux_sym_conflict_target_token1, + [83457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 1, + anon_sym_SEMI, + [83464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 1, + anon_sym_RPAREN, + [83471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 1, + aux_sym_if_not_exists_token1, + [83478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1048), 1, + anon_sym_RPAREN, + [83485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2697), 1, + anon_sym_SEMI, + [83492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3693), 1, + aux_sym_function_return_token1, + [83499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + aux_sym_update_statement_token2, + [83506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_SEMI, + [83513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_RPAREN, + [83520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3699), 1, + anon_sym_EQ, + [83527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 1, + anon_sym_RPAREN, + [83534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3701), 1, + anon_sym_EQ, + [83541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + aux_sym_time_expression_token3, + [83548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 1, + aux_sym_update_statement_token3, + [83555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_SEMI, + [83562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + [83569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 1, + aux_sym__interval_fields_token2, + [83576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3709), 1, + anon_sym_SEMI, + [83583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3711), 1, + aux_sym_alter_table_rename_column_token2, + [83590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 1, + aux_sym__interval_fields_token6, + [83597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 1, + anon_sym_RBRACK, + [83604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + sym_number, + [83611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3297), 1, - sym_number, - [83295] = 2, + aux_sym_with_query_item_token1, + [83618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, - aux_sym_alter_table_rename_column_token2, - [83302] = 2, + ACTIONS(3717), 1, + anon_sym_RPAREN, + [83625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3719), 1, + anon_sym_DOLLAR, + [83632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_RPAREN, + [83639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + [83646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_RPAREN, + [83653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + anon_sym_RPAREN, + [83660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_SEMI, + [83667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3725), 1, + aux_sym_for_statement_token2, + [83674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 1, + sym__identifier, + [83681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + aux_sym_join_item_token3, + [83688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + aux_sym_join_item_token3, + [83695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 1, + anon_sym_SEMI, + [83702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3733), 1, + aux_sym_for_statement_token2, + [83709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 1, + anon_sym_RPAREN, + [83716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 1, + aux_sym_time_expression_token2, + [83723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3737), 1, + aux_sym_time_expression_token3, + [83730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3739), 1, + anon_sym_DOLLAR, + [83737] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(3741), 1, + aux_sym_dollar_quote_string_token1, + [83744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3188), 1, + aux_sym__interval_fields_token2, + [83751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 1, aux_sym_update_statement_token2, - [83309] = 2, + [83758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 1, + anon_sym_SEMI, + [83765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3188), 1, + aux_sym__interval_fields_token6, + [83772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + anon_sym_RBRACK, + [83779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + aux_sym_function_return_token1, + [83786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(996), 1, anon_sym_RPAREN, - [83316] = 2, + [83793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3907), 1, - anon_sym_LPAREN, - [83323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 1, - aux_sym_grant_targets_token4, - [83330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - anon_sym_SEMI, - [83337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 1, - anon_sym_LBRACK, - [83344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, - aux_sym_alter_column_action_token1, - [83351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3917), 1, - sym_number, - [83358] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3919), 1, - aux_sym_time_expression_token2, - [83365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3921), 1, - anon_sym_EQ, - [83372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - aux_sym_create_schema_statement_token1, - [83379] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, - aux_sym_join_item_token3, - [83386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3927), 1, + ACTIONS(3751), 1, anon_sym_RPAREN, - [83393] = 2, + [83800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - aux_sym_insert_conflict_token4, - [83400] = 2, + ACTIONS(3753), 1, + anon_sym_DOLLAR, + [83807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, - anon_sym_LPAREN, - [83407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3933), 1, - aux_sym_sequence_increment_token2, - [83414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3935), 1, - sym_number, - [83421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - aux_sym_conflict_target_token1, - [83428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3939), 1, + ACTIONS(3755), 1, anon_sym_RPAREN, - [83435] = 2, + [83814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - sym__identifier, - [83442] = 2, + ACTIONS(3757), 1, + anon_sym_SEMI, + [83821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3759), 1, + aux_sym_time_expression_token3, + [83828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 1, anon_sym_RPAREN, - [83449] = 2, + [83835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_number, - [83456] = 2, + ACTIONS(2729), 1, + anon_sym_SEMI, + [83842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 1, - aux_sym_create_function_statement_token1, - [83463] = 2, + ACTIONS(3761), 1, + anon_sym_SEMI, + [83849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 1, - aux_sym_with_query_item_token1, - [83470] = 2, + ACTIONS(2673), 1, + anon_sym_SEMI, + [83856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 1, - aux_sym_insert_items_token2, - [83477] = 2, + ACTIONS(3763), 1, + anon_sym_DOLLAR, + [83863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 1, - anon_sym_LBRACK, - [83484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - aux_sym_alter_column_action_token1, - [83491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, + ACTIONS(3310), 1, anon_sym_LPAREN, - [83498] = 2, + [83870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3957), 1, - aux_sym_time_expression_token2, - [83505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3959), 1, - aux_sym_alter_table_rename_column_token2, - [83512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3961), 1, - aux_sym_join_item_token3, - [83519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3963), 1, + ACTIONS(3765), 1, anon_sym_SEMI, - [83526] = 2, + [83877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 1, - anon_sym_LPAREN, - [83533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, - anon_sym_SEMI, - [83540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 1, - sym_number, - [83547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3971), 1, - sym__identifier, - [83554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 1, - sym_number, - [83561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 1, - aux_sym_table_constraint_ty_token3, - [83568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3977), 1, - anon_sym_SEMI, - [83575] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_LBRACK, - [83582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3981), 1, - aux_sym_time_expression_token2, - [83589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3983), 1, - anon_sym_SEMI, - [83596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3985), 1, - aux_sym_join_item_token3, - [83603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, + ACTIONS(2811), 1, aux_sym_select_statement_token1, - [83610] = 2, + [83884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 1, + ACTIONS(978), 1, + anon_sym_RPAREN, + [83891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 1, + anon_sym_RPAREN, + [83898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3767), 1, + aux_sym_time_expression_token3, + [83905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3769), 1, anon_sym_LPAREN, - [83617] = 2, + [83912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, - sym_number, - [83624] = 2, + ACTIONS(3176), 1, + aux_sym__interval_fields_token2, + [83919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, - sym__identifier, - [83631] = 2, + ACTIONS(3771), 1, + anon_sym_LPAREN, + [83926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, - sym_number, - [83638] = 2, + ACTIONS(3773), 1, + aux_sym_update_statement_token2, + [83933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, - aux_sym_alter_column_action_token2, - [83645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3997), 1, - aux_sym_create_schema_statement_token1, - [83652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - anon_sym_LBRACK, - [83659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4001), 1, - aux_sym_time_expression_token2, - [83666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4003), 1, - aux_sym_join_item_token3, - [83673] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4005), 1, - aux_sym_join_item_token3, - [83680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_SEMI, - [83687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, - ts_builtin_sym_end, - [83694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym_number, - [83701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4013), 1, - sym__identifier, - [83708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4015), 1, - sym_number, - [83715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4017), 1, - anon_sym_SEMI, - [83722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 1, + ACTIONS(3176), 1, aux_sym__interval_fields_token6, - [83729] = 2, + [83940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_LBRACK, - [83736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4021), 1, - aux_sym_time_expression_token2, - [83743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - anon_sym_SEMI, - [83750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4023), 1, - aux_sym_join_item_token3, - [83757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LPAREN, - [83764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4027), 1, - aux_sym_if_statement_token1, - [83771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - sym_number, - [83778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4031), 1, - sym__identifier, - [83785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 1, - sym_number, - [83792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, + ACTIONS(3775), 1, anon_sym_RBRACK, - [83799] = 2, + [83947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(3172), 1, + anon_sym_LPAREN, + [83954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, + aux_sym_function_return_token1, + [83961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3779), 1, + anon_sym_RPAREN, + [83968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3781), 1, + anon_sym_DOLLAR, + [83975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3783), 1, + anon_sym_RPAREN, + [83982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, + sym__identifier, + [83989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3787), 1, + anon_sym_SEMI, + [83996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + anon_sym_RPAREN, + [84003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_SEMI, + [84010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3791), 1, aux_sym_for_statement_token2, - [83806] = 2, + [84017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_LBRACK, - [83813] = 2, + ACTIONS(3145), 1, + aux_sym_insert_conflict_token1, + [84024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - aux_sym_time_expression_token2, - [83820] = 2, + ACTIONS(697), 1, + anon_sym_LPAREN, + [84031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4043), 1, - sym_number, - [83827] = 2, + ACTIONS(3793), 1, + aux_sym_table_constraint_ty_token3, + [84038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, - sym__identifier, - [83834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_number, - [83841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4049), 1, - aux_sym_create_table_statement_token1, - [83848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_LBRACK, - [83855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 1, - aux_sym_time_expression_token2, - [83862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - sym_number, - [83869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 1, - sym__identifier, - [83876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, - sym_number, - [83883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 1, - aux_sym_update_statement_token4, - [83890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - anon_sym_LBRACK, - [83897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4065), 1, - aux_sym_time_expression_token2, - [83904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4067), 1, - sym_number, - [83911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - sym__identifier, - [83918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 1, - sym_number, - [83925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 1, - aux_sym_update_statement_token3, - [83932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - anon_sym_LBRACK, - [83939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 1, - aux_sym_time_expression_token2, - [83946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 1, - sym_number, - [83953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 1, - sym__identifier, - [83960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4083), 1, - sym_number, - [83967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 1, - aux_sym_insert_statement_token2, - [83974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 1, - anon_sym_LBRACK, - [83981] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - aux_sym_time_expression_token2, - [83988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - sym_number, - [83995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 1, - sym__identifier, - [84002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 1, - sym_number, - [84009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, - sym_number, - [84016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 1, - sym_number, - [84023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, + ACTIONS(2727), 1, anon_sym_SEMI, - [84030] = 2, + [84045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, - aux_sym_alter_table_rename_column_token2, - [84037] = 2, + ACTIONS(3795), 1, + aux_sym_table_constraint_ty_token3, + [84052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, - anon_sym_DOLLAR, - [84044] = 2, + ACTIONS(962), 1, + anon_sym_RPAREN, + [84059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, - anon_sym_DOLLAR, - [84051] = 2, + ACTIONS(3797), 1, + aux_sym_table_constraint_ty_token3, + [84066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(3799), 1, + aux_sym_time_expression_token3, + [84073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 1, anon_sym_SEMI, - [84058] = 2, + [84080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - aux_sym_function_return_token1, - [84065] = 2, + ACTIONS(3149), 1, + aux_sym__interval_fields_token2, + [84087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(3803), 1, + aux_sym_create_function_statement_token1, + [84094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3805), 1, + anon_sym_LPAREN, + [84101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + aux_sym__interval_fields_token6, + [84108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 1, + anon_sym_RBRACK, + [84115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3809), 1, + anon_sym_LPAREN, + [84122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3811), 1, + aux_sym_insert_conflict_token1, + [84129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_RPAREN, + [84136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3815), 1, anon_sym_DOLLAR, - [84072] = 2, + [84143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, - aux_sym_function_return_token1, - [84079] = 2, + ACTIONS(3817), 1, + anon_sym_RPAREN, + [84150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(3143), 1, anon_sym_SEMI, - [84086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DOLLAR, - [84093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 1, - aux_sym_with_query_item_token1, - [84100] = 2, + [84157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3314), 1, anon_sym_LPAREN, - [84107] = 2, + [84164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1012), 1, + anon_sym_RPAREN, + [84171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3819), 1, + aux_sym_update_statement_token3, + [84178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3821), 1, + anon_sym_SEMI, + [84185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + sym_number, + [84192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, + sym_number, + [84199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_alter_column_action_token2, + [84206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + aux_sym_insert_conflict_token1, + [84213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3829), 1, + anon_sym_LPAREN, + [84220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + anon_sym_RPAREN, + [84227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3831), 1, + anon_sym_DOLLAR, + [84234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3833), 1, + aux_sym_time_expression_token3, + [84241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3835), 1, + aux_sym_update_statement_token2, + [84248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + aux_sym__interval_fields_token2, + [84255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3837), 1, + aux_sym_insert_conflict_token3, + [84262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_RPAREN, + [84269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 1, + aux_sym__interval_fields_token6, + [84276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3841), 1, + anon_sym_RBRACK, + [84283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + aux_sym_insert_conflict_token2, + [84290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3845), 1, + anon_sym_SEMI, + [84297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3847), 1, + anon_sym_RPAREN, + [84304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3849), 1, + anon_sym_DOLLAR, + [84311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3851), 1, + anon_sym_RPAREN, + [84318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3853), 1, + aux_sym_for_statement_token2, + [84325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3855), 1, + aux_sym_if_statement_token1, + [84332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1052), 1, + anon_sym_RPAREN, + [84339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_SEMI, + [84346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3859), 1, + anon_sym_SEMI, + [84353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3861), 1, + aux_sym_create_table_statement_token1, + [84360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + anon_sym_SEMI, + [84367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, + aux_sym_insert_conflict_token3, + [84374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, + aux_sym_trigger_scope_token1, + [84381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3869), 1, + aux_sym_for_statement_token2, + [84388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_RPAREN, + [84395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3871), 1, + aux_sym_drop_function_statement_token1, + [84402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3873), 1, + aux_sym_time_expression_token3, + [84409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, + aux_sym_get_diagnostics_statement_token3, + [84416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + aux_sym__interval_fields_token2, + [84423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3479), 1, + anon_sym_DOLLAR, + [84430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3877), 1, + aux_sym_create_function_statement_token1, + [84437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + aux_sym__interval_fields_token6, + [84444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + anon_sym_RBRACK, + [84451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_SEMI, + [84458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + anon_sym_SEMI, + [84465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_RPAREN, + [84472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + anon_sym_DOLLAR, + [84479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3889), 1, + anon_sym_RPAREN, + [84486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 1, + anon_sym_SEMI, + [84493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 1, + anon_sym_SEMI, + [84500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 1, + anon_sym_RPAREN, + [84507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + aux_sym_for_statement_token2, + [84514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3897), 1, + anon_sym_SEMI, + [84521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + aux_sym_alter_table_rename_column_token2, + [84528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 1, + aux_sym_insert_conflict_token1, + [84535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_for_statement_token2, + [84542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3905), 1, + anon_sym_SEMI, + [84549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 1, + anon_sym_RPAREN, + [84556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(992), 1, + anon_sym_RPAREN, + [84563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 1, + aux_sym_function_return_token1, + [84570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 1, + aux_sym_time_expression_token3, + [84577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, + aux_sym_if_statement_token1, + [84584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, + aux_sym__interval_fields_token2, + [84591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + aux_sym_grant_targets_token4, + [84598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_RPAREN, + [84605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, + aux_sym__interval_fields_token6, + [84612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_RBRACK, + [84619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_LPAREN, + [84626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, + aux_sym_function_return_token1, + [84633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 1, + anon_sym_RPAREN, + [84640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 1, + anon_sym_DOLLAR, + [84647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 1, + anon_sym_RPAREN, + [84654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, + aux_sym_with_query_item_token1, + [84661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + aux_sym_join_item_token3, + [84668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3933), 1, + aux_sym_select_statement_token1, + [84675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1000), 1, + anon_sym_RPAREN, + [84682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_SEMI, + [84689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3935), 1, + anon_sym_RBRACK, + [84696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3937), 1, + anon_sym_SEMI, + [84703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, + anon_sym_SEMI, + [84710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_RPAREN, + [84717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_RPAREN, + [84724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + aux_sym_for_statement_token2, + [84731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 1, + anon_sym_SEMI, + [84738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3357), 1, + aux_sym__interval_fields_token2, + [84745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 1, + anon_sym_RPAREN, + [84752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, + anon_sym_LPAREN, + [84759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3951), 1, + anon_sym_SEMI, + [84766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3357), 1, + aux_sym__interval_fields_token6, + [84773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 1, + anon_sym_SEMI, + [84780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3955), 1, + aux_sym_insert_conflict_token3, + [84787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 1, + anon_sym_RPAREN, + [84794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + aux_sym_alter_column_action_token1, + [84801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3959), 1, + sym_number, + [84808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 1, + aux_sym_alter_table_rename_column_token2, + [84815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 1, + aux_sym_select_statement_token1, + [84822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3965), 1, + sym_number, + [84829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 1, + anon_sym_RPAREN, + [84836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 1, + anon_sym_RBRACK, + [84843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 1, + aux_sym_update_statement_token3, + [84850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 1, + anon_sym_SEMI, + [84857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_SEMI, + [84864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + anon_sym_SEMI, + [84871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1032), 1, + anon_sym_RPAREN, + [84878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 1, + anon_sym_LPAREN, + [84885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_RPAREN, + [84892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + aux_sym_update_statement_token3, + [84899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 1, + anon_sym_RPAREN, + [84906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3983), 1, + aux_sym_update_statement_token2, + [84913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_RPAREN, + [84920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + aux_sym_function_return_token1, + [84927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_LBRACK, + [84934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + aux_sym_alter_column_action_token1, + [84941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + aux_sym_insert_conflict_token1, + [84948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 1, + aux_sym_time_expression_token2, + [84955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_EQ, + [84962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3999), 1, + aux_sym_if_not_exists_token1, + [84969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + aux_sym_join_item_token3, + [84976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4003), 1, + aux_sym_update_statement_token4, + [84983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + aux_sym_insert_statement_token2, + [84990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_RPAREN, + [84997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4009), 1, + anon_sym_SEMI, + [85004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 1, + sym_number, + [85011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4013), 1, + sym_number, + [85018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4015), 1, + anon_sym_SEMI, + [85025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3399), 1, + anon_sym_LPAREN, + [85032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4017), 1, + sym__identifier, + [85039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 1, + anon_sym_LBRACK, + [85046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 1, + sym_number, + [85053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + aux_sym_insert_conflict_token1, + [85060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym__identifier, + [85067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4027), 1, + aux_sym_sequence_increment_token2, + [85074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LBRACK, + [85081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4031), 1, + aux_sym_alter_column_action_token1, + [85088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 1, + aux_sym_sequence_increment_token2, + [85095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + aux_sym_time_expression_token2, + [85102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_LPAREN, + [85109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 1, + aux_sym_join_item_token3, + [85116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + [85123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2764), 1, + anon_sym_SEMI, + [85130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 1, + anon_sym_SEMI, + [85137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, + sym_number, + [85144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 1, + sym_number, + [85151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4049), 1, + sym__identifier, + [85158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 1, + sym_number, + [85165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4053), 1, + anon_sym_SEMI, + [85172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + aux_sym_insert_conflict_token1, + [85179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + anon_sym_LBRACK, + [85186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 1, + aux_sym_time_expression_token2, + [85193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, + anon_sym_SEMI, + [85200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4063), 1, + aux_sym_join_item_token3, + [85207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_SEMI, + [85214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_DOLLAR, + [85221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + sym_number, + [85228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + sym_number, + [85235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, + sym__identifier, + [85242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + sym_number, + [85249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_SEMI, + [85256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + aux_sym_update_statement_token2, + [85263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 1, + anon_sym_LBRACK, + [85270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + aux_sym_time_expression_token2, + [85277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 1, + anon_sym_SEMI, + [85284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 1, + aux_sym_join_item_token3, + [85291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, + aux_sym_alter_table_rename_column_token2, + [85298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + aux_sym_drop_function_statement_token1, + [85305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + sym_number, + [85312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 1, + sym_number, + [85319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + sym__identifier, + [85326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + sym_number, + [85333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + aux_sym_create_table_statement_token1, + [85340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_alter_table_rename_column_token2, + [85347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 1, + anon_sym_LBRACK, + [85354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_time_expression_token2, + [85361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 1, + aux_sym_or_replace_token1, + [85368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + aux_sym_join_item_token3, + [85375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4111), 1, + anon_sym_SEMI, + [85382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, + anon_sym_SEMI, + [85389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + sym_number, + [85396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 1, + sym_number, + [85403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 1, + sym__identifier, + [85410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 1, + sym_number, + [85417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4121), 1, - anon_sym_DOLLAR, - [84114] = 2, + aux_sym_create_index_statement_token2, + [85424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4123), 1, - anon_sym_RPAREN, - [84121] = 2, + aux_sym_function_return_token1, + [85431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4125), 1, - aux_sym_insert_conflict_token3, - [84128] = 2, + anon_sym_LBRACK, + [85438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4127), 1, - anon_sym_DOLLAR, - [84135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 1, - aux_sym__interval_fields_token2, - [84142] = 2, + aux_sym_time_expression_token2, + [85445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4129), 1, - anon_sym_DOLLAR, - [84149] = 2, + sym_number, + [85452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4131), 1, - anon_sym_DOLLAR, - [84156] = 2, + sym_number, + [85459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4133), 1, - anon_sym_DOLLAR, - [84163] = 2, + sym__identifier, + [85466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4135), 1, - anon_sym_DOLLAR, - [84170] = 2, + sym_number, + [85473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4137), 1, - anon_sym_DOLLAR, - [84177] = 2, - ACTIONS(2750), 1, + aux_sym_create_trigger_statement_token1, + [85480] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4139), 1, - aux_sym_dollar_quote_string_token1, - [84184] = 2, - ACTIONS(2750), 1, + anon_sym_LBRACK, + [85487] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4141), 1, - aux_sym_dollar_quote_string_token1, - [84191] = 2, - ACTIONS(2750), 1, + aux_sym_time_expression_token2, + [85494] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4143), 1, - aux_sym_dollar_quote_string_token1, - [84198] = 2, - ACTIONS(2750), 1, + sym_number, + [85501] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4145), 1, - aux_sym_dollar_quote_string_token1, - [84205] = 2, - ACTIONS(2750), 1, + sym_number, + [85508] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4147), 1, - aux_sym_dollar_quote_string_token1, - [84212] = 2, - ACTIONS(2750), 1, + sym__identifier, + [85515] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4149), 1, - aux_sym_dollar_quote_string_token1, - [84219] = 2, - ACTIONS(2750), 1, + sym_number, + [85522] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4151), 1, - aux_sym_dollar_quote_string_token1, - [84226] = 2, - ACTIONS(2750), 1, + aux_sym_create_schema_statement_token1, + [85529] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4153), 1, - aux_sym_dollar_quote_string_token1, - [84233] = 2, - ACTIONS(2750), 1, + anon_sym_LBRACK, + [85536] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4155), 1, - aux_sym_dollar_quote_string_token1, - [84240] = 2, - ACTIONS(2750), 1, + aux_sym_time_expression_token2, + [85543] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4157), 1, - aux_sym_dollar_quote_string_token1, - [84247] = 2, + sym_number, + [85550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4159), 1, - anon_sym_DOLLAR, - [84254] = 2, + sym_number, + [85557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4161), 1, - anon_sym_DOLLAR, - [84261] = 2, + sym__identifier, + [85564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4163), 1, - anon_sym_DOLLAR, - [84268] = 2, + sym_number, + [85571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4165), 1, - anon_sym_DOLLAR, - [84275] = 2, + anon_sym_SEMI, + [85578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4167), 1, - anon_sym_DOLLAR, - [84282] = 2, + anon_sym_LBRACK, + [85585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4169), 1, - anon_sym_DOLLAR, - [84289] = 2, + aux_sym_time_expression_token2, + [85592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4171), 1, - anon_sym_DOLLAR, - [84296] = 2, + sym_number, + [85599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4173), 1, - anon_sym_DOLLAR, - [84303] = 2, + sym_number, + [85606] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4175), 1, - anon_sym_DOLLAR, - [84310] = 2, + sym__identifier, + [85613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4177), 1, - anon_sym_DOLLAR, - [84317] = 2, + sym_number, + [85620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4179), 1, - sym__identifier, - [84324] = 2, + anon_sym_SEMI, + [85627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4181), 1, - sym__identifier, - [84331] = 2, + anon_sym_LBRACK, + [85634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4183), 1, - sym__identifier, - [84338] = 2, + aux_sym_time_expression_token2, + [85641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4185), 1, - sym__identifier, - [84345] = 2, + sym_number, + [85648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4187), 1, - sym__identifier, - [84352] = 2, + sym_number, + [85655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4189), 1, sym__identifier, - [84359] = 2, + [85662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4191), 1, - sym__identifier, - [84366] = 2, + sym_number, + [85669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4193), 1, - sym__identifier, - [84373] = 2, + sym_number, + [85676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4195), 1, - sym__identifier, - [84380] = 2, + sym_number, + [85683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4197), 1, + sym_number, + [85690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_RPAREN, + [85697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 1, + anon_sym_LPAREN, + [85704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 1, + anon_sym_DOLLAR, + [85711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_SEMI, + [85718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + ts_builtin_sym_end, + [85725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2774), 1, + anon_sym_SEMI, + [85732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 1, + anon_sym_DOLLAR, + [85739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym_SEMI, + [85746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 1, + sym__identifier, + [85753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 1, + anon_sym_DOLLAR, + [85760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 1, + aux_sym_create_table_statement_token1, + [85767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4219), 1, + aux_sym_update_statement_token4, + [85774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_DOLLAR, + [85781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 1, + anon_sym_LPAREN, + [85788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + aux_sym_insert_statement_token2, + [85795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + [85802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3380), 1, + anon_sym_SEMI, + [85809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 1, + anon_sym_DOLLAR, + [85816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_DOLLAR, + [85823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_DOLLAR, + [85830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_DOLLAR, + [85837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + [85844] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4239), 1, + aux_sym_dollar_quote_string_token1, + [85851] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4241), 1, + aux_sym_dollar_quote_string_token1, + [85858] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4243), 1, + aux_sym_dollar_quote_string_token1, + [85865] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4245), 1, + aux_sym_dollar_quote_string_token1, + [85872] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4247), 1, + aux_sym_dollar_quote_string_token1, + [85879] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_dollar_quote_string_token1, + [85886] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4251), 1, + aux_sym_dollar_quote_string_token1, + [85893] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4253), 1, + aux_sym_dollar_quote_string_token1, + [85900] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4255), 1, + aux_sym_dollar_quote_string_token1, + [85907] = 2, + ACTIONS(2819), 1, + sym_comment, + ACTIONS(4257), 1, + aux_sym_dollar_quote_string_token1, + [85914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 1, + anon_sym_DOLLAR, + [85921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4261), 1, + anon_sym_DOLLAR, + [85928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + [85935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, + anon_sym_DOLLAR, + [85942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 1, + anon_sym_DOLLAR, + [85949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + anon_sym_DOLLAR, + [85956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_DOLLAR, + [85963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + [85970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4275), 1, + anon_sym_DOLLAR, + [85977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, + anon_sym_DOLLAR, + [85984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 1, + sym__identifier, + [85991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4281), 1, + sym__identifier, + [85998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 1, + sym__identifier, + [86005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + sym__identifier, + [86012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + sym__identifier, + [86019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4289), 1, + sym__identifier, + [86026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 1, + sym__identifier, + [86033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + sym__identifier, + [86040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4295), 1, + sym__identifier, + [86047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 1, sym__identifier, }; @@ -88678,2377 +90391,2425 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 82, [SMALL_STATE(7)] = 156, [SMALL_STATE(8)] = 238, - [SMALL_STATE(9)] = 325, - [SMALL_STATE(10)] = 400, - [SMALL_STATE(11)] = 469, - [SMALL_STATE(12)] = 560, - [SMALL_STATE(13)] = 659, - [SMALL_STATE(14)] = 752, - [SMALL_STATE(15)] = 859, - [SMALL_STATE(16)] = 954, - [SMALL_STATE(17)] = 1047, - [SMALL_STATE(18)] = 1152, - [SMALL_STATE(19)] = 1259, - [SMALL_STATE(20)] = 1368, - [SMALL_STATE(21)] = 1469, - [SMALL_STATE(22)] = 1538, - [SMALL_STATE(23)] = 1625, - [SMALL_STATE(24)] = 1708, - [SMALL_STATE(25)] = 1799, - [SMALL_STATE(26)] = 1908, - [SMALL_STATE(27)] = 2017, - [SMALL_STATE(28)] = 2122, - [SMALL_STATE(29)] = 2205, - [SMALL_STATE(30)] = 2288, - [SMALL_STATE(31)] = 2371, - [SMALL_STATE(32)] = 2468, - [SMALL_STATE(33)] = 2536, - [SMALL_STATE(34)] = 2604, - [SMALL_STATE(35)] = 2676, - [SMALL_STATE(36)] = 2744, - [SMALL_STATE(37)] = 2815, - [SMALL_STATE(38)] = 2888, - [SMALL_STATE(39)] = 2959, - [SMALL_STATE(40)] = 3025, - [SMALL_STATE(41)] = 3091, - [SMALL_STATE(42)] = 3163, - [SMALL_STATE(43)] = 3229, - [SMALL_STATE(44)] = 3295, - [SMALL_STATE(45)] = 3367, - [SMALL_STATE(46)] = 3433, - [SMALL_STATE(47)] = 3499, - [SMALL_STATE(48)] = 3565, - [SMALL_STATE(49)] = 3631, - [SMALL_STATE(50)] = 3697, - [SMALL_STATE(51)] = 3810, - [SMALL_STATE(52)] = 3887, - [SMALL_STATE(53)] = 3956, - [SMALL_STATE(54)] = 4021, - [SMALL_STATE(55)] = 4090, - [SMALL_STATE(56)] = 4167, - [SMALL_STATE(57)] = 4245, - [SMALL_STATE(58)] = 4339, - [SMALL_STATE(59)] = 4405, - [SMALL_STATE(60)] = 4491, - [SMALL_STATE(61)] = 4557, - [SMALL_STATE(62)] = 4623, - [SMALL_STATE(63)] = 4689, - [SMALL_STATE(64)] = 4805, - [SMALL_STATE(65)] = 4869, - [SMALL_STATE(66)] = 4965, - [SMALL_STATE(67)] = 5071, - [SMALL_STATE(68)] = 5159, - [SMALL_STATE(69)] = 5249, - [SMALL_STATE(70)] = 5351, - [SMALL_STATE(71)] = 5415, - [SMALL_STATE(72)] = 5497, - [SMALL_STATE(73)] = 5575, - [SMALL_STATE(74)] = 5653, - [SMALL_STATE(75)] = 5755, - [SMALL_STATE(76)] = 5819, - [SMALL_STATE(77)] = 5883, - [SMALL_STATE(78)] = 5985, - [SMALL_STATE(79)] = 6051, - [SMALL_STATE(80)] = 6157, - [SMALL_STATE(81)] = 6235, - [SMALL_STATE(82)] = 6317, - [SMALL_STATE(83)] = 6393, - [SMALL_STATE(84)] = 6495, - [SMALL_STATE(85)] = 6587, - [SMALL_STATE(86)] = 6675, - [SMALL_STATE(87)] = 6761, - [SMALL_STATE(88)] = 6825, - [SMALL_STATE(89)] = 6891, - [SMALL_STATE(90)] = 6957, - [SMALL_STATE(91)] = 7023, - [SMALL_STATE(92)] = 7086, - [SMALL_STATE(93)] = 7195, - [SMALL_STATE(94)] = 7258, - [SMALL_STATE(95)] = 7321, - [SMALL_STATE(96)] = 7432, - [SMALL_STATE(97)] = 7495, - [SMALL_STATE(98)] = 7558, - [SMALL_STATE(99)] = 7621, - [SMALL_STATE(100)] = 7684, - [SMALL_STATE(101)] = 7793, - [SMALL_STATE(102)] = 7856, - [SMALL_STATE(103)] = 7923, - [SMALL_STATE(104)] = 8000, - [SMALL_STATE(105)] = 8099, - [SMALL_STATE(106)] = 8174, - [SMALL_STATE(107)] = 8241, - [SMALL_STATE(108)] = 8318, - [SMALL_STATE(109)] = 8399, - [SMALL_STATE(110)] = 8498, - [SMALL_STATE(111)] = 8589, - [SMALL_STATE(112)] = 8676, - [SMALL_STATE(113)] = 8771, - [SMALL_STATE(114)] = 8834, - [SMALL_STATE(115)] = 8919, - [SMALL_STATE(116)] = 8982, - [SMALL_STATE(117)] = 9045, - [SMALL_STATE(118)] = 9108, - [SMALL_STATE(119)] = 9171, - [SMALL_STATE(120)] = 9234, - [SMALL_STATE(121)] = 9297, - [SMALL_STATE(122)] = 9360, - [SMALL_STATE(123)] = 9423, - [SMALL_STATE(124)] = 9526, - [SMALL_STATE(125)] = 9589, - [SMALL_STATE(126)] = 9652, - [SMALL_STATE(127)] = 9715, - [SMALL_STATE(128)] = 9778, - [SMALL_STATE(129)] = 9841, - [SMALL_STATE(130)] = 9904, - [SMALL_STATE(131)] = 9967, - [SMALL_STATE(132)] = 10030, - [SMALL_STATE(133)] = 10105, - [SMALL_STATE(134)] = 10168, - [SMALL_STATE(135)] = 10231, - [SMALL_STATE(136)] = 10294, - [SMALL_STATE(137)] = 10357, - [SMALL_STATE(138)] = 10420, - [SMALL_STATE(139)] = 10483, - [SMALL_STATE(140)] = 10586, - [SMALL_STATE(141)] = 10649, - [SMALL_STATE(142)] = 10712, - [SMALL_STATE(143)] = 10775, - [SMALL_STATE(144)] = 10838, - [SMALL_STATE(145)] = 10900, - [SMALL_STATE(146)] = 10962, - [SMALL_STATE(147)] = 11024, - [SMALL_STATE(148)] = 11114, - [SMALL_STATE(149)] = 11200, - [SMALL_STATE(150)] = 11294, - [SMALL_STATE(151)] = 11378, - [SMALL_STATE(152)] = 11452, - [SMALL_STATE(153)] = 11532, - [SMALL_STATE(154)] = 11608, - [SMALL_STATE(155)] = 11710, - [SMALL_STATE(156)] = 11794, - [SMALL_STATE(157)] = 11862, - [SMALL_STATE(158)] = 11954, - [SMALL_STATE(159)] = 12040, - [SMALL_STATE(160)] = 12128, - [SMALL_STATE(161)] = 12228, - [SMALL_STATE(162)] = 12326, - [SMALL_STATE(163)] = 12402, - [SMALL_STATE(164)] = 12470, - [SMALL_STATE(165)] = 12536, - [SMALL_STATE(166)] = 12616, - [SMALL_STATE(167)] = 12692, - [SMALL_STATE(168)] = 12802, - [SMALL_STATE(169)] = 12876, - [SMALL_STATE(170)] = 12938, - [SMALL_STATE(171)] = 13004, - [SMALL_STATE(172)] = 13108, - [SMALL_STATE(173)] = 13210, - [SMALL_STATE(174)] = 13286, - [SMALL_STATE(175)] = 13386, - [SMALL_STATE(176)] = 13484, - [SMALL_STATE(177)] = 13551, - [SMALL_STATE(178)] = 13612, - [SMALL_STATE(179)] = 13673, - [SMALL_STATE(180)] = 13734, - [SMALL_STATE(181)] = 13839, - [SMALL_STATE(182)] = 13900, - [SMALL_STATE(183)] = 13961, - [SMALL_STATE(184)] = 14022, - [SMALL_STATE(185)] = 14083, - [SMALL_STATE(186)] = 14188, - [SMALL_STATE(187)] = 14263, - [SMALL_STATE(188)] = 14362, - [SMALL_STATE(189)] = 14437, - [SMALL_STATE(190)] = 14538, - [SMALL_STATE(191)] = 14639, - [SMALL_STATE(192)] = 14700, - [SMALL_STATE(193)] = 14775, - [SMALL_STATE(194)] = 14854, - [SMALL_STATE(195)] = 14915, - [SMALL_STATE(196)] = 15014, - [SMALL_STATE(197)] = 15101, - [SMALL_STATE(198)] = 15186, - [SMALL_STATE(199)] = 15247, - [SMALL_STATE(200)] = 15346, - [SMALL_STATE(201)] = 15413, - [SMALL_STATE(202)] = 15496, - [SMALL_STATE(203)] = 15589, - [SMALL_STATE(204)] = 15674, - [SMALL_STATE(205)] = 15735, - [SMALL_STATE(206)] = 15826, - [SMALL_STATE(207)] = 15891, - [SMALL_STATE(208)] = 15980, - [SMALL_STATE(209)] = 16079, - [SMALL_STATE(210)] = 16162, - [SMALL_STATE(211)] = 16223, - [SMALL_STATE(212)] = 16298, - [SMALL_STATE(213)] = 16365, - [SMALL_STATE(214)] = 16468, - [SMALL_STATE(215)] = 16535, - [SMALL_STATE(216)] = 16596, - [SMALL_STATE(217)] = 16675, - [SMALL_STATE(218)] = 16781, - [SMALL_STATE(219)] = 16847, - [SMALL_STATE(220)] = 16953, - [SMALL_STATE(221)] = 17059, - [SMALL_STATE(222)] = 17123, - [SMALL_STATE(223)] = 17187, - [SMALL_STATE(224)] = 17293, - [SMALL_STATE(225)] = 17399, - [SMALL_STATE(226)] = 17499, - [SMALL_STATE(227)] = 17565, - [SMALL_STATE(228)] = 17629, - [SMALL_STATE(229)] = 17735, - [SMALL_STATE(230)] = 17795, - [SMALL_STATE(231)] = 17901, - [SMALL_STATE(232)] = 18007, - [SMALL_STATE(233)] = 18113, - [SMALL_STATE(234)] = 18219, - [SMALL_STATE(235)] = 18325, - [SMALL_STATE(236)] = 18431, - [SMALL_STATE(237)] = 18531, - [SMALL_STATE(238)] = 18637, - [SMALL_STATE(239)] = 18743, - [SMALL_STATE(240)] = 18849, - [SMALL_STATE(241)] = 18913, - [SMALL_STATE(242)] = 18973, - [SMALL_STATE(243)] = 19037, - [SMALL_STATE(244)] = 19097, - [SMALL_STATE(245)] = 19203, - [SMALL_STATE(246)] = 19309, - [SMALL_STATE(247)] = 19369, - [SMALL_STATE(248)] = 19475, - [SMALL_STATE(249)] = 19535, - [SMALL_STATE(250)] = 19595, - [SMALL_STATE(251)] = 19659, - [SMALL_STATE(252)] = 19719, - [SMALL_STATE(253)] = 19779, - [SMALL_STATE(254)] = 19885, - [SMALL_STATE(255)] = 19946, - [SMALL_STATE(256)] = 20005, - [SMALL_STATE(257)] = 20064, - [SMALL_STATE(258)] = 20167, - [SMALL_STATE(259)] = 20226, - [SMALL_STATE(260)] = 20287, - [SMALL_STATE(261)] = 20346, - [SMALL_STATE(262)] = 20449, - [SMALL_STATE(263)] = 20512, - [SMALL_STATE(264)] = 20571, - [SMALL_STATE(265)] = 20632, - [SMALL_STATE(266)] = 20735, - [SMALL_STATE(267)] = 20798, - [SMALL_STATE(268)] = 20859, - [SMALL_STATE(269)] = 20920, - [SMALL_STATE(270)] = 20985, - [SMALL_STATE(271)] = 21044, - [SMALL_STATE(272)] = 21109, - [SMALL_STATE(273)] = 21212, - [SMALL_STATE(274)] = 21271, - [SMALL_STATE(275)] = 21334, - [SMALL_STATE(276)] = 21395, - [SMALL_STATE(277)] = 21458, - [SMALL_STATE(278)] = 21519, - [SMALL_STATE(279)] = 21580, - [SMALL_STATE(280)] = 21645, - [SMALL_STATE(281)] = 21704, - [SMALL_STATE(282)] = 21769, - [SMALL_STATE(283)] = 21828, - [SMALL_STATE(284)] = 21886, - [SMALL_STATE(285)] = 21944, - [SMALL_STATE(286)] = 22002, - [SMALL_STATE(287)] = 22060, - [SMALL_STATE(288)] = 22118, - [SMALL_STATE(289)] = 22176, - [SMALL_STATE(290)] = 22234, + [SMALL_STATE(9)] = 312, + [SMALL_STATE(10)] = 417, + [SMALL_STATE(11)] = 508, + [SMALL_STATE(12)] = 605, + [SMALL_STATE(13)] = 712, + [SMALL_STATE(14)] = 799, + [SMALL_STATE(15)] = 882, + [SMALL_STATE(16)] = 989, + [SMALL_STATE(17)] = 1072, + [SMALL_STATE(18)] = 1181, + [SMALL_STATE(19)] = 1250, + [SMALL_STATE(20)] = 1325, + [SMALL_STATE(21)] = 1430, + [SMALL_STATE(22)] = 1525, + [SMALL_STATE(23)] = 1618, + [SMALL_STATE(24)] = 1717, + [SMALL_STATE(25)] = 1808, + [SMALL_STATE(26)] = 1917, + [SMALL_STATE(27)] = 2010, + [SMALL_STATE(28)] = 2093, + [SMALL_STATE(29)] = 2162, + [SMALL_STATE(30)] = 2263, + [SMALL_STATE(31)] = 2346, + [SMALL_STATE(32)] = 2455, + [SMALL_STATE(33)] = 2542, + [SMALL_STATE(34)] = 2610, + [SMALL_STATE(35)] = 2678, + [SMALL_STATE(36)] = 2750, + [SMALL_STATE(37)] = 2822, + [SMALL_STATE(38)] = 2890, + [SMALL_STATE(39)] = 2958, + [SMALL_STATE(40)] = 3029, + [SMALL_STATE(41)] = 3102, + [SMALL_STATE(42)] = 3173, + [SMALL_STATE(43)] = 3239, + [SMALL_STATE(44)] = 3305, + [SMALL_STATE(45)] = 3371, + [SMALL_STATE(46)] = 3437, + [SMALL_STATE(47)] = 3503, + [SMALL_STATE(48)] = 3575, + [SMALL_STATE(49)] = 3641, + [SMALL_STATE(50)] = 3707, + [SMALL_STATE(51)] = 3773, + [SMALL_STATE(52)] = 3839, + [SMALL_STATE(53)] = 3905, + [SMALL_STATE(54)] = 3977, + [SMALL_STATE(55)] = 4042, + [SMALL_STATE(56)] = 4111, + [SMALL_STATE(57)] = 4180, + [SMALL_STATE(58)] = 4257, + [SMALL_STATE(59)] = 4370, + [SMALL_STATE(60)] = 4447, + [SMALL_STATE(61)] = 4511, + [SMALL_STATE(62)] = 4577, + [SMALL_STATE(63)] = 4641, + [SMALL_STATE(64)] = 4705, + [SMALL_STATE(65)] = 4787, + [SMALL_STATE(66)] = 4865, + [SMALL_STATE(67)] = 4981, + [SMALL_STATE(68)] = 5045, + [SMALL_STATE(69)] = 5111, + [SMALL_STATE(70)] = 5177, + [SMALL_STATE(71)] = 5243, + [SMALL_STATE(72)] = 5345, + [SMALL_STATE(73)] = 5423, + [SMALL_STATE(74)] = 5487, + [SMALL_STATE(75)] = 5563, + [SMALL_STATE(76)] = 5669, + [SMALL_STATE(77)] = 5755, + [SMALL_STATE(78)] = 5849, + [SMALL_STATE(79)] = 5951, + [SMALL_STATE(80)] = 6039, + [SMALL_STATE(81)] = 6131, + [SMALL_STATE(82)] = 6219, + [SMALL_STATE(83)] = 6309, + [SMALL_STATE(84)] = 6411, + [SMALL_STATE(85)] = 6507, + [SMALL_STATE(86)] = 6589, + [SMALL_STATE(87)] = 6667, + [SMALL_STATE(88)] = 6753, + [SMALL_STATE(89)] = 6855, + [SMALL_STATE(90)] = 6933, + [SMALL_STATE(91)] = 7039, + [SMALL_STATE(92)] = 7105, + [SMALL_STATE(93)] = 7171, + [SMALL_STATE(94)] = 7237, + [SMALL_STATE(95)] = 7303, + [SMALL_STATE(96)] = 7366, + [SMALL_STATE(97)] = 7447, + [SMALL_STATE(98)] = 7556, + [SMALL_STATE(99)] = 7619, + [SMALL_STATE(100)] = 7722, + [SMALL_STATE(101)] = 7785, + [SMALL_STATE(102)] = 7848, + [SMALL_STATE(103)] = 7911, + [SMALL_STATE(104)] = 7974, + [SMALL_STATE(105)] = 8037, + [SMALL_STATE(106)] = 8100, + [SMALL_STATE(107)] = 8163, + [SMALL_STATE(108)] = 8226, + [SMALL_STATE(109)] = 8289, + [SMALL_STATE(110)] = 8352, + [SMALL_STATE(111)] = 8415, + [SMALL_STATE(112)] = 8478, + [SMALL_STATE(113)] = 8541, + [SMALL_STATE(114)] = 8608, + [SMALL_STATE(115)] = 8671, + [SMALL_STATE(116)] = 8734, + [SMALL_STATE(117)] = 8797, + [SMALL_STATE(118)] = 8860, + [SMALL_STATE(119)] = 8923, + [SMALL_STATE(120)] = 8986, + [SMALL_STATE(121)] = 9089, + [SMALL_STATE(122)] = 9156, + [SMALL_STATE(123)] = 9219, + [SMALL_STATE(124)] = 9296, + [SMALL_STATE(125)] = 9371, + [SMALL_STATE(126)] = 9434, + [SMALL_STATE(127)] = 9533, + [SMALL_STATE(128)] = 9596, + [SMALL_STATE(129)] = 9673, + [SMALL_STATE(130)] = 9736, + [SMALL_STATE(131)] = 9847, + [SMALL_STATE(132)] = 9922, + [SMALL_STATE(133)] = 9985, + [SMALL_STATE(134)] = 10048, + [SMALL_STATE(135)] = 10111, + [SMALL_STATE(136)] = 10174, + [SMALL_STATE(137)] = 10237, + [SMALL_STATE(138)] = 10300, + [SMALL_STATE(139)] = 10363, + [SMALL_STATE(140)] = 10426, + [SMALL_STATE(141)] = 10489, + [SMALL_STATE(142)] = 10552, + [SMALL_STATE(143)] = 10651, + [SMALL_STATE(144)] = 10718, + [SMALL_STATE(145)] = 10827, + [SMALL_STATE(146)] = 10894, + [SMALL_STATE(147)] = 10985, + [SMALL_STATE(148)] = 11070, + [SMALL_STATE(149)] = 11157, + [SMALL_STATE(150)] = 11252, + [SMALL_STATE(151)] = 11328, + [SMALL_STATE(152)] = 11430, + [SMALL_STATE(153)] = 11516, + [SMALL_STATE(154)] = 11614, + [SMALL_STATE(155)] = 11706, + [SMALL_STATE(156)] = 11806, + [SMALL_STATE(157)] = 11868, + [SMALL_STATE(158)] = 11972, + [SMALL_STATE(159)] = 12052, + [SMALL_STATE(160)] = 12114, + [SMALL_STATE(161)] = 12208, + [SMALL_STATE(162)] = 12276, + [SMALL_STATE(163)] = 12386, + [SMALL_STATE(164)] = 12452, + [SMALL_STATE(165)] = 12518, + [SMALL_STATE(166)] = 12584, + [SMALL_STATE(167)] = 12658, + [SMALL_STATE(168)] = 12720, + [SMALL_STATE(169)] = 12782, + [SMALL_STATE(170)] = 12866, + [SMALL_STATE(171)] = 12940, + [SMALL_STATE(172)] = 13028, + [SMALL_STATE(173)] = 13126, + [SMALL_STATE(174)] = 13212, + [SMALL_STATE(175)] = 13288, + [SMALL_STATE(176)] = 13378, + [SMALL_STATE(177)] = 13462, + [SMALL_STATE(178)] = 13538, + [SMALL_STATE(179)] = 13638, + [SMALL_STATE(180)] = 13714, + [SMALL_STATE(181)] = 13816, + [SMALL_STATE(182)] = 13896, + [SMALL_STATE(183)] = 13964, + [SMALL_STATE(184)] = 14030, + [SMALL_STATE(185)] = 14133, + [SMALL_STATE(186)] = 14194, + [SMALL_STATE(187)] = 14255, + [SMALL_STATE(188)] = 14316, + [SMALL_STATE(189)] = 14417, + [SMALL_STATE(190)] = 14522, + [SMALL_STATE(191)] = 14597, + [SMALL_STATE(192)] = 14658, + [SMALL_STATE(193)] = 14757, + [SMALL_STATE(194)] = 14858, + [SMALL_STATE(195)] = 14933, + [SMALL_STATE(196)] = 14994, + [SMALL_STATE(197)] = 15061, + [SMALL_STATE(198)] = 15122, + [SMALL_STATE(199)] = 15201, + [SMALL_STATE(200)] = 15268, + [SMALL_STATE(201)] = 15329, + [SMALL_STATE(202)] = 15428, + [SMALL_STATE(203)] = 15489, + [SMALL_STATE(204)] = 15564, + [SMALL_STATE(205)] = 15663, + [SMALL_STATE(206)] = 15752, + [SMALL_STATE(207)] = 15817, + [SMALL_STATE(208)] = 15892, + [SMALL_STATE(209)] = 15977, + [SMALL_STATE(210)] = 16070, + [SMALL_STATE(211)] = 16153, + [SMALL_STATE(212)] = 16214, + [SMALL_STATE(213)] = 16319, + [SMALL_STATE(214)] = 16380, + [SMALL_STATE(215)] = 16445, + [SMALL_STATE(216)] = 16524, + [SMALL_STATE(217)] = 16623, + [SMALL_STATE(218)] = 16710, + [SMALL_STATE(219)] = 16771, + [SMALL_STATE(220)] = 16832, + [SMALL_STATE(221)] = 16917, + [SMALL_STATE(222)] = 16984, + [SMALL_STATE(223)] = 17075, + [SMALL_STATE(224)] = 17158, + [SMALL_STATE(225)] = 17219, + [SMALL_STATE(226)] = 17286, + [SMALL_STATE(227)] = 17347, + [SMALL_STATE(228)] = 17408, + [SMALL_STATE(229)] = 17514, + [SMALL_STATE(230)] = 17574, + [SMALL_STATE(231)] = 17638, + [SMALL_STATE(232)] = 17698, + [SMALL_STATE(233)] = 17762, + [SMALL_STATE(234)] = 17822, + [SMALL_STATE(235)] = 17882, + [SMALL_STATE(236)] = 17942, + [SMALL_STATE(237)] = 18002, + [SMALL_STATE(238)] = 18068, + [SMALL_STATE(239)] = 18132, + [SMALL_STATE(240)] = 18192, + [SMALL_STATE(241)] = 18256, + [SMALL_STATE(242)] = 18362, + [SMALL_STATE(243)] = 18426, + [SMALL_STATE(244)] = 18490, + [SMALL_STATE(245)] = 18550, + [SMALL_STATE(246)] = 18656, + [SMALL_STATE(247)] = 18762, + [SMALL_STATE(248)] = 18826, + [SMALL_STATE(249)] = 18932, + [SMALL_STATE(250)] = 18992, + [SMALL_STATE(251)] = 19052, + [SMALL_STATE(252)] = 19158, + [SMALL_STATE(253)] = 19264, + [SMALL_STATE(254)] = 19370, + [SMALL_STATE(255)] = 19470, + [SMALL_STATE(256)] = 19536, + [SMALL_STATE(257)] = 19642, + [SMALL_STATE(258)] = 19748, + [SMALL_STATE(259)] = 19854, + [SMALL_STATE(260)] = 19960, + [SMALL_STATE(261)] = 20060, + [SMALL_STATE(262)] = 20166, + [SMALL_STATE(263)] = 20272, + [SMALL_STATE(264)] = 20378, + [SMALL_STATE(265)] = 20484, + [SMALL_STATE(266)] = 20590, + [SMALL_STATE(267)] = 20696, + [SMALL_STATE(268)] = 20802, + [SMALL_STATE(269)] = 20866, + [SMALL_STATE(270)] = 20925, + [SMALL_STATE(271)] = 21028, + [SMALL_STATE(272)] = 21089, + [SMALL_STATE(273)] = 21150, + [SMALL_STATE(274)] = 21211, + [SMALL_STATE(275)] = 21314, + [SMALL_STATE(276)] = 21379, + [SMALL_STATE(277)] = 21440, + [SMALL_STATE(278)] = 21503, + [SMALL_STATE(279)] = 21566, + [SMALL_STATE(280)] = 21629, + [SMALL_STATE(281)] = 21688, + [SMALL_STATE(282)] = 21747, + [SMALL_STATE(283)] = 21812, + [SMALL_STATE(284)] = 21871, + [SMALL_STATE(285)] = 21930, + [SMALL_STATE(286)] = 21989, + [SMALL_STATE(287)] = 22054, + [SMALL_STATE(288)] = 22113, + [SMALL_STATE(289)] = 22172, + [SMALL_STATE(290)] = 22231, [SMALL_STATE(291)] = 22292, - [SMALL_STATE(292)] = 22350, - [SMALL_STATE(293)] = 22408, - [SMALL_STATE(294)] = 22466, - [SMALL_STATE(295)] = 22524, - [SMALL_STATE(296)] = 22584, - [SMALL_STATE(297)] = 22644, - [SMALL_STATE(298)] = 22704, - [SMALL_STATE(299)] = 22762, - [SMALL_STATE(300)] = 22820, - [SMALL_STATE(301)] = 22880, - [SMALL_STATE(302)] = 22938, - [SMALL_STATE(303)] = 22996, - [SMALL_STATE(304)] = 23054, - [SMALL_STATE(305)] = 23112, - [SMALL_STATE(306)] = 23170, - [SMALL_STATE(307)] = 23228, - [SMALL_STATE(308)] = 23286, - [SMALL_STATE(309)] = 23344, - [SMALL_STATE(310)] = 23402, - [SMALL_STATE(311)] = 23460, - [SMALL_STATE(312)] = 23518, - [SMALL_STATE(313)] = 23576, - [SMALL_STATE(314)] = 23640, - [SMALL_STATE(315)] = 23702, - [SMALL_STATE(316)] = 23760, - [SMALL_STATE(317)] = 23818, - [SMALL_STATE(318)] = 23876, - [SMALL_STATE(319)] = 23934, - [SMALL_STATE(320)] = 23992, - [SMALL_STATE(321)] = 24050, - [SMALL_STATE(322)] = 24176, - [SMALL_STATE(323)] = 24234, - [SMALL_STATE(324)] = 24360, - [SMALL_STATE(325)] = 24418, - [SMALL_STATE(326)] = 24476, - [SMALL_STATE(327)] = 24574, - [SMALL_STATE(328)] = 24632, - [SMALL_STATE(329)] = 24734, - [SMALL_STATE(330)] = 24792, - [SMALL_STATE(331)] = 24850, - [SMALL_STATE(332)] = 24908, - [SMALL_STATE(333)] = 24966, - [SMALL_STATE(334)] = 25028, - [SMALL_STATE(335)] = 25086, - [SMALL_STATE(336)] = 25144, - [SMALL_STATE(337)] = 25202, - [SMALL_STATE(338)] = 25260, - [SMALL_STATE(339)] = 25324, - [SMALL_STATE(340)] = 25382, - [SMALL_STATE(341)] = 25440, - [SMALL_STATE(342)] = 25498, - [SMALL_STATE(343)] = 25556, - [SMALL_STATE(344)] = 25613, - [SMALL_STATE(345)] = 25670, - [SMALL_STATE(346)] = 25729, - [SMALL_STATE(347)] = 25790, - [SMALL_STATE(348)] = 25849, - [SMALL_STATE(349)] = 25908, - [SMALL_STATE(350)] = 25967, - [SMALL_STATE(351)] = 26024, - [SMALL_STATE(352)] = 26083, - [SMALL_STATE(353)] = 26142, - [SMALL_STATE(354)] = 26201, - [SMALL_STATE(355)] = 26260, - [SMALL_STATE(356)] = 26317, - [SMALL_STATE(357)] = 26378, - [SMALL_STATE(358)] = 26435, - [SMALL_STATE(359)] = 26492, - [SMALL_STATE(360)] = 26549, - [SMALL_STATE(361)] = 26606, - [SMALL_STATE(362)] = 26663, - [SMALL_STATE(363)] = 26720, - [SMALL_STATE(364)] = 26777, - [SMALL_STATE(365)] = 26834, - [SMALL_STATE(366)] = 26891, - [SMALL_STATE(367)] = 26948, - [SMALL_STATE(368)] = 27005, - [SMALL_STATE(369)] = 27062, - [SMALL_STATE(370)] = 27123, - [SMALL_STATE(371)] = 27180, - [SMALL_STATE(372)] = 27241, - [SMALL_STATE(373)] = 27298, - [SMALL_STATE(374)] = 27355, - [SMALL_STATE(375)] = 27423, - [SMALL_STATE(376)] = 27481, - [SMALL_STATE(377)] = 27537, - [SMALL_STATE(378)] = 27595, - [SMALL_STATE(379)] = 27651, - [SMALL_STATE(380)] = 27707, - [SMALL_STATE(381)] = 27763, - [SMALL_STATE(382)] = 27819, - [SMALL_STATE(383)] = 27875, - [SMALL_STATE(384)] = 27933, - [SMALL_STATE(385)] = 27991, - [SMALL_STATE(386)] = 28047, - [SMALL_STATE(387)] = 28105, - [SMALL_STATE(388)] = 28161, - [SMALL_STATE(389)] = 28217, - [SMALL_STATE(390)] = 28273, - [SMALL_STATE(391)] = 28377, - [SMALL_STATE(392)] = 28433, - [SMALL_STATE(393)] = 28489, - [SMALL_STATE(394)] = 28545, - [SMALL_STATE(395)] = 28601, - [SMALL_STATE(396)] = 28657, - [SMALL_STATE(397)] = 28715, - [SMALL_STATE(398)] = 28773, - [SMALL_STATE(399)] = 28831, - [SMALL_STATE(400)] = 28887, - [SMALL_STATE(401)] = 28943, - [SMALL_STATE(402)] = 29067, - [SMALL_STATE(403)] = 29123, - [SMALL_STATE(404)] = 29179, - [SMALL_STATE(405)] = 29235, - [SMALL_STATE(406)] = 29291, - [SMALL_STATE(407)] = 29347, - [SMALL_STATE(408)] = 29443, - [SMALL_STATE(409)] = 29499, - [SMALL_STATE(410)] = 29555, - [SMALL_STATE(411)] = 29611, - [SMALL_STATE(412)] = 29667, - [SMALL_STATE(413)] = 29723, - [SMALL_STATE(414)] = 29779, - [SMALL_STATE(415)] = 29835, - [SMALL_STATE(416)] = 29959, - [SMALL_STATE(417)] = 30015, - [SMALL_STATE(418)] = 30071, - [SMALL_STATE(419)] = 30127, - [SMALL_STATE(420)] = 30183, - [SMALL_STATE(421)] = 30239, - [SMALL_STATE(422)] = 30295, - [SMALL_STATE(423)] = 30351, - [SMALL_STATE(424)] = 30407, - [SMALL_STATE(425)] = 30480, - [SMALL_STATE(426)] = 30535, - [SMALL_STATE(427)] = 30590, - [SMALL_STATE(428)] = 30645, - [SMALL_STATE(429)] = 30700, - [SMALL_STATE(430)] = 30755, - [SMALL_STATE(431)] = 30810, - [SMALL_STATE(432)] = 30865, - [SMALL_STATE(433)] = 30920, - [SMALL_STATE(434)] = 31017, - [SMALL_STATE(435)] = 31072, - [SMALL_STATE(436)] = 31127, - [SMALL_STATE(437)] = 31220, - [SMALL_STATE(438)] = 31275, - [SMALL_STATE(439)] = 31330, - [SMALL_STATE(440)] = 31385, - [SMALL_STATE(441)] = 31440, - [SMALL_STATE(442)] = 31495, - [SMALL_STATE(443)] = 31550, - [SMALL_STATE(444)] = 31605, - [SMALL_STATE(445)] = 31682, - [SMALL_STATE(446)] = 31767, - [SMALL_STATE(447)] = 31846, - [SMALL_STATE(448)] = 31927, - [SMALL_STATE(449)] = 32020, - [SMALL_STATE(450)] = 32075, - [SMALL_STATE(451)] = 32130, - [SMALL_STATE(452)] = 32233, - [SMALL_STATE(453)] = 32302, - [SMALL_STATE(454)] = 32357, - [SMALL_STATE(455)] = 32412, - [SMALL_STATE(456)] = 32467, - [SMALL_STATE(457)] = 32522, - [SMALL_STATE(458)] = 32577, - [SMALL_STATE(459)] = 32632, - [SMALL_STATE(460)] = 32687, - [SMALL_STATE(461)] = 32742, - [SMALL_STATE(462)] = 32809, - [SMALL_STATE(463)] = 32932, - [SMALL_STATE(464)] = 32987, - [SMALL_STATE(465)] = 33042, - [SMALL_STATE(466)] = 33097, - [SMALL_STATE(467)] = 33152, - [SMALL_STATE(468)] = 33245, - [SMALL_STATE(469)] = 33300, - [SMALL_STATE(470)] = 33369, - [SMALL_STATE(471)] = 33470, - [SMALL_STATE(472)] = 33593, - [SMALL_STATE(473)] = 33648, - [SMALL_STATE(474)] = 33703, - [SMALL_STATE(475)] = 33758, - [SMALL_STATE(476)] = 33813, - [SMALL_STATE(477)] = 33868, - [SMALL_STATE(478)] = 33923, - [SMALL_STATE(479)] = 34018, - [SMALL_STATE(480)] = 34110, - [SMALL_STATE(481)] = 34178, - [SMALL_STATE(482)] = 34250, - [SMALL_STATE(483)] = 34304, - [SMALL_STATE(484)] = 34362, - [SMALL_STATE(485)] = 34446, - [SMALL_STATE(486)] = 34538, - [SMALL_STATE(487)] = 34616, - [SMALL_STATE(488)] = 34684, - [SMALL_STATE(489)] = 34764, - [SMALL_STATE(490)] = 34860, - [SMALL_STATE(491)] = 34916, - [SMALL_STATE(492)] = 35008, - [SMALL_STATE(493)] = 35062, - [SMALL_STATE(494)] = 35118, - [SMALL_STATE(495)] = 35194, - [SMALL_STATE(496)] = 35253, - [SMALL_STATE(497)] = 35346, - [SMALL_STATE(498)] = 35441, - [SMALL_STATE(499)] = 35498, - [SMALL_STATE(500)] = 35550, - [SMALL_STATE(501)] = 35644, - [SMALL_STATE(502)] = 35738, - [SMALL_STATE(503)] = 35832, - [SMALL_STATE(504)] = 35926, - [SMALL_STATE(505)] = 36020, - [SMALL_STATE(506)] = 36114, - [SMALL_STATE(507)] = 36208, - [SMALL_STATE(508)] = 36302, - [SMALL_STATE(509)] = 36396, - [SMALL_STATE(510)] = 36490, - [SMALL_STATE(511)] = 36584, - [SMALL_STATE(512)] = 36678, - [SMALL_STATE(513)] = 36772, - [SMALL_STATE(514)] = 36866, - [SMALL_STATE(515)] = 36960, - [SMALL_STATE(516)] = 37054, - [SMALL_STATE(517)] = 37148, - [SMALL_STATE(518)] = 37242, - [SMALL_STATE(519)] = 37336, - [SMALL_STATE(520)] = 37430, - [SMALL_STATE(521)] = 37524, - [SMALL_STATE(522)] = 37582, - [SMALL_STATE(523)] = 37676, - [SMALL_STATE(524)] = 37728, - [SMALL_STATE(525)] = 37780, - [SMALL_STATE(526)] = 37838, - [SMALL_STATE(527)] = 37932, - [SMALL_STATE(528)] = 38026, - [SMALL_STATE(529)] = 38120, - [SMALL_STATE(530)] = 38214, - [SMALL_STATE(531)] = 38308, - [SMALL_STATE(532)] = 38402, - [SMALL_STATE(533)] = 38496, - [SMALL_STATE(534)] = 38590, - [SMALL_STATE(535)] = 38684, - [SMALL_STATE(536)] = 38778, - [SMALL_STATE(537)] = 38872, - [SMALL_STATE(538)] = 38966, - [SMALL_STATE(539)] = 39018, - [SMALL_STATE(540)] = 39112, - [SMALL_STATE(541)] = 39206, - [SMALL_STATE(542)] = 39300, - [SMALL_STATE(543)] = 39390, - [SMALL_STATE(544)] = 39484, - [SMALL_STATE(545)] = 39536, - [SMALL_STATE(546)] = 39630, - [SMALL_STATE(547)] = 39724, - [SMALL_STATE(548)] = 39818, - [SMALL_STATE(549)] = 39912, - [SMALL_STATE(550)] = 40006, - [SMALL_STATE(551)] = 40095, - [SMALL_STATE(552)] = 40146, - [SMALL_STATE(553)] = 40197, - [SMALL_STATE(554)] = 40254, - [SMALL_STATE(555)] = 40305, - [SMALL_STATE(556)] = 40360, - [SMALL_STATE(557)] = 40449, - [SMALL_STATE(558)] = 40540, - [SMALL_STATE(559)] = 40591, - [SMALL_STATE(560)] = 40646, - [SMALL_STATE(561)] = 40737, - [SMALL_STATE(562)] = 40826, - [SMALL_STATE(563)] = 40917, - [SMALL_STATE(564)] = 40968, - [SMALL_STATE(565)] = 41056, - [SMALL_STATE(566)] = 41144, - [SMALL_STATE(567)] = 41232, - [SMALL_STATE(568)] = 41320, - [SMALL_STATE(569)] = 41408, - [SMALL_STATE(570)] = 41460, - [SMALL_STATE(571)] = 41548, - [SMALL_STATE(572)] = 41636, - [SMALL_STATE(573)] = 41690, - [SMALL_STATE(574)] = 41778, - [SMALL_STATE(575)] = 41866, - [SMALL_STATE(576)] = 41920, - [SMALL_STATE(577)] = 42008, - [SMALL_STATE(578)] = 42060, - [SMALL_STATE(579)] = 42148, - [SMALL_STATE(580)] = 42200, - [SMALL_STATE(581)] = 42288, - [SMALL_STATE(582)] = 42376, - [SMALL_STATE(583)] = 42464, - [SMALL_STATE(584)] = 42552, - [SMALL_STATE(585)] = 42640, - [SMALL_STATE(586)] = 42692, - [SMALL_STATE(587)] = 42780, - [SMALL_STATE(588)] = 42868, - [SMALL_STATE(589)] = 42918, - [SMALL_STATE(590)] = 42967, - [SMALL_STATE(591)] = 43016, - [SMALL_STATE(592)] = 43065, - [SMALL_STATE(593)] = 43116, - [SMALL_STATE(594)] = 43165, - [SMALL_STATE(595)] = 43216, - [SMALL_STATE(596)] = 43265, - [SMALL_STATE(597)] = 43314, - [SMALL_STATE(598)] = 43363, - [SMALL_STATE(599)] = 43414, - [SMALL_STATE(600)] = 43463, - [SMALL_STATE(601)] = 43514, - [SMALL_STATE(602)] = 43563, - [SMALL_STATE(603)] = 43612, - [SMALL_STATE(604)] = 43661, - [SMALL_STATE(605)] = 43710, - [SMALL_STATE(606)] = 43759, - [SMALL_STATE(607)] = 43808, - [SMALL_STATE(608)] = 43857, - [SMALL_STATE(609)] = 43906, - [SMALL_STATE(610)] = 43955, - [SMALL_STATE(611)] = 44004, - [SMALL_STATE(612)] = 44053, - [SMALL_STATE(613)] = 44102, - [SMALL_STATE(614)] = 44150, - [SMALL_STATE(615)] = 44198, - [SMALL_STATE(616)] = 44246, - [SMALL_STATE(617)] = 44294, - [SMALL_STATE(618)] = 44342, - [SMALL_STATE(619)] = 44390, - [SMALL_STATE(620)] = 44438, - [SMALL_STATE(621)] = 44486, - [SMALL_STATE(622)] = 44534, - [SMALL_STATE(623)] = 44582, - [SMALL_STATE(624)] = 44630, - [SMALL_STATE(625)] = 44678, - [SMALL_STATE(626)] = 44726, - [SMALL_STATE(627)] = 44774, - [SMALL_STATE(628)] = 44822, - [SMALL_STATE(629)] = 44870, - [SMALL_STATE(630)] = 44918, - [SMALL_STATE(631)] = 44966, - [SMALL_STATE(632)] = 45014, - [SMALL_STATE(633)] = 45056, - [SMALL_STATE(634)] = 45098, - [SMALL_STATE(635)] = 45140, - [SMALL_STATE(636)] = 45222, - [SMALL_STATE(637)] = 45304, - [SMALL_STATE(638)] = 45382, - [SMALL_STATE(639)] = 45460, - [SMALL_STATE(640)] = 45538, - [SMALL_STATE(641)] = 45616, - [SMALL_STATE(642)] = 45694, - [SMALL_STATE(643)] = 45772, - [SMALL_STATE(644)] = 45850, - [SMALL_STATE(645)] = 45928, - [SMALL_STATE(646)] = 46006, - [SMALL_STATE(647)] = 46084, - [SMALL_STATE(648)] = 46162, - [SMALL_STATE(649)] = 46230, - [SMALL_STATE(650)] = 46298, - [SMALL_STATE(651)] = 46376, - [SMALL_STATE(652)] = 46454, - [SMALL_STATE(653)] = 46532, - [SMALL_STATE(654)] = 46610, - [SMALL_STATE(655)] = 46688, - [SMALL_STATE(656)] = 46766, - [SMALL_STATE(657)] = 46841, - [SMALL_STATE(658)] = 46916, - [SMALL_STATE(659)] = 46991, - [SMALL_STATE(660)] = 47066, - [SMALL_STATE(661)] = 47141, - [SMALL_STATE(662)] = 47216, - [SMALL_STATE(663)] = 47291, - [SMALL_STATE(664)] = 47366, - [SMALL_STATE(665)] = 47441, - [SMALL_STATE(666)] = 47516, - [SMALL_STATE(667)] = 47591, - [SMALL_STATE(668)] = 47666, - [SMALL_STATE(669)] = 47738, - [SMALL_STATE(670)] = 47807, - [SMALL_STATE(671)] = 47876, - [SMALL_STATE(672)] = 47945, - [SMALL_STATE(673)] = 48014, - [SMALL_STATE(674)] = 48083, - [SMALL_STATE(675)] = 48152, - [SMALL_STATE(676)] = 48221, - [SMALL_STATE(677)] = 48287, - [SMALL_STATE(678)] = 48353, - [SMALL_STATE(679)] = 48419, - [SMALL_STATE(680)] = 48485, - [SMALL_STATE(681)] = 48551, - [SMALL_STATE(682)] = 48617, - [SMALL_STATE(683)] = 48683, - [SMALL_STATE(684)] = 48749, - [SMALL_STATE(685)] = 48815, - [SMALL_STATE(686)] = 48881, - [SMALL_STATE(687)] = 48947, - [SMALL_STATE(688)] = 49013, - [SMALL_STATE(689)] = 49079, - [SMALL_STATE(690)] = 49145, - [SMALL_STATE(691)] = 49211, - [SMALL_STATE(692)] = 49277, - [SMALL_STATE(693)] = 49343, - [SMALL_STATE(694)] = 49409, - [SMALL_STATE(695)] = 49475, - [SMALL_STATE(696)] = 49541, - [SMALL_STATE(697)] = 49607, - [SMALL_STATE(698)] = 49673, - [SMALL_STATE(699)] = 49739, - [SMALL_STATE(700)] = 49805, - [SMALL_STATE(701)] = 49871, - [SMALL_STATE(702)] = 49937, - [SMALL_STATE(703)] = 50003, - [SMALL_STATE(704)] = 50069, - [SMALL_STATE(705)] = 50135, - [SMALL_STATE(706)] = 50201, - [SMALL_STATE(707)] = 50267, - [SMALL_STATE(708)] = 50330, - [SMALL_STATE(709)] = 50393, - [SMALL_STATE(710)] = 50456, - [SMALL_STATE(711)] = 50519, - [SMALL_STATE(712)] = 50582, - [SMALL_STATE(713)] = 50645, - [SMALL_STATE(714)] = 50708, - [SMALL_STATE(715)] = 50771, - [SMALL_STATE(716)] = 50834, - [SMALL_STATE(717)] = 50897, - [SMALL_STATE(718)] = 50960, - [SMALL_STATE(719)] = 51023, - [SMALL_STATE(720)] = 51086, - [SMALL_STATE(721)] = 51149, - [SMALL_STATE(722)] = 51212, - [SMALL_STATE(723)] = 51275, - [SMALL_STATE(724)] = 51338, - [SMALL_STATE(725)] = 51401, - [SMALL_STATE(726)] = 51464, - [SMALL_STATE(727)] = 51527, - [SMALL_STATE(728)] = 51590, - [SMALL_STATE(729)] = 51653, - [SMALL_STATE(730)] = 51716, - [SMALL_STATE(731)] = 51779, - [SMALL_STATE(732)] = 51842, - [SMALL_STATE(733)] = 51905, - [SMALL_STATE(734)] = 51968, - [SMALL_STATE(735)] = 52031, - [SMALL_STATE(736)] = 52094, - [SMALL_STATE(737)] = 52157, - [SMALL_STATE(738)] = 52220, - [SMALL_STATE(739)] = 52283, - [SMALL_STATE(740)] = 52346, - [SMALL_STATE(741)] = 52409, - [SMALL_STATE(742)] = 52472, - [SMALL_STATE(743)] = 52535, - [SMALL_STATE(744)] = 52598, - [SMALL_STATE(745)] = 52661, - [SMALL_STATE(746)] = 52724, - [SMALL_STATE(747)] = 52787, - [SMALL_STATE(748)] = 52850, - [SMALL_STATE(749)] = 52913, - [SMALL_STATE(750)] = 52976, - [SMALL_STATE(751)] = 53039, - [SMALL_STATE(752)] = 53102, - [SMALL_STATE(753)] = 53165, - [SMALL_STATE(754)] = 53228, - [SMALL_STATE(755)] = 53291, - [SMALL_STATE(756)] = 53354, - [SMALL_STATE(757)] = 53417, - [SMALL_STATE(758)] = 53480, - [SMALL_STATE(759)] = 53543, - [SMALL_STATE(760)] = 53606, - [SMALL_STATE(761)] = 53669, - [SMALL_STATE(762)] = 53732, - [SMALL_STATE(763)] = 53795, - [SMALL_STATE(764)] = 53858, - [SMALL_STATE(765)] = 53921, - [SMALL_STATE(766)] = 53984, - [SMALL_STATE(767)] = 54047, - [SMALL_STATE(768)] = 54110, - [SMALL_STATE(769)] = 54173, - [SMALL_STATE(770)] = 54236, - [SMALL_STATE(771)] = 54299, - [SMALL_STATE(772)] = 54362, - [SMALL_STATE(773)] = 54425, - [SMALL_STATE(774)] = 54488, - [SMALL_STATE(775)] = 54551, - [SMALL_STATE(776)] = 54614, - [SMALL_STATE(777)] = 54677, - [SMALL_STATE(778)] = 54740, - [SMALL_STATE(779)] = 54803, - [SMALL_STATE(780)] = 54866, - [SMALL_STATE(781)] = 54929, - [SMALL_STATE(782)] = 54992, - [SMALL_STATE(783)] = 55055, - [SMALL_STATE(784)] = 55118, - [SMALL_STATE(785)] = 55181, - [SMALL_STATE(786)] = 55244, - [SMALL_STATE(787)] = 55307, - [SMALL_STATE(788)] = 55370, - [SMALL_STATE(789)] = 55433, - [SMALL_STATE(790)] = 55496, - [SMALL_STATE(791)] = 55559, - [SMALL_STATE(792)] = 55622, - [SMALL_STATE(793)] = 55685, - [SMALL_STATE(794)] = 55748, - [SMALL_STATE(795)] = 55811, - [SMALL_STATE(796)] = 55874, - [SMALL_STATE(797)] = 55937, - [SMALL_STATE(798)] = 56000, - [SMALL_STATE(799)] = 56063, - [SMALL_STATE(800)] = 56126, - [SMALL_STATE(801)] = 56189, - [SMALL_STATE(802)] = 56252, - [SMALL_STATE(803)] = 56315, - [SMALL_STATE(804)] = 56378, - [SMALL_STATE(805)] = 56441, - [SMALL_STATE(806)] = 56504, - [SMALL_STATE(807)] = 56567, - [SMALL_STATE(808)] = 56630, - [SMALL_STATE(809)] = 56693, - [SMALL_STATE(810)] = 56756, - [SMALL_STATE(811)] = 56819, - [SMALL_STATE(812)] = 56882, - [SMALL_STATE(813)] = 56945, - [SMALL_STATE(814)] = 57008, - [SMALL_STATE(815)] = 57071, - [SMALL_STATE(816)] = 57134, - [SMALL_STATE(817)] = 57197, - [SMALL_STATE(818)] = 57260, - [SMALL_STATE(819)] = 57323, - [SMALL_STATE(820)] = 57386, - [SMALL_STATE(821)] = 57449, - [SMALL_STATE(822)] = 57512, - [SMALL_STATE(823)] = 57575, - [SMALL_STATE(824)] = 57638, - [SMALL_STATE(825)] = 57701, - [SMALL_STATE(826)] = 57764, - [SMALL_STATE(827)] = 57827, - [SMALL_STATE(828)] = 57890, - [SMALL_STATE(829)] = 57953, - [SMALL_STATE(830)] = 58016, - [SMALL_STATE(831)] = 58079, - [SMALL_STATE(832)] = 58142, - [SMALL_STATE(833)] = 58205, - [SMALL_STATE(834)] = 58268, - [SMALL_STATE(835)] = 58331, - [SMALL_STATE(836)] = 58394, - [SMALL_STATE(837)] = 58457, - [SMALL_STATE(838)] = 58520, - [SMALL_STATE(839)] = 58583, - [SMALL_STATE(840)] = 58646, - [SMALL_STATE(841)] = 58709, - [SMALL_STATE(842)] = 58772, - [SMALL_STATE(843)] = 58835, - [SMALL_STATE(844)] = 58898, - [SMALL_STATE(845)] = 58961, - [SMALL_STATE(846)] = 59024, - [SMALL_STATE(847)] = 59087, - [SMALL_STATE(848)] = 59150, - [SMALL_STATE(849)] = 59213, - [SMALL_STATE(850)] = 59276, - [SMALL_STATE(851)] = 59339, - [SMALL_STATE(852)] = 59402, - [SMALL_STATE(853)] = 59470, - [SMALL_STATE(854)] = 59538, - [SMALL_STATE(855)] = 59570, - [SMALL_STATE(856)] = 59638, - [SMALL_STATE(857)] = 59706, - [SMALL_STATE(858)] = 59739, - [SMALL_STATE(859)] = 59778, - [SMALL_STATE(860)] = 59811, - [SMALL_STATE(861)] = 59879, - [SMALL_STATE(862)] = 59911, - [SMALL_STATE(863)] = 59973, - [SMALL_STATE(864)] = 60015, - [SMALL_STATE(865)] = 60057, - [SMALL_STATE(866)] = 60099, - [SMALL_STATE(867)] = 60167, - [SMALL_STATE(868)] = 60229, - [SMALL_STATE(869)] = 60265, - [SMALL_STATE(870)] = 60327, - [SMALL_STATE(871)] = 60359, - [SMALL_STATE(872)] = 60427, - [SMALL_STATE(873)] = 60489, - [SMALL_STATE(874)] = 60519, - [SMALL_STATE(875)] = 60587, - [SMALL_STATE(876)] = 60614, - [SMALL_STATE(877)] = 60641, - [SMALL_STATE(878)] = 60668, - [SMALL_STATE(879)] = 60695, - [SMALL_STATE(880)] = 60728, - [SMALL_STATE(881)] = 60795, - [SMALL_STATE(882)] = 60862, - [SMALL_STATE(883)] = 60889, - [SMALL_STATE(884)] = 60918, - [SMALL_STATE(885)] = 60947, - [SMALL_STATE(886)] = 60974, - [SMALL_STATE(887)] = 61003, - [SMALL_STATE(888)] = 61032, - [SMALL_STATE(889)] = 61099, - [SMALL_STATE(890)] = 61126, - [SMALL_STATE(891)] = 61193, - [SMALL_STATE(892)] = 61220, - [SMALL_STATE(893)] = 61257, - [SMALL_STATE(894)] = 61313, - [SMALL_STATE(895)] = 61375, - [SMALL_STATE(896)] = 61431, - [SMALL_STATE(897)] = 61461, - [SMALL_STATE(898)] = 61517, - [SMALL_STATE(899)] = 61579, - [SMALL_STATE(900)] = 61641, - [SMALL_STATE(901)] = 61681, - [SMALL_STATE(902)] = 61711, - [SMALL_STATE(903)] = 61751, - [SMALL_STATE(904)] = 61791, - [SMALL_STATE(905)] = 61847, - [SMALL_STATE(906)] = 61875, - [SMALL_STATE(907)] = 61937, - [SMALL_STATE(908)] = 61971, - [SMALL_STATE(909)] = 62007, - [SMALL_STATE(910)] = 62063, - [SMALL_STATE(911)] = 62090, - [SMALL_STATE(912)] = 62151, - [SMALL_STATE(913)] = 62180, - [SMALL_STATE(914)] = 62219, - [SMALL_STATE(915)] = 62252, - [SMALL_STATE(916)] = 62291, - [SMALL_STATE(917)] = 62320, - [SMALL_STATE(918)] = 62349, - [SMALL_STATE(919)] = 62394, - [SMALL_STATE(920)] = 62421, - [SMALL_STATE(921)] = 62466, - [SMALL_STATE(922)] = 62493, - [SMALL_STATE(923)] = 62538, - [SMALL_STATE(924)] = 62569, - [SMALL_STATE(925)] = 62596, - [SMALL_STATE(926)] = 62657, - [SMALL_STATE(927)] = 62718, - [SMALL_STATE(928)] = 62763, - [SMALL_STATE(929)] = 62808, - [SMALL_STATE(930)] = 62847, - [SMALL_STATE(931)] = 62908, - [SMALL_STATE(932)] = 62953, - [SMALL_STATE(933)] = 62998, - [SMALL_STATE(934)] = 63022, - [SMALL_STATE(935)] = 63078, - [SMALL_STATE(936)] = 63134, - [SMALL_STATE(937)] = 63160, - [SMALL_STATE(938)] = 63186, - [SMALL_STATE(939)] = 63242, - [SMALL_STATE(940)] = 63272, - [SMALL_STATE(941)] = 63328, - [SMALL_STATE(942)] = 63384, - [SMALL_STATE(943)] = 63410, - [SMALL_STATE(944)] = 63457, - [SMALL_STATE(945)] = 63512, - [SMALL_STATE(946)] = 63567, - [SMALL_STATE(947)] = 63614, - [SMALL_STATE(948)] = 63661, - [SMALL_STATE(949)] = 63708, - [SMALL_STATE(950)] = 63755, - [SMALL_STATE(951)] = 63786, - [SMALL_STATE(952)] = 63841, - [SMALL_STATE(953)] = 63888, - [SMALL_STATE(954)] = 63943, - [SMALL_STATE(955)] = 63976, - [SMALL_STATE(956)] = 64031, - [SMALL_STATE(957)] = 64067, - [SMALL_STATE(958)] = 64103, - [SMALL_STATE(959)] = 64129, - [SMALL_STATE(960)] = 64165, - [SMALL_STATE(961)] = 64191, - [SMALL_STATE(962)] = 64217, - [SMALL_STATE(963)] = 64249, - [SMALL_STATE(964)] = 64275, - [SMALL_STATE(965)] = 64301, - [SMALL_STATE(966)] = 64325, - [SMALL_STATE(967)] = 64351, - [SMALL_STATE(968)] = 64381, - [SMALL_STATE(969)] = 64407, - [SMALL_STATE(970)] = 64434, - [SMALL_STATE(971)] = 64481, - [SMALL_STATE(972)] = 64506, - [SMALL_STATE(973)] = 64547, - [SMALL_STATE(974)] = 64594, - [SMALL_STATE(975)] = 64619, - [SMALL_STATE(976)] = 64660, - [SMALL_STATE(977)] = 64689, - [SMALL_STATE(978)] = 64714, - [SMALL_STATE(979)] = 64739, - [SMALL_STATE(980)] = 64786, - [SMALL_STATE(981)] = 64835, - [SMALL_STATE(982)] = 64876, - [SMALL_STATE(983)] = 64903, - [SMALL_STATE(984)] = 64944, - [SMALL_STATE(985)] = 64965, - [SMALL_STATE(986)] = 65012, - [SMALL_STATE(987)] = 65053, - [SMALL_STATE(988)] = 65080, - [SMALL_STATE(989)] = 65121, - [SMALL_STATE(990)] = 65156, - [SMALL_STATE(991)] = 65197, - [SMALL_STATE(992)] = 65232, - [SMALL_STATE(993)] = 65255, - [SMALL_STATE(994)] = 65296, - [SMALL_STATE(995)] = 65321, - [SMALL_STATE(996)] = 65362, - [SMALL_STATE(997)] = 65403, - [SMALL_STATE(998)] = 65426, - [SMALL_STATE(999)] = 65473, - [SMALL_STATE(1000)] = 65520, - [SMALL_STATE(1001)] = 65543, - [SMALL_STATE(1002)] = 65578, - [SMALL_STATE(1003)] = 65603, - [SMALL_STATE(1004)] = 65626, - [SMALL_STATE(1005)] = 65648, - [SMALL_STATE(1006)] = 65668, - [SMALL_STATE(1007)] = 65690, - [SMALL_STATE(1008)] = 65714, - [SMALL_STATE(1009)] = 65736, - [SMALL_STATE(1010)] = 65756, - [SMALL_STATE(1011)] = 65776, - [SMALL_STATE(1012)] = 65802, - [SMALL_STATE(1013)] = 65848, - [SMALL_STATE(1014)] = 65870, - [SMALL_STATE(1015)] = 65892, - [SMALL_STATE(1016)] = 65914, - [SMALL_STATE(1017)] = 65960, - [SMALL_STATE(1018)] = 66006, - [SMALL_STATE(1019)] = 66028, - [SMALL_STATE(1020)] = 66050, - [SMALL_STATE(1021)] = 66096, - [SMALL_STATE(1022)] = 66116, - [SMALL_STATE(1023)] = 66138, - [SMALL_STATE(1024)] = 66160, - [SMALL_STATE(1025)] = 66206, - [SMALL_STATE(1026)] = 66252, - [SMALL_STATE(1027)] = 66272, - [SMALL_STATE(1028)] = 66294, - [SMALL_STATE(1029)] = 66316, - [SMALL_STATE(1030)] = 66336, - [SMALL_STATE(1031)] = 66371, - [SMALL_STATE(1032)] = 66406, - [SMALL_STATE(1033)] = 66425, - [SMALL_STATE(1034)] = 66460, - [SMALL_STATE(1035)] = 66481, - [SMALL_STATE(1036)] = 66504, - [SMALL_STATE(1037)] = 66523, - [SMALL_STATE(1038)] = 66542, - [SMALL_STATE(1039)] = 66577, - [SMALL_STATE(1040)] = 66600, - [SMALL_STATE(1041)] = 66641, - [SMALL_STATE(1042)] = 66676, - [SMALL_STATE(1043)] = 66717, - [SMALL_STATE(1044)] = 66740, - [SMALL_STATE(1045)] = 66781, - [SMALL_STATE(1046)] = 66816, - [SMALL_STATE(1047)] = 66857, - [SMALL_STATE(1048)] = 66898, - [SMALL_STATE(1049)] = 66921, - [SMALL_STATE(1050)] = 66962, - [SMALL_STATE(1051)] = 66985, - [SMALL_STATE(1052)] = 67020, - [SMALL_STATE(1053)] = 67047, - [SMALL_STATE(1054)] = 67066, - [SMALL_STATE(1055)] = 67101, - [SMALL_STATE(1056)] = 67120, - [SMALL_STATE(1057)] = 67143, - [SMALL_STATE(1058)] = 67166, - [SMALL_STATE(1059)] = 67191, - [SMALL_STATE(1060)] = 67232, - [SMALL_STATE(1061)] = 67273, - [SMALL_STATE(1062)] = 67291, - [SMALL_STATE(1063)] = 67323, - [SMALL_STATE(1064)] = 67347, - [SMALL_STATE(1065)] = 67387, - [SMALL_STATE(1066)] = 67419, - [SMALL_STATE(1067)] = 67459, - [SMALL_STATE(1068)] = 67497, - [SMALL_STATE(1069)] = 67515, - [SMALL_STATE(1070)] = 67553, - [SMALL_STATE(1071)] = 67591, - [SMALL_STATE(1072)] = 67613, - [SMALL_STATE(1073)] = 67651, - [SMALL_STATE(1074)] = 67689, - [SMALL_STATE(1075)] = 67729, - [SMALL_STATE(1076)] = 67747, - [SMALL_STATE(1077)] = 67765, - [SMALL_STATE(1078)] = 67787, - [SMALL_STATE(1079)] = 67809, - [SMALL_STATE(1080)] = 67849, - [SMALL_STATE(1081)] = 67869, - [SMALL_STATE(1082)] = 67909, - [SMALL_STATE(1083)] = 67929, - [SMALL_STATE(1084)] = 67969, - [SMALL_STATE(1085)] = 67991, - [SMALL_STATE(1086)] = 68029, - [SMALL_STATE(1087)] = 68061, - [SMALL_STATE(1088)] = 68085, - [SMALL_STATE(1089)] = 68103, - [SMALL_STATE(1090)] = 68125, - [SMALL_STATE(1091)] = 68165, - [SMALL_STATE(1092)] = 68182, - [SMALL_STATE(1093)] = 68211, - [SMALL_STATE(1094)] = 68240, - [SMALL_STATE(1095)] = 68271, - [SMALL_STATE(1096)] = 68308, - [SMALL_STATE(1097)] = 68339, - [SMALL_STATE(1098)] = 68374, - [SMALL_STATE(1099)] = 68409, - [SMALL_STATE(1100)] = 68426, - [SMALL_STATE(1101)] = 68457, - [SMALL_STATE(1102)] = 68486, - [SMALL_STATE(1103)] = 68507, - [SMALL_STATE(1104)] = 68536, - [SMALL_STATE(1105)] = 68565, - [SMALL_STATE(1106)] = 68582, - [SMALL_STATE(1107)] = 68599, - [SMALL_STATE(1108)] = 68616, - [SMALL_STATE(1109)] = 68637, - [SMALL_STATE(1110)] = 68654, - [SMALL_STATE(1111)] = 68689, - [SMALL_STATE(1112)] = 68724, - [SMALL_STATE(1113)] = 68753, - [SMALL_STATE(1114)] = 68770, - [SMALL_STATE(1115)] = 68791, - [SMALL_STATE(1116)] = 68826, - [SMALL_STATE(1117)] = 68855, - [SMALL_STATE(1118)] = 68884, - [SMALL_STATE(1119)] = 68919, - [SMALL_STATE(1120)] = 68948, - [SMALL_STATE(1121)] = 68977, - [SMALL_STATE(1122)] = 69006, - [SMALL_STATE(1123)] = 69041, - [SMALL_STATE(1124)] = 69062, - [SMALL_STATE(1125)] = 69099, - [SMALL_STATE(1126)] = 69134, - [SMALL_STATE(1127)] = 69163, - [SMALL_STATE(1128)] = 69192, - [SMALL_STATE(1129)] = 69209, - [SMALL_STATE(1130)] = 69240, - [SMALL_STATE(1131)] = 69261, - [SMALL_STATE(1132)] = 69292, - [SMALL_STATE(1133)] = 69327, - [SMALL_STATE(1134)] = 69362, - [SMALL_STATE(1135)] = 69397, - [SMALL_STATE(1136)] = 69431, - [SMALL_STATE(1137)] = 69465, - [SMALL_STATE(1138)] = 69481, - [SMALL_STATE(1139)] = 69497, - [SMALL_STATE(1140)] = 69517, - [SMALL_STATE(1141)] = 69543, - [SMALL_STATE(1142)] = 69563, - [SMALL_STATE(1143)] = 69583, - [SMALL_STATE(1144)] = 69599, - [SMALL_STATE(1145)] = 69615, - [SMALL_STATE(1146)] = 69649, - [SMALL_STATE(1147)] = 69665, - [SMALL_STATE(1148)] = 69685, - [SMALL_STATE(1149)] = 69701, - [SMALL_STATE(1150)] = 69717, - [SMALL_STATE(1151)] = 69733, - [SMALL_STATE(1152)] = 69767, - [SMALL_STATE(1153)] = 69801, - [SMALL_STATE(1154)] = 69817, - [SMALL_STATE(1155)] = 69851, - [SMALL_STATE(1156)] = 69885, - [SMALL_STATE(1157)] = 69905, - [SMALL_STATE(1158)] = 69939, - [SMALL_STATE(1159)] = 69959, - [SMALL_STATE(1160)] = 69975, - [SMALL_STATE(1161)] = 70004, - [SMALL_STATE(1162)] = 70033, - [SMALL_STATE(1163)] = 70062, - [SMALL_STATE(1164)] = 70093, - [SMALL_STATE(1165)] = 70108, - [SMALL_STATE(1166)] = 70133, - [SMALL_STATE(1167)] = 70162, - [SMALL_STATE(1168)] = 70191, - [SMALL_STATE(1169)] = 70220, - [SMALL_STATE(1170)] = 70249, - [SMALL_STATE(1171)] = 70278, - [SMALL_STATE(1172)] = 70307, - [SMALL_STATE(1173)] = 70336, - [SMALL_STATE(1174)] = 70365, - [SMALL_STATE(1175)] = 70394, - [SMALL_STATE(1176)] = 70423, - [SMALL_STATE(1177)] = 70452, - [SMALL_STATE(1178)] = 70481, - [SMALL_STATE(1179)] = 70510, - [SMALL_STATE(1180)] = 70539, - [SMALL_STATE(1181)] = 70570, - [SMALL_STATE(1182)] = 70599, - [SMALL_STATE(1183)] = 70628, - [SMALL_STATE(1184)] = 70643, - [SMALL_STATE(1185)] = 70658, - [SMALL_STATE(1186)] = 70687, - [SMALL_STATE(1187)] = 70716, - [SMALL_STATE(1188)] = 70740, - [SMALL_STATE(1189)] = 70766, - [SMALL_STATE(1190)] = 70784, - [SMALL_STATE(1191)] = 70808, - [SMALL_STATE(1192)] = 70836, - [SMALL_STATE(1193)] = 70852, - [SMALL_STATE(1194)] = 70870, - [SMALL_STATE(1195)] = 70894, - [SMALL_STATE(1196)] = 70920, - [SMALL_STATE(1197)] = 70942, - [SMALL_STATE(1198)] = 70966, - [SMALL_STATE(1199)] = 70990, - [SMALL_STATE(1200)] = 71014, - [SMALL_STATE(1201)] = 71040, - [SMALL_STATE(1202)] = 71064, - [SMALL_STATE(1203)] = 71088, - [SMALL_STATE(1204)] = 71114, - [SMALL_STATE(1205)] = 71136, - [SMALL_STATE(1206)] = 71162, - [SMALL_STATE(1207)] = 71186, - [SMALL_STATE(1208)] = 71214, - [SMALL_STATE(1209)] = 71240, - [SMALL_STATE(1210)] = 71266, - [SMALL_STATE(1211)] = 71292, - [SMALL_STATE(1212)] = 71318, - [SMALL_STATE(1213)] = 71346, - [SMALL_STATE(1214)] = 71374, - [SMALL_STATE(1215)] = 71400, - [SMALL_STATE(1216)] = 71428, - [SMALL_STATE(1217)] = 71456, - [SMALL_STATE(1218)] = 71484, - [SMALL_STATE(1219)] = 71508, - [SMALL_STATE(1220)] = 71534, - [SMALL_STATE(1221)] = 71558, - [SMALL_STATE(1222)] = 71586, - [SMALL_STATE(1223)] = 71610, - [SMALL_STATE(1224)] = 71634, - [SMALL_STATE(1225)] = 71662, - [SMALL_STATE(1226)] = 71686, - [SMALL_STATE(1227)] = 71710, - [SMALL_STATE(1228)] = 71736, - [SMALL_STATE(1229)] = 71764, - [SMALL_STATE(1230)] = 71788, - [SMALL_STATE(1231)] = 71812, - [SMALL_STATE(1232)] = 71838, - [SMALL_STATE(1233)] = 71864, - [SMALL_STATE(1234)] = 71892, - [SMALL_STATE(1235)] = 71916, - [SMALL_STATE(1236)] = 71940, - [SMALL_STATE(1237)] = 71966, - [SMALL_STATE(1238)] = 71990, - [SMALL_STATE(1239)] = 72014, - [SMALL_STATE(1240)] = 72042, - [SMALL_STATE(1241)] = 72068, - [SMALL_STATE(1242)] = 72094, - [SMALL_STATE(1243)] = 72120, - [SMALL_STATE(1244)] = 72144, - [SMALL_STATE(1245)] = 72168, - [SMALL_STATE(1246)] = 72191, - [SMALL_STATE(1247)] = 72208, - [SMALL_STATE(1248)] = 72229, - [SMALL_STATE(1249)] = 72242, - [SMALL_STATE(1250)] = 72263, - [SMALL_STATE(1251)] = 72280, - [SMALL_STATE(1252)] = 72297, - [SMALL_STATE(1253)] = 72310, - [SMALL_STATE(1254)] = 72323, - [SMALL_STATE(1255)] = 72344, - [SMALL_STATE(1256)] = 72367, - [SMALL_STATE(1257)] = 72390, - [SMALL_STATE(1258)] = 72411, - [SMALL_STATE(1259)] = 72426, - [SMALL_STATE(1260)] = 72439, - [SMALL_STATE(1261)] = 72456, - [SMALL_STATE(1262)] = 72479, - [SMALL_STATE(1263)] = 72504, - [SMALL_STATE(1264)] = 72517, - [SMALL_STATE(1265)] = 72538, - [SMALL_STATE(1266)] = 72551, - [SMALL_STATE(1267)] = 72572, - [SMALL_STATE(1268)] = 72595, - [SMALL_STATE(1269)] = 72618, - [SMALL_STATE(1270)] = 72631, - [SMALL_STATE(1271)] = 72648, - [SMALL_STATE(1272)] = 72665, - [SMALL_STATE(1273)] = 72682, - [SMALL_STATE(1274)] = 72703, - [SMALL_STATE(1275)] = 72716, - [SMALL_STATE(1276)] = 72737, - [SMALL_STATE(1277)] = 72754, - [SMALL_STATE(1278)] = 72774, - [SMALL_STATE(1279)] = 72786, - [SMALL_STATE(1280)] = 72804, - [SMALL_STATE(1281)] = 72824, - [SMALL_STATE(1282)] = 72842, - [SMALL_STATE(1283)] = 72856, - [SMALL_STATE(1284)] = 72868, - [SMALL_STATE(1285)] = 72888, - [SMALL_STATE(1286)] = 72908, - [SMALL_STATE(1287)] = 72922, - [SMALL_STATE(1288)] = 72934, - [SMALL_STATE(1289)] = 72948, - [SMALL_STATE(1290)] = 72960, - [SMALL_STATE(1291)] = 72978, - [SMALL_STATE(1292)] = 72992, - [SMALL_STATE(1293)] = 73012, - [SMALL_STATE(1294)] = 73026, - [SMALL_STATE(1295)] = 73046, - [SMALL_STATE(1296)] = 73066, - [SMALL_STATE(1297)] = 73086, - [SMALL_STATE(1298)] = 73108, - [SMALL_STATE(1299)] = 73124, - [SMALL_STATE(1300)] = 73138, - [SMALL_STATE(1301)] = 73152, - [SMALL_STATE(1302)] = 73164, - [SMALL_STATE(1303)] = 73182, - [SMALL_STATE(1304)] = 73194, - [SMALL_STATE(1305)] = 73210, - [SMALL_STATE(1306)] = 73230, - [SMALL_STATE(1307)] = 73250, - [SMALL_STATE(1308)] = 73270, - [SMALL_STATE(1309)] = 73282, - [SMALL_STATE(1310)] = 73300, - [SMALL_STATE(1311)] = 73322, - [SMALL_STATE(1312)] = 73342, - [SMALL_STATE(1313)] = 73354, - [SMALL_STATE(1314)] = 73374, - [SMALL_STATE(1315)] = 73386, - [SMALL_STATE(1316)] = 73406, - [SMALL_STATE(1317)] = 73426, - [SMALL_STATE(1318)] = 73446, - [SMALL_STATE(1319)] = 73466, - [SMALL_STATE(1320)] = 73486, - [SMALL_STATE(1321)] = 73504, - [SMALL_STATE(1322)] = 73518, - [SMALL_STATE(1323)] = 73536, - [SMALL_STATE(1324)] = 73556, - [SMALL_STATE(1325)] = 73572, - [SMALL_STATE(1326)] = 73592, - [SMALL_STATE(1327)] = 73604, - [SMALL_STATE(1328)] = 73618, - [SMALL_STATE(1329)] = 73632, - [SMALL_STATE(1330)] = 73644, - [SMALL_STATE(1331)] = 73664, - [SMALL_STATE(1332)] = 73684, - [SMALL_STATE(1333)] = 73696, - [SMALL_STATE(1334)] = 73708, - [SMALL_STATE(1335)] = 73720, - [SMALL_STATE(1336)] = 73740, - [SMALL_STATE(1337)] = 73760, - [SMALL_STATE(1338)] = 73780, - [SMALL_STATE(1339)] = 73802, - [SMALL_STATE(1340)] = 73814, - [SMALL_STATE(1341)] = 73830, - [SMALL_STATE(1342)] = 73848, - [SMALL_STATE(1343)] = 73868, - [SMALL_STATE(1344)] = 73884, - [SMALL_STATE(1345)] = 73901, - [SMALL_STATE(1346)] = 73918, - [SMALL_STATE(1347)] = 73929, - [SMALL_STATE(1348)] = 73940, - [SMALL_STATE(1349)] = 73959, - [SMALL_STATE(1350)] = 73978, - [SMALL_STATE(1351)] = 73995, - [SMALL_STATE(1352)] = 74010, - [SMALL_STATE(1353)] = 74027, - [SMALL_STATE(1354)] = 74038, - [SMALL_STATE(1355)] = 74055, - [SMALL_STATE(1356)] = 74072, - [SMALL_STATE(1357)] = 74091, - [SMALL_STATE(1358)] = 74108, - [SMALL_STATE(1359)] = 74119, - [SMALL_STATE(1360)] = 74138, - [SMALL_STATE(1361)] = 74153, - [SMALL_STATE(1362)] = 74170, - [SMALL_STATE(1363)] = 74185, - [SMALL_STATE(1364)] = 74200, - [SMALL_STATE(1365)] = 74217, - [SMALL_STATE(1366)] = 74236, - [SMALL_STATE(1367)] = 74253, - [SMALL_STATE(1368)] = 74268, - [SMALL_STATE(1369)] = 74287, - [SMALL_STATE(1370)] = 74306, - [SMALL_STATE(1371)] = 74325, - [SMALL_STATE(1372)] = 74342, - [SMALL_STATE(1373)] = 74359, - [SMALL_STATE(1374)] = 74378, - [SMALL_STATE(1375)] = 74395, - [SMALL_STATE(1376)] = 74406, - [SMALL_STATE(1377)] = 74425, - [SMALL_STATE(1378)] = 74444, - [SMALL_STATE(1379)] = 74463, - [SMALL_STATE(1380)] = 74480, - [SMALL_STATE(1381)] = 74491, - [SMALL_STATE(1382)] = 74508, - [SMALL_STATE(1383)] = 74527, - [SMALL_STATE(1384)] = 74542, - [SMALL_STATE(1385)] = 74559, - [SMALL_STATE(1386)] = 74576, - [SMALL_STATE(1387)] = 74589, - [SMALL_STATE(1388)] = 74606, - [SMALL_STATE(1389)] = 74619, - [SMALL_STATE(1390)] = 74638, - [SMALL_STATE(1391)] = 74655, - [SMALL_STATE(1392)] = 74672, - [SMALL_STATE(1393)] = 74683, - [SMALL_STATE(1394)] = 74700, - [SMALL_STATE(1395)] = 74717, - [SMALL_STATE(1396)] = 74734, - [SMALL_STATE(1397)] = 74747, - [SMALL_STATE(1398)] = 74764, - [SMALL_STATE(1399)] = 74779, - [SMALL_STATE(1400)] = 74796, - [SMALL_STATE(1401)] = 74813, - [SMALL_STATE(1402)] = 74832, - [SMALL_STATE(1403)] = 74849, - [SMALL_STATE(1404)] = 74866, - [SMALL_STATE(1405)] = 74881, - [SMALL_STATE(1406)] = 74900, - [SMALL_STATE(1407)] = 74917, - [SMALL_STATE(1408)] = 74936, - [SMALL_STATE(1409)] = 74955, - [SMALL_STATE(1410)] = 74974, - [SMALL_STATE(1411)] = 74993, - [SMALL_STATE(1412)] = 75010, - [SMALL_STATE(1413)] = 75029, - [SMALL_STATE(1414)] = 75048, - [SMALL_STATE(1415)] = 75067, - [SMALL_STATE(1416)] = 75080, - [SMALL_STATE(1417)] = 75091, - [SMALL_STATE(1418)] = 75108, - [SMALL_STATE(1419)] = 75123, - [SMALL_STATE(1420)] = 75142, - [SMALL_STATE(1421)] = 75159, - [SMALL_STATE(1422)] = 75176, - [SMALL_STATE(1423)] = 75193, - [SMALL_STATE(1424)] = 75208, - [SMALL_STATE(1425)] = 75219, - [SMALL_STATE(1426)] = 75238, - [SMALL_STATE(1427)] = 75252, - [SMALL_STATE(1428)] = 75266, - [SMALL_STATE(1429)] = 75280, - [SMALL_STATE(1430)] = 75290, - [SMALL_STATE(1431)] = 75304, - [SMALL_STATE(1432)] = 75314, - [SMALL_STATE(1433)] = 75324, - [SMALL_STATE(1434)] = 75338, - [SMALL_STATE(1435)] = 75352, - [SMALL_STATE(1436)] = 75366, - [SMALL_STATE(1437)] = 75382, - [SMALL_STATE(1438)] = 75396, - [SMALL_STATE(1439)] = 75410, - [SMALL_STATE(1440)] = 75424, - [SMALL_STATE(1441)] = 75438, - [SMALL_STATE(1442)] = 75452, - [SMALL_STATE(1443)] = 75468, - [SMALL_STATE(1444)] = 75482, - [SMALL_STATE(1445)] = 75496, - [SMALL_STATE(1446)] = 75512, - [SMALL_STATE(1447)] = 75526, - [SMALL_STATE(1448)] = 75540, - [SMALL_STATE(1449)] = 75554, - [SMALL_STATE(1450)] = 75568, - [SMALL_STATE(1451)] = 75582, - [SMALL_STATE(1452)] = 75598, - [SMALL_STATE(1453)] = 75612, - [SMALL_STATE(1454)] = 75628, - [SMALL_STATE(1455)] = 75642, - [SMALL_STATE(1456)] = 75658, - [SMALL_STATE(1457)] = 75672, - [SMALL_STATE(1458)] = 75688, - [SMALL_STATE(1459)] = 75702, - [SMALL_STATE(1460)] = 75716, - [SMALL_STATE(1461)] = 75730, - [SMALL_STATE(1462)] = 75744, - [SMALL_STATE(1463)] = 75758, - [SMALL_STATE(1464)] = 75772, - [SMALL_STATE(1465)] = 75786, - [SMALL_STATE(1466)] = 75800, - [SMALL_STATE(1467)] = 75816, - [SMALL_STATE(1468)] = 75828, - [SMALL_STATE(1469)] = 75842, - [SMALL_STATE(1470)] = 75858, - [SMALL_STATE(1471)] = 75872, - [SMALL_STATE(1472)] = 75886, - [SMALL_STATE(1473)] = 75900, - [SMALL_STATE(1474)] = 75910, - [SMALL_STATE(1475)] = 75924, - [SMALL_STATE(1476)] = 75938, - [SMALL_STATE(1477)] = 75952, - [SMALL_STATE(1478)] = 75966, - [SMALL_STATE(1479)] = 75982, - [SMALL_STATE(1480)] = 75996, - [SMALL_STATE(1481)] = 76010, - [SMALL_STATE(1482)] = 76024, - [SMALL_STATE(1483)] = 76038, - [SMALL_STATE(1484)] = 76048, - [SMALL_STATE(1485)] = 76064, - [SMALL_STATE(1486)] = 76078, - [SMALL_STATE(1487)] = 76094, - [SMALL_STATE(1488)] = 76108, - [SMALL_STATE(1489)] = 76122, - [SMALL_STATE(1490)] = 76132, - [SMALL_STATE(1491)] = 76146, - [SMALL_STATE(1492)] = 76160, - [SMALL_STATE(1493)] = 76174, - [SMALL_STATE(1494)] = 76190, - [SMALL_STATE(1495)] = 76204, - [SMALL_STATE(1496)] = 76220, - [SMALL_STATE(1497)] = 76234, - [SMALL_STATE(1498)] = 76248, - [SMALL_STATE(1499)] = 76262, - [SMALL_STATE(1500)] = 76278, - [SMALL_STATE(1501)] = 76288, - [SMALL_STATE(1502)] = 76298, - [SMALL_STATE(1503)] = 76312, - [SMALL_STATE(1504)] = 76326, - [SMALL_STATE(1505)] = 76336, - [SMALL_STATE(1506)] = 76350, - [SMALL_STATE(1507)] = 76362, - [SMALL_STATE(1508)] = 76378, - [SMALL_STATE(1509)] = 76394, - [SMALL_STATE(1510)] = 76410, - [SMALL_STATE(1511)] = 76426, - [SMALL_STATE(1512)] = 76440, - [SMALL_STATE(1513)] = 76450, - [SMALL_STATE(1514)] = 76464, - [SMALL_STATE(1515)] = 76480, - [SMALL_STATE(1516)] = 76496, - [SMALL_STATE(1517)] = 76510, - [SMALL_STATE(1518)] = 76524, - [SMALL_STATE(1519)] = 76538, - [SMALL_STATE(1520)] = 76552, - [SMALL_STATE(1521)] = 76568, - [SMALL_STATE(1522)] = 76578, - [SMALL_STATE(1523)] = 76592, - [SMALL_STATE(1524)] = 76602, - [SMALL_STATE(1525)] = 76616, - [SMALL_STATE(1526)] = 76630, - [SMALL_STATE(1527)] = 76646, - [SMALL_STATE(1528)] = 76660, - [SMALL_STATE(1529)] = 76676, - [SMALL_STATE(1530)] = 76690, - [SMALL_STATE(1531)] = 76704, - [SMALL_STATE(1532)] = 76720, - [SMALL_STATE(1533)] = 76730, - [SMALL_STATE(1534)] = 76744, - [SMALL_STATE(1535)] = 76758, - [SMALL_STATE(1536)] = 76772, - [SMALL_STATE(1537)] = 76788, - [SMALL_STATE(1538)] = 76802, - [SMALL_STATE(1539)] = 76816, - [SMALL_STATE(1540)] = 76832, - [SMALL_STATE(1541)] = 76846, - [SMALL_STATE(1542)] = 76862, - [SMALL_STATE(1543)] = 76876, - [SMALL_STATE(1544)] = 76890, - [SMALL_STATE(1545)] = 76900, - [SMALL_STATE(1546)] = 76914, - [SMALL_STATE(1547)] = 76924, - [SMALL_STATE(1548)] = 76938, - [SMALL_STATE(1549)] = 76952, - [SMALL_STATE(1550)] = 76968, - [SMALL_STATE(1551)] = 76982, - [SMALL_STATE(1552)] = 76996, - [SMALL_STATE(1553)] = 77006, - [SMALL_STATE(1554)] = 77019, - [SMALL_STATE(1555)] = 77032, - [SMALL_STATE(1556)] = 77045, - [SMALL_STATE(1557)] = 77058, - [SMALL_STATE(1558)] = 77071, - [SMALL_STATE(1559)] = 77084, - [SMALL_STATE(1560)] = 77097, - [SMALL_STATE(1561)] = 77110, - [SMALL_STATE(1562)] = 77121, - [SMALL_STATE(1563)] = 77134, - [SMALL_STATE(1564)] = 77145, - [SMALL_STATE(1565)] = 77158, - [SMALL_STATE(1566)] = 77167, - [SMALL_STATE(1567)] = 77180, - [SMALL_STATE(1568)] = 77193, - [SMALL_STATE(1569)] = 77206, - [SMALL_STATE(1570)] = 77219, - [SMALL_STATE(1571)] = 77232, - [SMALL_STATE(1572)] = 77245, - [SMALL_STATE(1573)] = 77258, - [SMALL_STATE(1574)] = 77271, - [SMALL_STATE(1575)] = 77284, - [SMALL_STATE(1576)] = 77297, - [SMALL_STATE(1577)] = 77310, - [SMALL_STATE(1578)] = 77323, - [SMALL_STATE(1579)] = 77336, - [SMALL_STATE(1580)] = 77349, - [SMALL_STATE(1581)] = 77362, - [SMALL_STATE(1582)] = 77375, - [SMALL_STATE(1583)] = 77388, - [SMALL_STATE(1584)] = 77401, - [SMALL_STATE(1585)] = 77414, - [SMALL_STATE(1586)] = 77427, - [SMALL_STATE(1587)] = 77440, - [SMALL_STATE(1588)] = 77453, - [SMALL_STATE(1589)] = 77466, - [SMALL_STATE(1590)] = 77479, - [SMALL_STATE(1591)] = 77492, - [SMALL_STATE(1592)] = 77505, - [SMALL_STATE(1593)] = 77518, - [SMALL_STATE(1594)] = 77531, - [SMALL_STATE(1595)] = 77544, - [SMALL_STATE(1596)] = 77557, - [SMALL_STATE(1597)] = 77570, - [SMALL_STATE(1598)] = 77583, - [SMALL_STATE(1599)] = 77596, - [SMALL_STATE(1600)] = 77609, - [SMALL_STATE(1601)] = 77618, - [SMALL_STATE(1602)] = 77631, - [SMALL_STATE(1603)] = 77640, - [SMALL_STATE(1604)] = 77653, - [SMALL_STATE(1605)] = 77666, - [SMALL_STATE(1606)] = 77679, - [SMALL_STATE(1607)] = 77692, - [SMALL_STATE(1608)] = 77701, - [SMALL_STATE(1609)] = 77714, - [SMALL_STATE(1610)] = 77727, - [SMALL_STATE(1611)] = 77740, - [SMALL_STATE(1612)] = 77749, - [SMALL_STATE(1613)] = 77762, - [SMALL_STATE(1614)] = 77775, - [SMALL_STATE(1615)] = 77784, - [SMALL_STATE(1616)] = 77797, - [SMALL_STATE(1617)] = 77810, - [SMALL_STATE(1618)] = 77819, - [SMALL_STATE(1619)] = 77832, - [SMALL_STATE(1620)] = 77845, - [SMALL_STATE(1621)] = 77858, - [SMALL_STATE(1622)] = 77871, - [SMALL_STATE(1623)] = 77884, - [SMALL_STATE(1624)] = 77897, - [SMALL_STATE(1625)] = 77910, - [SMALL_STATE(1626)] = 77923, - [SMALL_STATE(1627)] = 77936, - [SMALL_STATE(1628)] = 77945, - [SMALL_STATE(1629)] = 77958, - [SMALL_STATE(1630)] = 77971, - [SMALL_STATE(1631)] = 77984, - [SMALL_STATE(1632)] = 77997, - [SMALL_STATE(1633)] = 78010, - [SMALL_STATE(1634)] = 78023, - [SMALL_STATE(1635)] = 78036, - [SMALL_STATE(1636)] = 78049, - [SMALL_STATE(1637)] = 78058, - [SMALL_STATE(1638)] = 78071, - [SMALL_STATE(1639)] = 78084, - [SMALL_STATE(1640)] = 78097, - [SMALL_STATE(1641)] = 78110, - [SMALL_STATE(1642)] = 78123, - [SMALL_STATE(1643)] = 78136, - [SMALL_STATE(1644)] = 78149, - [SMALL_STATE(1645)] = 78162, - [SMALL_STATE(1646)] = 78171, - [SMALL_STATE(1647)] = 78184, - [SMALL_STATE(1648)] = 78197, - [SMALL_STATE(1649)] = 78210, - [SMALL_STATE(1650)] = 78223, - [SMALL_STATE(1651)] = 78236, - [SMALL_STATE(1652)] = 78249, - [SMALL_STATE(1653)] = 78262, - [SMALL_STATE(1654)] = 78275, - [SMALL_STATE(1655)] = 78288, - [SMALL_STATE(1656)] = 78301, - [SMALL_STATE(1657)] = 78310, - [SMALL_STATE(1658)] = 78323, - [SMALL_STATE(1659)] = 78336, - [SMALL_STATE(1660)] = 78349, - [SMALL_STATE(1661)] = 78362, - [SMALL_STATE(1662)] = 78375, - [SMALL_STATE(1663)] = 78388, - [SMALL_STATE(1664)] = 78401, - [SMALL_STATE(1665)] = 78414, - [SMALL_STATE(1666)] = 78423, - [SMALL_STATE(1667)] = 78436, - [SMALL_STATE(1668)] = 78449, - [SMALL_STATE(1669)] = 78462, - [SMALL_STATE(1670)] = 78471, - [SMALL_STATE(1671)] = 78484, - [SMALL_STATE(1672)] = 78497, - [SMALL_STATE(1673)] = 78506, - [SMALL_STATE(1674)] = 78519, - [SMALL_STATE(1675)] = 78532, - [SMALL_STATE(1676)] = 78545, - [SMALL_STATE(1677)] = 78558, - [SMALL_STATE(1678)] = 78571, - [SMALL_STATE(1679)] = 78580, - [SMALL_STATE(1680)] = 78593, - [SMALL_STATE(1681)] = 78606, - [SMALL_STATE(1682)] = 78619, - [SMALL_STATE(1683)] = 78632, - [SMALL_STATE(1684)] = 78645, - [SMALL_STATE(1685)] = 78658, - [SMALL_STATE(1686)] = 78671, - [SMALL_STATE(1687)] = 78684, - [SMALL_STATE(1688)] = 78697, - [SMALL_STATE(1689)] = 78710, - [SMALL_STATE(1690)] = 78723, - [SMALL_STATE(1691)] = 78736, - [SMALL_STATE(1692)] = 78749, - [SMALL_STATE(1693)] = 78762, - [SMALL_STATE(1694)] = 78775, - [SMALL_STATE(1695)] = 78788, - [SMALL_STATE(1696)] = 78801, - [SMALL_STATE(1697)] = 78814, - [SMALL_STATE(1698)] = 78827, - [SMALL_STATE(1699)] = 78840, - [SMALL_STATE(1700)] = 78853, - [SMALL_STATE(1701)] = 78866, - [SMALL_STATE(1702)] = 78879, - [SMALL_STATE(1703)] = 78892, - [SMALL_STATE(1704)] = 78905, - [SMALL_STATE(1705)] = 78918, - [SMALL_STATE(1706)] = 78931, - [SMALL_STATE(1707)] = 78944, - [SMALL_STATE(1708)] = 78957, - [SMALL_STATE(1709)] = 78970, - [SMALL_STATE(1710)] = 78983, - [SMALL_STATE(1711)] = 78996, - [SMALL_STATE(1712)] = 79009, - [SMALL_STATE(1713)] = 79022, - [SMALL_STATE(1714)] = 79035, - [SMALL_STATE(1715)] = 79048, - [SMALL_STATE(1716)] = 79061, - [SMALL_STATE(1717)] = 79074, - [SMALL_STATE(1718)] = 79085, - [SMALL_STATE(1719)] = 79094, - [SMALL_STATE(1720)] = 79107, - [SMALL_STATE(1721)] = 79120, - [SMALL_STATE(1722)] = 79133, - [SMALL_STATE(1723)] = 79146, - [SMALL_STATE(1724)] = 79159, - [SMALL_STATE(1725)] = 79172, - [SMALL_STATE(1726)] = 79185, - [SMALL_STATE(1727)] = 79198, - [SMALL_STATE(1728)] = 79211, - [SMALL_STATE(1729)] = 79220, - [SMALL_STATE(1730)] = 79229, - [SMALL_STATE(1731)] = 79242, - [SMALL_STATE(1732)] = 79255, - [SMALL_STATE(1733)] = 79268, - [SMALL_STATE(1734)] = 79281, - [SMALL_STATE(1735)] = 79294, - [SMALL_STATE(1736)] = 79307, - [SMALL_STATE(1737)] = 79320, - [SMALL_STATE(1738)] = 79333, - [SMALL_STATE(1739)] = 79346, - [SMALL_STATE(1740)] = 79359, - [SMALL_STATE(1741)] = 79372, - [SMALL_STATE(1742)] = 79385, - [SMALL_STATE(1743)] = 79398, - [SMALL_STATE(1744)] = 79411, - [SMALL_STATE(1745)] = 79424, - [SMALL_STATE(1746)] = 79437, - [SMALL_STATE(1747)] = 79450, - [SMALL_STATE(1748)] = 79463, - [SMALL_STATE(1749)] = 79476, - [SMALL_STATE(1750)] = 79485, - [SMALL_STATE(1751)] = 79498, - [SMALL_STATE(1752)] = 79511, - [SMALL_STATE(1753)] = 79524, - [SMALL_STATE(1754)] = 79537, - [SMALL_STATE(1755)] = 79545, - [SMALL_STATE(1756)] = 79553, - [SMALL_STATE(1757)] = 79561, - [SMALL_STATE(1758)] = 79571, - [SMALL_STATE(1759)] = 79579, - [SMALL_STATE(1760)] = 79587, - [SMALL_STATE(1761)] = 79595, - [SMALL_STATE(1762)] = 79605, - [SMALL_STATE(1763)] = 79613, - [SMALL_STATE(1764)] = 79623, - [SMALL_STATE(1765)] = 79631, - [SMALL_STATE(1766)] = 79639, - [SMALL_STATE(1767)] = 79649, - [SMALL_STATE(1768)] = 79657, - [SMALL_STATE(1769)] = 79667, - [SMALL_STATE(1770)] = 79677, - [SMALL_STATE(1771)] = 79685, - [SMALL_STATE(1772)] = 79695, - [SMALL_STATE(1773)] = 79703, - [SMALL_STATE(1774)] = 79711, - [SMALL_STATE(1775)] = 79721, - [SMALL_STATE(1776)] = 79729, - [SMALL_STATE(1777)] = 79737, - [SMALL_STATE(1778)] = 79745, - [SMALL_STATE(1779)] = 79753, - [SMALL_STATE(1780)] = 79761, - [SMALL_STATE(1781)] = 79769, - [SMALL_STATE(1782)] = 79777, - [SMALL_STATE(1783)] = 79785, - [SMALL_STATE(1784)] = 79795, - [SMALL_STATE(1785)] = 79805, - [SMALL_STATE(1786)] = 79815, - [SMALL_STATE(1787)] = 79823, - [SMALL_STATE(1788)] = 79833, - [SMALL_STATE(1789)] = 79841, - [SMALL_STATE(1790)] = 79849, - [SMALL_STATE(1791)] = 79859, - [SMALL_STATE(1792)] = 79869, - [SMALL_STATE(1793)] = 79879, - [SMALL_STATE(1794)] = 79889, - [SMALL_STATE(1795)] = 79899, - [SMALL_STATE(1796)] = 79907, - [SMALL_STATE(1797)] = 79915, - [SMALL_STATE(1798)] = 79923, - [SMALL_STATE(1799)] = 79933, - [SMALL_STATE(1800)] = 79941, - [SMALL_STATE(1801)] = 79949, - [SMALL_STATE(1802)] = 79959, - [SMALL_STATE(1803)] = 79969, - [SMALL_STATE(1804)] = 79979, - [SMALL_STATE(1805)] = 79987, - [SMALL_STATE(1806)] = 79997, - [SMALL_STATE(1807)] = 80005, - [SMALL_STATE(1808)] = 80013, - [SMALL_STATE(1809)] = 80021, - [SMALL_STATE(1810)] = 80031, - [SMALL_STATE(1811)] = 80041, - [SMALL_STATE(1812)] = 80051, - [SMALL_STATE(1813)] = 80059, - [SMALL_STATE(1814)] = 80069, - [SMALL_STATE(1815)] = 80079, - [SMALL_STATE(1816)] = 80089, - [SMALL_STATE(1817)] = 80097, - [SMALL_STATE(1818)] = 80107, - [SMALL_STATE(1819)] = 80115, - [SMALL_STATE(1820)] = 80125, - [SMALL_STATE(1821)] = 80135, - [SMALL_STATE(1822)] = 80145, - [SMALL_STATE(1823)] = 80155, - [SMALL_STATE(1824)] = 80165, - [SMALL_STATE(1825)] = 80175, - [SMALL_STATE(1826)] = 80183, - [SMALL_STATE(1827)] = 80191, - [SMALL_STATE(1828)] = 80199, - [SMALL_STATE(1829)] = 80207, - [SMALL_STATE(1830)] = 80217, - [SMALL_STATE(1831)] = 80227, - [SMALL_STATE(1832)] = 80237, - [SMALL_STATE(1833)] = 80247, - [SMALL_STATE(1834)] = 80257, - [SMALL_STATE(1835)] = 80267, - [SMALL_STATE(1836)] = 80277, - [SMALL_STATE(1837)] = 80287, - [SMALL_STATE(1838)] = 80295, - [SMALL_STATE(1839)] = 80303, - [SMALL_STATE(1840)] = 80311, - [SMALL_STATE(1841)] = 80321, - [SMALL_STATE(1842)] = 80331, - [SMALL_STATE(1843)] = 80339, - [SMALL_STATE(1844)] = 80349, - [SMALL_STATE(1845)] = 80357, - [SMALL_STATE(1846)] = 80365, - [SMALL_STATE(1847)] = 80375, - [SMALL_STATE(1848)] = 80383, - [SMALL_STATE(1849)] = 80391, - [SMALL_STATE(1850)] = 80399, - [SMALL_STATE(1851)] = 80409, - [SMALL_STATE(1852)] = 80419, - [SMALL_STATE(1853)] = 80429, - [SMALL_STATE(1854)] = 80437, - [SMALL_STATE(1855)] = 80447, - [SMALL_STATE(1856)] = 80457, - [SMALL_STATE(1857)] = 80467, - [SMALL_STATE(1858)] = 80475, - [SMALL_STATE(1859)] = 80485, - [SMALL_STATE(1860)] = 80495, - [SMALL_STATE(1861)] = 80505, - [SMALL_STATE(1862)] = 80513, - [SMALL_STATE(1863)] = 80521, - [SMALL_STATE(1864)] = 80531, - [SMALL_STATE(1865)] = 80541, - [SMALL_STATE(1866)] = 80551, - [SMALL_STATE(1867)] = 80561, - [SMALL_STATE(1868)] = 80571, - [SMALL_STATE(1869)] = 80579, - [SMALL_STATE(1870)] = 80589, - [SMALL_STATE(1871)] = 80597, - [SMALL_STATE(1872)] = 80607, - [SMALL_STATE(1873)] = 80617, - [SMALL_STATE(1874)] = 80627, - [SMALL_STATE(1875)] = 80637, - [SMALL_STATE(1876)] = 80647, - [SMALL_STATE(1877)] = 80655, - [SMALL_STATE(1878)] = 80665, - [SMALL_STATE(1879)] = 80675, - [SMALL_STATE(1880)] = 80685, - [SMALL_STATE(1881)] = 80695, - [SMALL_STATE(1882)] = 80705, - [SMALL_STATE(1883)] = 80713, - [SMALL_STATE(1884)] = 80723, - [SMALL_STATE(1885)] = 80731, - [SMALL_STATE(1886)] = 80739, - [SMALL_STATE(1887)] = 80749, - [SMALL_STATE(1888)] = 80759, - [SMALL_STATE(1889)] = 80769, - [SMALL_STATE(1890)] = 80779, - [SMALL_STATE(1891)] = 80789, - [SMALL_STATE(1892)] = 80797, - [SMALL_STATE(1893)] = 80807, - [SMALL_STATE(1894)] = 80815, - [SMALL_STATE(1895)] = 80823, - [SMALL_STATE(1896)] = 80833, - [SMALL_STATE(1897)] = 80843, - [SMALL_STATE(1898)] = 80851, - [SMALL_STATE(1899)] = 80861, - [SMALL_STATE(1900)] = 80871, - [SMALL_STATE(1901)] = 80879, - [SMALL_STATE(1902)] = 80889, - [SMALL_STATE(1903)] = 80897, - [SMALL_STATE(1904)] = 80907, - [SMALL_STATE(1905)] = 80915, - [SMALL_STATE(1906)] = 80923, - [SMALL_STATE(1907)] = 80933, - [SMALL_STATE(1908)] = 80943, - [SMALL_STATE(1909)] = 80953, - [SMALL_STATE(1910)] = 80963, - [SMALL_STATE(1911)] = 80973, - [SMALL_STATE(1912)] = 80983, - [SMALL_STATE(1913)] = 80993, - [SMALL_STATE(1914)] = 81001, - [SMALL_STATE(1915)] = 81009, - [SMALL_STATE(1916)] = 81017, - [SMALL_STATE(1917)] = 81025, - [SMALL_STATE(1918)] = 81033, - [SMALL_STATE(1919)] = 81041, - [SMALL_STATE(1920)] = 81051, - [SMALL_STATE(1921)] = 81061, - [SMALL_STATE(1922)] = 81069, - [SMALL_STATE(1923)] = 81077, - [SMALL_STATE(1924)] = 81087, - [SMALL_STATE(1925)] = 81095, - [SMALL_STATE(1926)] = 81105, - [SMALL_STATE(1927)] = 81115, - [SMALL_STATE(1928)] = 81125, - [SMALL_STATE(1929)] = 81135, - [SMALL_STATE(1930)] = 81145, - [SMALL_STATE(1931)] = 81155, - [SMALL_STATE(1932)] = 81165, - [SMALL_STATE(1933)] = 81175, - [SMALL_STATE(1934)] = 81183, - [SMALL_STATE(1935)] = 81191, - [SMALL_STATE(1936)] = 81201, - [SMALL_STATE(1937)] = 81209, - [SMALL_STATE(1938)] = 81217, - [SMALL_STATE(1939)] = 81225, - [SMALL_STATE(1940)] = 81233, - [SMALL_STATE(1941)] = 81243, - [SMALL_STATE(1942)] = 81253, - [SMALL_STATE(1943)] = 81261, - [SMALL_STATE(1944)] = 81271, - [SMALL_STATE(1945)] = 81279, - [SMALL_STATE(1946)] = 81289, - [SMALL_STATE(1947)] = 81299, - [SMALL_STATE(1948)] = 81309, - [SMALL_STATE(1949)] = 81319, - [SMALL_STATE(1950)] = 81329, - [SMALL_STATE(1951)] = 81337, - [SMALL_STATE(1952)] = 81347, - [SMALL_STATE(1953)] = 81357, - [SMALL_STATE(1954)] = 81365, - [SMALL_STATE(1955)] = 81373, - [SMALL_STATE(1956)] = 81381, - [SMALL_STATE(1957)] = 81391, - [SMALL_STATE(1958)] = 81399, - [SMALL_STATE(1959)] = 81407, - [SMALL_STATE(1960)] = 81415, - [SMALL_STATE(1961)] = 81425, - [SMALL_STATE(1962)] = 81435, - [SMALL_STATE(1963)] = 81443, - [SMALL_STATE(1964)] = 81451, - [SMALL_STATE(1965)] = 81459, - [SMALL_STATE(1966)] = 81469, - [SMALL_STATE(1967)] = 81477, - [SMALL_STATE(1968)] = 81487, - [SMALL_STATE(1969)] = 81497, - [SMALL_STATE(1970)] = 81505, - [SMALL_STATE(1971)] = 81515, - [SMALL_STATE(1972)] = 81525, - [SMALL_STATE(1973)] = 81535, - [SMALL_STATE(1974)] = 81545, - [SMALL_STATE(1975)] = 81552, - [SMALL_STATE(1976)] = 81559, - [SMALL_STATE(1977)] = 81566, - [SMALL_STATE(1978)] = 81573, - [SMALL_STATE(1979)] = 81580, - [SMALL_STATE(1980)] = 81587, - [SMALL_STATE(1981)] = 81594, - [SMALL_STATE(1982)] = 81601, - [SMALL_STATE(1983)] = 81608, - [SMALL_STATE(1984)] = 81615, - [SMALL_STATE(1985)] = 81622, - [SMALL_STATE(1986)] = 81629, - [SMALL_STATE(1987)] = 81636, - [SMALL_STATE(1988)] = 81643, - [SMALL_STATE(1989)] = 81650, - [SMALL_STATE(1990)] = 81657, - [SMALL_STATE(1991)] = 81664, - [SMALL_STATE(1992)] = 81671, - [SMALL_STATE(1993)] = 81678, - [SMALL_STATE(1994)] = 81685, - [SMALL_STATE(1995)] = 81692, - [SMALL_STATE(1996)] = 81699, - [SMALL_STATE(1997)] = 81706, - [SMALL_STATE(1998)] = 81713, - [SMALL_STATE(1999)] = 81720, - [SMALL_STATE(2000)] = 81727, - [SMALL_STATE(2001)] = 81734, - [SMALL_STATE(2002)] = 81741, - [SMALL_STATE(2003)] = 81748, - [SMALL_STATE(2004)] = 81755, - [SMALL_STATE(2005)] = 81762, - [SMALL_STATE(2006)] = 81769, - [SMALL_STATE(2007)] = 81776, - [SMALL_STATE(2008)] = 81783, - [SMALL_STATE(2009)] = 81790, - [SMALL_STATE(2010)] = 81797, - [SMALL_STATE(2011)] = 81804, - [SMALL_STATE(2012)] = 81811, - [SMALL_STATE(2013)] = 81818, - [SMALL_STATE(2014)] = 81825, - [SMALL_STATE(2015)] = 81832, - [SMALL_STATE(2016)] = 81839, - [SMALL_STATE(2017)] = 81846, - [SMALL_STATE(2018)] = 81853, - [SMALL_STATE(2019)] = 81860, - [SMALL_STATE(2020)] = 81867, - [SMALL_STATE(2021)] = 81874, - [SMALL_STATE(2022)] = 81881, - [SMALL_STATE(2023)] = 81888, - [SMALL_STATE(2024)] = 81895, - [SMALL_STATE(2025)] = 81902, - [SMALL_STATE(2026)] = 81909, - [SMALL_STATE(2027)] = 81916, - [SMALL_STATE(2028)] = 81923, - [SMALL_STATE(2029)] = 81930, - [SMALL_STATE(2030)] = 81937, - [SMALL_STATE(2031)] = 81944, - [SMALL_STATE(2032)] = 81951, - [SMALL_STATE(2033)] = 81958, - [SMALL_STATE(2034)] = 81965, - [SMALL_STATE(2035)] = 81972, - [SMALL_STATE(2036)] = 81979, - [SMALL_STATE(2037)] = 81986, - [SMALL_STATE(2038)] = 81993, - [SMALL_STATE(2039)] = 82000, - [SMALL_STATE(2040)] = 82007, - [SMALL_STATE(2041)] = 82014, - [SMALL_STATE(2042)] = 82021, - [SMALL_STATE(2043)] = 82028, - [SMALL_STATE(2044)] = 82035, - [SMALL_STATE(2045)] = 82042, - [SMALL_STATE(2046)] = 82049, - [SMALL_STATE(2047)] = 82056, - [SMALL_STATE(2048)] = 82063, - [SMALL_STATE(2049)] = 82070, - [SMALL_STATE(2050)] = 82077, - [SMALL_STATE(2051)] = 82084, - [SMALL_STATE(2052)] = 82091, - [SMALL_STATE(2053)] = 82098, - [SMALL_STATE(2054)] = 82105, - [SMALL_STATE(2055)] = 82112, - [SMALL_STATE(2056)] = 82119, - [SMALL_STATE(2057)] = 82126, - [SMALL_STATE(2058)] = 82133, - [SMALL_STATE(2059)] = 82140, - [SMALL_STATE(2060)] = 82147, - [SMALL_STATE(2061)] = 82154, - [SMALL_STATE(2062)] = 82161, - [SMALL_STATE(2063)] = 82168, - [SMALL_STATE(2064)] = 82175, - [SMALL_STATE(2065)] = 82182, - [SMALL_STATE(2066)] = 82189, - [SMALL_STATE(2067)] = 82196, - [SMALL_STATE(2068)] = 82203, - [SMALL_STATE(2069)] = 82210, - [SMALL_STATE(2070)] = 82217, - [SMALL_STATE(2071)] = 82224, - [SMALL_STATE(2072)] = 82231, - [SMALL_STATE(2073)] = 82238, - [SMALL_STATE(2074)] = 82245, - [SMALL_STATE(2075)] = 82252, - [SMALL_STATE(2076)] = 82259, - [SMALL_STATE(2077)] = 82266, - [SMALL_STATE(2078)] = 82273, - [SMALL_STATE(2079)] = 82280, - [SMALL_STATE(2080)] = 82287, - [SMALL_STATE(2081)] = 82294, - [SMALL_STATE(2082)] = 82301, - [SMALL_STATE(2083)] = 82308, - [SMALL_STATE(2084)] = 82315, - [SMALL_STATE(2085)] = 82322, - [SMALL_STATE(2086)] = 82329, - [SMALL_STATE(2087)] = 82336, - [SMALL_STATE(2088)] = 82343, - [SMALL_STATE(2089)] = 82350, - [SMALL_STATE(2090)] = 82357, - [SMALL_STATE(2091)] = 82364, - [SMALL_STATE(2092)] = 82371, - [SMALL_STATE(2093)] = 82378, - [SMALL_STATE(2094)] = 82385, - [SMALL_STATE(2095)] = 82392, - [SMALL_STATE(2096)] = 82399, - [SMALL_STATE(2097)] = 82406, - [SMALL_STATE(2098)] = 82413, - [SMALL_STATE(2099)] = 82420, - [SMALL_STATE(2100)] = 82427, - [SMALL_STATE(2101)] = 82434, - [SMALL_STATE(2102)] = 82441, - [SMALL_STATE(2103)] = 82448, - [SMALL_STATE(2104)] = 82455, - [SMALL_STATE(2105)] = 82462, - [SMALL_STATE(2106)] = 82469, - [SMALL_STATE(2107)] = 82476, - [SMALL_STATE(2108)] = 82483, - [SMALL_STATE(2109)] = 82490, - [SMALL_STATE(2110)] = 82497, - [SMALL_STATE(2111)] = 82504, - [SMALL_STATE(2112)] = 82511, - [SMALL_STATE(2113)] = 82518, - [SMALL_STATE(2114)] = 82525, - [SMALL_STATE(2115)] = 82532, - [SMALL_STATE(2116)] = 82539, - [SMALL_STATE(2117)] = 82546, - [SMALL_STATE(2118)] = 82553, - [SMALL_STATE(2119)] = 82560, - [SMALL_STATE(2120)] = 82567, - [SMALL_STATE(2121)] = 82574, - [SMALL_STATE(2122)] = 82581, - [SMALL_STATE(2123)] = 82588, - [SMALL_STATE(2124)] = 82595, - [SMALL_STATE(2125)] = 82602, - [SMALL_STATE(2126)] = 82609, - [SMALL_STATE(2127)] = 82616, - [SMALL_STATE(2128)] = 82623, - [SMALL_STATE(2129)] = 82630, - [SMALL_STATE(2130)] = 82637, - [SMALL_STATE(2131)] = 82644, - [SMALL_STATE(2132)] = 82651, - [SMALL_STATE(2133)] = 82658, - [SMALL_STATE(2134)] = 82665, - [SMALL_STATE(2135)] = 82672, - [SMALL_STATE(2136)] = 82679, - [SMALL_STATE(2137)] = 82686, - [SMALL_STATE(2138)] = 82693, - [SMALL_STATE(2139)] = 82700, - [SMALL_STATE(2140)] = 82707, - [SMALL_STATE(2141)] = 82714, - [SMALL_STATE(2142)] = 82721, - [SMALL_STATE(2143)] = 82728, - [SMALL_STATE(2144)] = 82735, - [SMALL_STATE(2145)] = 82742, - [SMALL_STATE(2146)] = 82749, - [SMALL_STATE(2147)] = 82756, - [SMALL_STATE(2148)] = 82763, - [SMALL_STATE(2149)] = 82770, - [SMALL_STATE(2150)] = 82777, - [SMALL_STATE(2151)] = 82784, - [SMALL_STATE(2152)] = 82791, - [SMALL_STATE(2153)] = 82798, - [SMALL_STATE(2154)] = 82805, - [SMALL_STATE(2155)] = 82812, - [SMALL_STATE(2156)] = 82819, - [SMALL_STATE(2157)] = 82826, - [SMALL_STATE(2158)] = 82833, - [SMALL_STATE(2159)] = 82840, - [SMALL_STATE(2160)] = 82847, - [SMALL_STATE(2161)] = 82854, - [SMALL_STATE(2162)] = 82861, - [SMALL_STATE(2163)] = 82868, - [SMALL_STATE(2164)] = 82875, - [SMALL_STATE(2165)] = 82882, - [SMALL_STATE(2166)] = 82889, - [SMALL_STATE(2167)] = 82896, - [SMALL_STATE(2168)] = 82903, - [SMALL_STATE(2169)] = 82910, - [SMALL_STATE(2170)] = 82917, - [SMALL_STATE(2171)] = 82924, - [SMALL_STATE(2172)] = 82931, - [SMALL_STATE(2173)] = 82938, - [SMALL_STATE(2174)] = 82945, - [SMALL_STATE(2175)] = 82952, - [SMALL_STATE(2176)] = 82959, - [SMALL_STATE(2177)] = 82966, - [SMALL_STATE(2178)] = 82973, - [SMALL_STATE(2179)] = 82980, - [SMALL_STATE(2180)] = 82987, - [SMALL_STATE(2181)] = 82994, - [SMALL_STATE(2182)] = 83001, - [SMALL_STATE(2183)] = 83008, - [SMALL_STATE(2184)] = 83015, - [SMALL_STATE(2185)] = 83022, - [SMALL_STATE(2186)] = 83029, - [SMALL_STATE(2187)] = 83036, - [SMALL_STATE(2188)] = 83043, - [SMALL_STATE(2189)] = 83050, - [SMALL_STATE(2190)] = 83057, - [SMALL_STATE(2191)] = 83064, - [SMALL_STATE(2192)] = 83071, - [SMALL_STATE(2193)] = 83078, - [SMALL_STATE(2194)] = 83085, - [SMALL_STATE(2195)] = 83092, - [SMALL_STATE(2196)] = 83099, - [SMALL_STATE(2197)] = 83106, - [SMALL_STATE(2198)] = 83113, - [SMALL_STATE(2199)] = 83120, - [SMALL_STATE(2200)] = 83127, - [SMALL_STATE(2201)] = 83134, - [SMALL_STATE(2202)] = 83141, - [SMALL_STATE(2203)] = 83148, - [SMALL_STATE(2204)] = 83155, - [SMALL_STATE(2205)] = 83162, - [SMALL_STATE(2206)] = 83169, - [SMALL_STATE(2207)] = 83176, - [SMALL_STATE(2208)] = 83183, - [SMALL_STATE(2209)] = 83190, - [SMALL_STATE(2210)] = 83197, - [SMALL_STATE(2211)] = 83204, - [SMALL_STATE(2212)] = 83211, - [SMALL_STATE(2213)] = 83218, - [SMALL_STATE(2214)] = 83225, - [SMALL_STATE(2215)] = 83232, - [SMALL_STATE(2216)] = 83239, - [SMALL_STATE(2217)] = 83246, - [SMALL_STATE(2218)] = 83253, - [SMALL_STATE(2219)] = 83260, - [SMALL_STATE(2220)] = 83267, - [SMALL_STATE(2221)] = 83274, - [SMALL_STATE(2222)] = 83281, - [SMALL_STATE(2223)] = 83288, - [SMALL_STATE(2224)] = 83295, - [SMALL_STATE(2225)] = 83302, - [SMALL_STATE(2226)] = 83309, - [SMALL_STATE(2227)] = 83316, - [SMALL_STATE(2228)] = 83323, - [SMALL_STATE(2229)] = 83330, - [SMALL_STATE(2230)] = 83337, - [SMALL_STATE(2231)] = 83344, - [SMALL_STATE(2232)] = 83351, - [SMALL_STATE(2233)] = 83358, - [SMALL_STATE(2234)] = 83365, - [SMALL_STATE(2235)] = 83372, - [SMALL_STATE(2236)] = 83379, - [SMALL_STATE(2237)] = 83386, - [SMALL_STATE(2238)] = 83393, - [SMALL_STATE(2239)] = 83400, - [SMALL_STATE(2240)] = 83407, - [SMALL_STATE(2241)] = 83414, - [SMALL_STATE(2242)] = 83421, - [SMALL_STATE(2243)] = 83428, - [SMALL_STATE(2244)] = 83435, - [SMALL_STATE(2245)] = 83442, - [SMALL_STATE(2246)] = 83449, - [SMALL_STATE(2247)] = 83456, - [SMALL_STATE(2248)] = 83463, - [SMALL_STATE(2249)] = 83470, - [SMALL_STATE(2250)] = 83477, - [SMALL_STATE(2251)] = 83484, - [SMALL_STATE(2252)] = 83491, - [SMALL_STATE(2253)] = 83498, - [SMALL_STATE(2254)] = 83505, - [SMALL_STATE(2255)] = 83512, - [SMALL_STATE(2256)] = 83519, - [SMALL_STATE(2257)] = 83526, - [SMALL_STATE(2258)] = 83533, - [SMALL_STATE(2259)] = 83540, - [SMALL_STATE(2260)] = 83547, - [SMALL_STATE(2261)] = 83554, - [SMALL_STATE(2262)] = 83561, - [SMALL_STATE(2263)] = 83568, - [SMALL_STATE(2264)] = 83575, - [SMALL_STATE(2265)] = 83582, - [SMALL_STATE(2266)] = 83589, - [SMALL_STATE(2267)] = 83596, - [SMALL_STATE(2268)] = 83603, - [SMALL_STATE(2269)] = 83610, - [SMALL_STATE(2270)] = 83617, - [SMALL_STATE(2271)] = 83624, - [SMALL_STATE(2272)] = 83631, - [SMALL_STATE(2273)] = 83638, - [SMALL_STATE(2274)] = 83645, - [SMALL_STATE(2275)] = 83652, - [SMALL_STATE(2276)] = 83659, - [SMALL_STATE(2277)] = 83666, - [SMALL_STATE(2278)] = 83673, - [SMALL_STATE(2279)] = 83680, - [SMALL_STATE(2280)] = 83687, - [SMALL_STATE(2281)] = 83694, - [SMALL_STATE(2282)] = 83701, - [SMALL_STATE(2283)] = 83708, - [SMALL_STATE(2284)] = 83715, - [SMALL_STATE(2285)] = 83722, - [SMALL_STATE(2286)] = 83729, - [SMALL_STATE(2287)] = 83736, - [SMALL_STATE(2288)] = 83743, - [SMALL_STATE(2289)] = 83750, - [SMALL_STATE(2290)] = 83757, - [SMALL_STATE(2291)] = 83764, - [SMALL_STATE(2292)] = 83771, - [SMALL_STATE(2293)] = 83778, - [SMALL_STATE(2294)] = 83785, - [SMALL_STATE(2295)] = 83792, - [SMALL_STATE(2296)] = 83799, - [SMALL_STATE(2297)] = 83806, - [SMALL_STATE(2298)] = 83813, - [SMALL_STATE(2299)] = 83820, - [SMALL_STATE(2300)] = 83827, - [SMALL_STATE(2301)] = 83834, - [SMALL_STATE(2302)] = 83841, - [SMALL_STATE(2303)] = 83848, - [SMALL_STATE(2304)] = 83855, - [SMALL_STATE(2305)] = 83862, - [SMALL_STATE(2306)] = 83869, - [SMALL_STATE(2307)] = 83876, - [SMALL_STATE(2308)] = 83883, - [SMALL_STATE(2309)] = 83890, - [SMALL_STATE(2310)] = 83897, - [SMALL_STATE(2311)] = 83904, - [SMALL_STATE(2312)] = 83911, - [SMALL_STATE(2313)] = 83918, - [SMALL_STATE(2314)] = 83925, - [SMALL_STATE(2315)] = 83932, - [SMALL_STATE(2316)] = 83939, - [SMALL_STATE(2317)] = 83946, - [SMALL_STATE(2318)] = 83953, - [SMALL_STATE(2319)] = 83960, - [SMALL_STATE(2320)] = 83967, - [SMALL_STATE(2321)] = 83974, - [SMALL_STATE(2322)] = 83981, - [SMALL_STATE(2323)] = 83988, - [SMALL_STATE(2324)] = 83995, - [SMALL_STATE(2325)] = 84002, - [SMALL_STATE(2326)] = 84009, - [SMALL_STATE(2327)] = 84016, - [SMALL_STATE(2328)] = 84023, - [SMALL_STATE(2329)] = 84030, - [SMALL_STATE(2330)] = 84037, - [SMALL_STATE(2331)] = 84044, - [SMALL_STATE(2332)] = 84051, - [SMALL_STATE(2333)] = 84058, - [SMALL_STATE(2334)] = 84065, - [SMALL_STATE(2335)] = 84072, - [SMALL_STATE(2336)] = 84079, - [SMALL_STATE(2337)] = 84086, - [SMALL_STATE(2338)] = 84093, - [SMALL_STATE(2339)] = 84100, - [SMALL_STATE(2340)] = 84107, - [SMALL_STATE(2341)] = 84114, - [SMALL_STATE(2342)] = 84121, - [SMALL_STATE(2343)] = 84128, - [SMALL_STATE(2344)] = 84135, - [SMALL_STATE(2345)] = 84142, - [SMALL_STATE(2346)] = 84149, - [SMALL_STATE(2347)] = 84156, - [SMALL_STATE(2348)] = 84163, - [SMALL_STATE(2349)] = 84170, - [SMALL_STATE(2350)] = 84177, - [SMALL_STATE(2351)] = 84184, - [SMALL_STATE(2352)] = 84191, - [SMALL_STATE(2353)] = 84198, - [SMALL_STATE(2354)] = 84205, - [SMALL_STATE(2355)] = 84212, - [SMALL_STATE(2356)] = 84219, - [SMALL_STATE(2357)] = 84226, - [SMALL_STATE(2358)] = 84233, - [SMALL_STATE(2359)] = 84240, - [SMALL_STATE(2360)] = 84247, - [SMALL_STATE(2361)] = 84254, - [SMALL_STATE(2362)] = 84261, - [SMALL_STATE(2363)] = 84268, - [SMALL_STATE(2364)] = 84275, - [SMALL_STATE(2365)] = 84282, - [SMALL_STATE(2366)] = 84289, - [SMALL_STATE(2367)] = 84296, - [SMALL_STATE(2368)] = 84303, - [SMALL_STATE(2369)] = 84310, - [SMALL_STATE(2370)] = 84317, - [SMALL_STATE(2371)] = 84324, - [SMALL_STATE(2372)] = 84331, - [SMALL_STATE(2373)] = 84338, - [SMALL_STATE(2374)] = 84345, - [SMALL_STATE(2375)] = 84352, - [SMALL_STATE(2376)] = 84359, - [SMALL_STATE(2377)] = 84366, - [SMALL_STATE(2378)] = 84373, - [SMALL_STATE(2379)] = 84380, + [SMALL_STATE(292)] = 22353, + [SMALL_STATE(293)] = 22414, + [SMALL_STATE(294)] = 22475, + [SMALL_STATE(295)] = 22540, + [SMALL_STATE(296)] = 22599, + [SMALL_STATE(297)] = 22702, + [SMALL_STATE(298)] = 22805, + [SMALL_STATE(299)] = 22868, + [SMALL_STATE(300)] = 22926, + [SMALL_STATE(301)] = 22984, + [SMALL_STATE(302)] = 23042, + [SMALL_STATE(303)] = 23100, + [SMALL_STATE(304)] = 23158, + [SMALL_STATE(305)] = 23216, + [SMALL_STATE(306)] = 23274, + [SMALL_STATE(307)] = 23332, + [SMALL_STATE(308)] = 23390, + [SMALL_STATE(309)] = 23448, + [SMALL_STATE(310)] = 23506, + [SMALL_STATE(311)] = 23564, + [SMALL_STATE(312)] = 23622, + [SMALL_STATE(313)] = 23680, + [SMALL_STATE(314)] = 23738, + [SMALL_STATE(315)] = 23796, + [SMALL_STATE(316)] = 23854, + [SMALL_STATE(317)] = 23912, + [SMALL_STATE(318)] = 23970, + [SMALL_STATE(319)] = 24028, + [SMALL_STATE(320)] = 24088, + [SMALL_STATE(321)] = 24148, + [SMALL_STATE(322)] = 24208, + [SMALL_STATE(323)] = 24266, + [SMALL_STATE(324)] = 24326, + [SMALL_STATE(325)] = 24384, + [SMALL_STATE(326)] = 24442, + [SMALL_STATE(327)] = 24500, + [SMALL_STATE(328)] = 24558, + [SMALL_STATE(329)] = 24616, + [SMALL_STATE(330)] = 24718, + [SMALL_STATE(331)] = 24776, + [SMALL_STATE(332)] = 24834, + [SMALL_STATE(333)] = 24892, + [SMALL_STATE(334)] = 24956, + [SMALL_STATE(335)] = 25014, + [SMALL_STATE(336)] = 25072, + [SMALL_STATE(337)] = 25130, + [SMALL_STATE(338)] = 25188, + [SMALL_STATE(339)] = 25286, + [SMALL_STATE(340)] = 25344, + [SMALL_STATE(341)] = 25402, + [SMALL_STATE(342)] = 25466, + [SMALL_STATE(343)] = 25524, + [SMALL_STATE(344)] = 25582, + [SMALL_STATE(345)] = 25640, + [SMALL_STATE(346)] = 25702, + [SMALL_STATE(347)] = 25760, + [SMALL_STATE(348)] = 25818, + [SMALL_STATE(349)] = 25876, + [SMALL_STATE(350)] = 25934, + [SMALL_STATE(351)] = 25992, + [SMALL_STATE(352)] = 26050, + [SMALL_STATE(353)] = 26108, + [SMALL_STATE(354)] = 26166, + [SMALL_STATE(355)] = 26228, + [SMALL_STATE(356)] = 26286, + [SMALL_STATE(357)] = 26344, + [SMALL_STATE(358)] = 26470, + [SMALL_STATE(359)] = 26596, + [SMALL_STATE(360)] = 26654, + [SMALL_STATE(361)] = 26712, + [SMALL_STATE(362)] = 26771, + [SMALL_STATE(363)] = 26828, + [SMALL_STATE(364)] = 26885, + [SMALL_STATE(365)] = 26942, + [SMALL_STATE(366)] = 26999, + [SMALL_STATE(367)] = 27056, + [SMALL_STATE(368)] = 27113, + [SMALL_STATE(369)] = 27170, + [SMALL_STATE(370)] = 27231, + [SMALL_STATE(371)] = 27292, + [SMALL_STATE(372)] = 27349, + [SMALL_STATE(373)] = 27408, + [SMALL_STATE(374)] = 27469, + [SMALL_STATE(375)] = 27526, + [SMALL_STATE(376)] = 27583, + [SMALL_STATE(377)] = 27640, + [SMALL_STATE(378)] = 27701, + [SMALL_STATE(379)] = 27760, + [SMALL_STATE(380)] = 27819, + [SMALL_STATE(381)] = 27878, + [SMALL_STATE(382)] = 27937, + [SMALL_STATE(383)] = 27994, + [SMALL_STATE(384)] = 28051, + [SMALL_STATE(385)] = 28108, + [SMALL_STATE(386)] = 28165, + [SMALL_STATE(387)] = 28222, + [SMALL_STATE(388)] = 28279, + [SMALL_STATE(389)] = 28336, + [SMALL_STATE(390)] = 28395, + [SMALL_STATE(391)] = 28454, + [SMALL_STATE(392)] = 28511, + [SMALL_STATE(393)] = 28567, + [SMALL_STATE(394)] = 28663, + [SMALL_STATE(395)] = 28719, + [SMALL_STATE(396)] = 28777, + [SMALL_STATE(397)] = 28833, + [SMALL_STATE(398)] = 28889, + [SMALL_STATE(399)] = 28947, + [SMALL_STATE(400)] = 29005, + [SMALL_STATE(401)] = 29063, + [SMALL_STATE(402)] = 29121, + [SMALL_STATE(403)] = 29177, + [SMALL_STATE(404)] = 29235, + [SMALL_STATE(405)] = 29291, + [SMALL_STATE(406)] = 29347, + [SMALL_STATE(407)] = 29403, + [SMALL_STATE(408)] = 29459, + [SMALL_STATE(409)] = 29515, + [SMALL_STATE(410)] = 29571, + [SMALL_STATE(411)] = 29627, + [SMALL_STATE(412)] = 29751, + [SMALL_STATE(413)] = 29807, + [SMALL_STATE(414)] = 29863, + [SMALL_STATE(415)] = 29919, + [SMALL_STATE(416)] = 29975, + [SMALL_STATE(417)] = 30031, + [SMALL_STATE(418)] = 30087, + [SMALL_STATE(419)] = 30143, + [SMALL_STATE(420)] = 30199, + [SMALL_STATE(421)] = 30255, + [SMALL_STATE(422)] = 30311, + [SMALL_STATE(423)] = 30367, + [SMALL_STATE(424)] = 30423, + [SMALL_STATE(425)] = 30491, + [SMALL_STATE(426)] = 30547, + [SMALL_STATE(427)] = 30603, + [SMALL_STATE(428)] = 30661, + [SMALL_STATE(429)] = 30719, + [SMALL_STATE(430)] = 30775, + [SMALL_STATE(431)] = 30831, + [SMALL_STATE(432)] = 30887, + [SMALL_STATE(433)] = 30943, + [SMALL_STATE(434)] = 30999, + [SMALL_STATE(435)] = 31055, + [SMALL_STATE(436)] = 31111, + [SMALL_STATE(437)] = 31167, + [SMALL_STATE(438)] = 31223, + [SMALL_STATE(439)] = 31327, + [SMALL_STATE(440)] = 31451, + [SMALL_STATE(441)] = 31507, + [SMALL_STATE(442)] = 31563, + [SMALL_STATE(443)] = 31618, + [SMALL_STATE(444)] = 31673, + [SMALL_STATE(445)] = 31742, + [SMALL_STATE(446)] = 31835, + [SMALL_STATE(447)] = 31938, + [SMALL_STATE(448)] = 31993, + [SMALL_STATE(449)] = 32048, + [SMALL_STATE(450)] = 32141, + [SMALL_STATE(451)] = 32222, + [SMALL_STATE(452)] = 32277, + [SMALL_STATE(453)] = 32356, + [SMALL_STATE(454)] = 32411, + [SMALL_STATE(455)] = 32466, + [SMALL_STATE(456)] = 32521, + [SMALL_STATE(457)] = 32576, + [SMALL_STATE(458)] = 32631, + [SMALL_STATE(459)] = 32704, + [SMALL_STATE(460)] = 32759, + [SMALL_STATE(461)] = 32854, + [SMALL_STATE(462)] = 32951, + [SMALL_STATE(463)] = 33006, + [SMALL_STATE(464)] = 33061, + [SMALL_STATE(465)] = 33116, + [SMALL_STATE(466)] = 33171, + [SMALL_STATE(467)] = 33226, + [SMALL_STATE(468)] = 33281, + [SMALL_STATE(469)] = 33404, + [SMALL_STATE(470)] = 33459, + [SMALL_STATE(471)] = 33514, + [SMALL_STATE(472)] = 33569, + [SMALL_STATE(473)] = 33624, + [SMALL_STATE(474)] = 33693, + [SMALL_STATE(475)] = 33748, + [SMALL_STATE(476)] = 33803, + [SMALL_STATE(477)] = 33858, + [SMALL_STATE(478)] = 33913, + [SMALL_STATE(479)] = 33968, + [SMALL_STATE(480)] = 34023, + [SMALL_STATE(481)] = 34078, + [SMALL_STATE(482)] = 34133, + [SMALL_STATE(483)] = 34200, + [SMALL_STATE(484)] = 34285, + [SMALL_STATE(485)] = 34386, + [SMALL_STATE(486)] = 34479, + [SMALL_STATE(487)] = 34534, + [SMALL_STATE(488)] = 34589, + [SMALL_STATE(489)] = 34644, + [SMALL_STATE(490)] = 34699, + [SMALL_STATE(491)] = 34754, + [SMALL_STATE(492)] = 34877, + [SMALL_STATE(493)] = 34932, + [SMALL_STATE(494)] = 35009, + [SMALL_STATE(495)] = 35064, + [SMALL_STATE(496)] = 35119, + [SMALL_STATE(497)] = 35174, + [SMALL_STATE(498)] = 35250, + [SMALL_STATE(499)] = 35328, + [SMALL_STATE(500)] = 35400, + [SMALL_STATE(501)] = 35454, + [SMALL_STATE(502)] = 35512, + [SMALL_STATE(503)] = 35592, + [SMALL_STATE(504)] = 35648, + [SMALL_STATE(505)] = 35732, + [SMALL_STATE(506)] = 35790, + [SMALL_STATE(507)] = 35882, + [SMALL_STATE(508)] = 35974, + [SMALL_STATE(509)] = 36028, + [SMALL_STATE(510)] = 36096, + [SMALL_STATE(511)] = 36188, + [SMALL_STATE(512)] = 36244, + [SMALL_STATE(513)] = 36340, + [SMALL_STATE(514)] = 36408, + [SMALL_STATE(515)] = 36465, + [SMALL_STATE(516)] = 36558, + [SMALL_STATE(517)] = 36653, + [SMALL_STATE(518)] = 36712, + [SMALL_STATE(519)] = 36769, + [SMALL_STATE(520)] = 36863, + [SMALL_STATE(521)] = 36921, + [SMALL_STATE(522)] = 37015, + [SMALL_STATE(523)] = 37109, + [SMALL_STATE(524)] = 37203, + [SMALL_STATE(525)] = 37297, + [SMALL_STATE(526)] = 37391, + [SMALL_STATE(527)] = 37485, + [SMALL_STATE(528)] = 37579, + [SMALL_STATE(529)] = 37673, + [SMALL_STATE(530)] = 37767, + [SMALL_STATE(531)] = 37861, + [SMALL_STATE(532)] = 37955, + [SMALL_STATE(533)] = 38049, + [SMALL_STATE(534)] = 38143, + [SMALL_STATE(535)] = 38195, + [SMALL_STATE(536)] = 38289, + [SMALL_STATE(537)] = 38383, + [SMALL_STATE(538)] = 38435, + [SMALL_STATE(539)] = 38529, + [SMALL_STATE(540)] = 38623, + [SMALL_STATE(541)] = 38717, + [SMALL_STATE(542)] = 38769, + [SMALL_STATE(543)] = 38821, + [SMALL_STATE(544)] = 38915, + [SMALL_STATE(545)] = 39009, + [SMALL_STATE(546)] = 39103, + [SMALL_STATE(547)] = 39197, + [SMALL_STATE(548)] = 39291, + [SMALL_STATE(549)] = 39385, + [SMALL_STATE(550)] = 39479, + [SMALL_STATE(551)] = 39573, + [SMALL_STATE(552)] = 39667, + [SMALL_STATE(553)] = 39761, + [SMALL_STATE(554)] = 39855, + [SMALL_STATE(555)] = 39949, + [SMALL_STATE(556)] = 40043, + [SMALL_STATE(557)] = 40095, + [SMALL_STATE(558)] = 40189, + [SMALL_STATE(559)] = 40283, + [SMALL_STATE(560)] = 40373, + [SMALL_STATE(561)] = 40467, + [SMALL_STATE(562)] = 40561, + [SMALL_STATE(563)] = 40619, + [SMALL_STATE(564)] = 40713, + [SMALL_STATE(565)] = 40807, + [SMALL_STATE(566)] = 40901, + [SMALL_STATE(567)] = 40995, + [SMALL_STATE(568)] = 41089, + [SMALL_STATE(569)] = 41183, + [SMALL_STATE(570)] = 41277, + [SMALL_STATE(571)] = 41329, + [SMALL_STATE(572)] = 41384, + [SMALL_STATE(573)] = 41475, + [SMALL_STATE(574)] = 41564, + [SMALL_STATE(575)] = 41615, + [SMALL_STATE(576)] = 41706, + [SMALL_STATE(577)] = 41763, + [SMALL_STATE(578)] = 41852, + [SMALL_STATE(579)] = 41903, + [SMALL_STATE(580)] = 41992, + [SMALL_STATE(581)] = 42043, + [SMALL_STATE(582)] = 42098, + [SMALL_STATE(583)] = 42149, + [SMALL_STATE(584)] = 42200, + [SMALL_STATE(585)] = 42291, + [SMALL_STATE(586)] = 42342, + [SMALL_STATE(587)] = 42430, + [SMALL_STATE(588)] = 42518, + [SMALL_STATE(589)] = 42570, + [SMALL_STATE(590)] = 42658, + [SMALL_STATE(591)] = 42746, + [SMALL_STATE(592)] = 42834, + [SMALL_STATE(593)] = 42886, + [SMALL_STATE(594)] = 42974, + [SMALL_STATE(595)] = 43062, + [SMALL_STATE(596)] = 43150, + [SMALL_STATE(597)] = 43204, + [SMALL_STATE(598)] = 43292, + [SMALL_STATE(599)] = 43380, + [SMALL_STATE(600)] = 43468, + [SMALL_STATE(601)] = 43556, + [SMALL_STATE(602)] = 43644, + [SMALL_STATE(603)] = 43732, + [SMALL_STATE(604)] = 43820, + [SMALL_STATE(605)] = 43872, + [SMALL_STATE(606)] = 43924, + [SMALL_STATE(607)] = 43978, + [SMALL_STATE(608)] = 44066, + [SMALL_STATE(609)] = 44154, + [SMALL_STATE(610)] = 44204, + [SMALL_STATE(611)] = 44292, + [SMALL_STATE(612)] = 44341, + [SMALL_STATE(613)] = 44392, + [SMALL_STATE(614)] = 44441, + [SMALL_STATE(615)] = 44490, + [SMALL_STATE(616)] = 44539, + [SMALL_STATE(617)] = 44588, + [SMALL_STATE(618)] = 44637, + [SMALL_STATE(619)] = 44686, + [SMALL_STATE(620)] = 44735, + [SMALL_STATE(621)] = 44784, + [SMALL_STATE(622)] = 44833, + [SMALL_STATE(623)] = 44884, + [SMALL_STATE(624)] = 44933, + [SMALL_STATE(625)] = 44982, + [SMALL_STATE(626)] = 45031, + [SMALL_STATE(627)] = 45080, + [SMALL_STATE(628)] = 45129, + [SMALL_STATE(629)] = 45178, + [SMALL_STATE(630)] = 45227, + [SMALL_STATE(631)] = 45278, + [SMALL_STATE(632)] = 45329, + [SMALL_STATE(633)] = 45378, + [SMALL_STATE(634)] = 45427, + [SMALL_STATE(635)] = 45476, + [SMALL_STATE(636)] = 45524, + [SMALL_STATE(637)] = 45572, + [SMALL_STATE(638)] = 45620, + [SMALL_STATE(639)] = 45668, + [SMALL_STATE(640)] = 45716, + [SMALL_STATE(641)] = 45764, + [SMALL_STATE(642)] = 45812, + [SMALL_STATE(643)] = 45860, + [SMALL_STATE(644)] = 45908, + [SMALL_STATE(645)] = 45956, + [SMALL_STATE(646)] = 46004, + [SMALL_STATE(647)] = 46052, + [SMALL_STATE(648)] = 46100, + [SMALL_STATE(649)] = 46148, + [SMALL_STATE(650)] = 46196, + [SMALL_STATE(651)] = 46244, + [SMALL_STATE(652)] = 46292, + [SMALL_STATE(653)] = 46340, + [SMALL_STATE(654)] = 46388, + [SMALL_STATE(655)] = 46430, + [SMALL_STATE(656)] = 46472, + [SMALL_STATE(657)] = 46514, + [SMALL_STATE(658)] = 46596, + [SMALL_STATE(659)] = 46678, + [SMALL_STATE(660)] = 46756, + [SMALL_STATE(661)] = 46834, + [SMALL_STATE(662)] = 46912, + [SMALL_STATE(663)] = 46990, + [SMALL_STATE(664)] = 47068, + [SMALL_STATE(665)] = 47146, + [SMALL_STATE(666)] = 47224, + [SMALL_STATE(667)] = 47302, + [SMALL_STATE(668)] = 47380, + [SMALL_STATE(669)] = 47458, + [SMALL_STATE(670)] = 47536, + [SMALL_STATE(671)] = 47614, + [SMALL_STATE(672)] = 47692, + [SMALL_STATE(673)] = 47770, + [SMALL_STATE(674)] = 47838, + [SMALL_STATE(675)] = 47916, + [SMALL_STATE(676)] = 47994, + [SMALL_STATE(677)] = 48062, + [SMALL_STATE(678)] = 48140, + [SMALL_STATE(679)] = 48215, + [SMALL_STATE(680)] = 48290, + [SMALL_STATE(681)] = 48365, + [SMALL_STATE(682)] = 48440, + [SMALL_STATE(683)] = 48515, + [SMALL_STATE(684)] = 48590, + [SMALL_STATE(685)] = 48665, + [SMALL_STATE(686)] = 48740, + [SMALL_STATE(687)] = 48815, + [SMALL_STATE(688)] = 48890, + [SMALL_STATE(689)] = 48965, + [SMALL_STATE(690)] = 49040, + [SMALL_STATE(691)] = 49112, + [SMALL_STATE(692)] = 49181, + [SMALL_STATE(693)] = 49250, + [SMALL_STATE(694)] = 49319, + [SMALL_STATE(695)] = 49388, + [SMALL_STATE(696)] = 49457, + [SMALL_STATE(697)] = 49526, + [SMALL_STATE(698)] = 49595, + [SMALL_STATE(699)] = 49661, + [SMALL_STATE(700)] = 49727, + [SMALL_STATE(701)] = 49793, + [SMALL_STATE(702)] = 49859, + [SMALL_STATE(703)] = 49925, + [SMALL_STATE(704)] = 49991, + [SMALL_STATE(705)] = 50057, + [SMALL_STATE(706)] = 50123, + [SMALL_STATE(707)] = 50189, + [SMALL_STATE(708)] = 50255, + [SMALL_STATE(709)] = 50321, + [SMALL_STATE(710)] = 50387, + [SMALL_STATE(711)] = 50453, + [SMALL_STATE(712)] = 50519, + [SMALL_STATE(713)] = 50585, + [SMALL_STATE(714)] = 50651, + [SMALL_STATE(715)] = 50717, + [SMALL_STATE(716)] = 50783, + [SMALL_STATE(717)] = 50849, + [SMALL_STATE(718)] = 50915, + [SMALL_STATE(719)] = 50981, + [SMALL_STATE(720)] = 51047, + [SMALL_STATE(721)] = 51113, + [SMALL_STATE(722)] = 51179, + [SMALL_STATE(723)] = 51245, + [SMALL_STATE(724)] = 51311, + [SMALL_STATE(725)] = 51377, + [SMALL_STATE(726)] = 51443, + [SMALL_STATE(727)] = 51509, + [SMALL_STATE(728)] = 51575, + [SMALL_STATE(729)] = 51641, + [SMALL_STATE(730)] = 51704, + [SMALL_STATE(731)] = 51767, + [SMALL_STATE(732)] = 51830, + [SMALL_STATE(733)] = 51893, + [SMALL_STATE(734)] = 51956, + [SMALL_STATE(735)] = 52019, + [SMALL_STATE(736)] = 52082, + [SMALL_STATE(737)] = 52145, + [SMALL_STATE(738)] = 52208, + [SMALL_STATE(739)] = 52271, + [SMALL_STATE(740)] = 52334, + [SMALL_STATE(741)] = 52397, + [SMALL_STATE(742)] = 52460, + [SMALL_STATE(743)] = 52523, + [SMALL_STATE(744)] = 52586, + [SMALL_STATE(745)] = 52649, + [SMALL_STATE(746)] = 52712, + [SMALL_STATE(747)] = 52775, + [SMALL_STATE(748)] = 52838, + [SMALL_STATE(749)] = 52901, + [SMALL_STATE(750)] = 52964, + [SMALL_STATE(751)] = 53027, + [SMALL_STATE(752)] = 53090, + [SMALL_STATE(753)] = 53153, + [SMALL_STATE(754)] = 53216, + [SMALL_STATE(755)] = 53279, + [SMALL_STATE(756)] = 53342, + [SMALL_STATE(757)] = 53405, + [SMALL_STATE(758)] = 53468, + [SMALL_STATE(759)] = 53531, + [SMALL_STATE(760)] = 53594, + [SMALL_STATE(761)] = 53657, + [SMALL_STATE(762)] = 53720, + [SMALL_STATE(763)] = 53783, + [SMALL_STATE(764)] = 53846, + [SMALL_STATE(765)] = 53909, + [SMALL_STATE(766)] = 53972, + [SMALL_STATE(767)] = 54035, + [SMALL_STATE(768)] = 54098, + [SMALL_STATE(769)] = 54161, + [SMALL_STATE(770)] = 54224, + [SMALL_STATE(771)] = 54287, + [SMALL_STATE(772)] = 54350, + [SMALL_STATE(773)] = 54413, + [SMALL_STATE(774)] = 54476, + [SMALL_STATE(775)] = 54539, + [SMALL_STATE(776)] = 54602, + [SMALL_STATE(777)] = 54665, + [SMALL_STATE(778)] = 54728, + [SMALL_STATE(779)] = 54791, + [SMALL_STATE(780)] = 54854, + [SMALL_STATE(781)] = 54917, + [SMALL_STATE(782)] = 54980, + [SMALL_STATE(783)] = 55043, + [SMALL_STATE(784)] = 55106, + [SMALL_STATE(785)] = 55169, + [SMALL_STATE(786)] = 55232, + [SMALL_STATE(787)] = 55295, + [SMALL_STATE(788)] = 55358, + [SMALL_STATE(789)] = 55421, + [SMALL_STATE(790)] = 55484, + [SMALL_STATE(791)] = 55547, + [SMALL_STATE(792)] = 55610, + [SMALL_STATE(793)] = 55673, + [SMALL_STATE(794)] = 55736, + [SMALL_STATE(795)] = 55799, + [SMALL_STATE(796)] = 55862, + [SMALL_STATE(797)] = 55925, + [SMALL_STATE(798)] = 55988, + [SMALL_STATE(799)] = 56051, + [SMALL_STATE(800)] = 56114, + [SMALL_STATE(801)] = 56177, + [SMALL_STATE(802)] = 56240, + [SMALL_STATE(803)] = 56303, + [SMALL_STATE(804)] = 56366, + [SMALL_STATE(805)] = 56429, + [SMALL_STATE(806)] = 56492, + [SMALL_STATE(807)] = 56555, + [SMALL_STATE(808)] = 56618, + [SMALL_STATE(809)] = 56681, + [SMALL_STATE(810)] = 56744, + [SMALL_STATE(811)] = 56807, + [SMALL_STATE(812)] = 56870, + [SMALL_STATE(813)] = 56933, + [SMALL_STATE(814)] = 56996, + [SMALL_STATE(815)] = 57059, + [SMALL_STATE(816)] = 57122, + [SMALL_STATE(817)] = 57185, + [SMALL_STATE(818)] = 57248, + [SMALL_STATE(819)] = 57311, + [SMALL_STATE(820)] = 57374, + [SMALL_STATE(821)] = 57437, + [SMALL_STATE(822)] = 57500, + [SMALL_STATE(823)] = 57563, + [SMALL_STATE(824)] = 57626, + [SMALL_STATE(825)] = 57689, + [SMALL_STATE(826)] = 57752, + [SMALL_STATE(827)] = 57815, + [SMALL_STATE(828)] = 57878, + [SMALL_STATE(829)] = 57941, + [SMALL_STATE(830)] = 58004, + [SMALL_STATE(831)] = 58067, + [SMALL_STATE(832)] = 58130, + [SMALL_STATE(833)] = 58193, + [SMALL_STATE(834)] = 58256, + [SMALL_STATE(835)] = 58319, + [SMALL_STATE(836)] = 58382, + [SMALL_STATE(837)] = 58445, + [SMALL_STATE(838)] = 58508, + [SMALL_STATE(839)] = 58571, + [SMALL_STATE(840)] = 58634, + [SMALL_STATE(841)] = 58697, + [SMALL_STATE(842)] = 58760, + [SMALL_STATE(843)] = 58823, + [SMALL_STATE(844)] = 58886, + [SMALL_STATE(845)] = 58949, + [SMALL_STATE(846)] = 59012, + [SMALL_STATE(847)] = 59075, + [SMALL_STATE(848)] = 59138, + [SMALL_STATE(849)] = 59201, + [SMALL_STATE(850)] = 59264, + [SMALL_STATE(851)] = 59327, + [SMALL_STATE(852)] = 59390, + [SMALL_STATE(853)] = 59453, + [SMALL_STATE(854)] = 59516, + [SMALL_STATE(855)] = 59579, + [SMALL_STATE(856)] = 59642, + [SMALL_STATE(857)] = 59705, + [SMALL_STATE(858)] = 59768, + [SMALL_STATE(859)] = 59831, + [SMALL_STATE(860)] = 59894, + [SMALL_STATE(861)] = 59957, + [SMALL_STATE(862)] = 60020, + [SMALL_STATE(863)] = 60083, + [SMALL_STATE(864)] = 60146, + [SMALL_STATE(865)] = 60209, + [SMALL_STATE(866)] = 60272, + [SMALL_STATE(867)] = 60335, + [SMALL_STATE(868)] = 60398, + [SMALL_STATE(869)] = 60461, + [SMALL_STATE(870)] = 60524, + [SMALL_STATE(871)] = 60587, + [SMALL_STATE(872)] = 60650, + [SMALL_STATE(873)] = 60713, + [SMALL_STATE(874)] = 60776, + [SMALL_STATE(875)] = 60844, + [SMALL_STATE(876)] = 60912, + [SMALL_STATE(877)] = 60980, + [SMALL_STATE(878)] = 61048, + [SMALL_STATE(879)] = 61080, + [SMALL_STATE(880)] = 61113, + [SMALL_STATE(881)] = 61146, + [SMALL_STATE(882)] = 61185, + [SMALL_STATE(883)] = 61215, + [SMALL_STATE(884)] = 61251, + [SMALL_STATE(885)] = 61319, + [SMALL_STATE(886)] = 61381, + [SMALL_STATE(887)] = 61413, + [SMALL_STATE(888)] = 61475, + [SMALL_STATE(889)] = 61543, + [SMALL_STATE(890)] = 61611, + [SMALL_STATE(891)] = 61679, + [SMALL_STATE(892)] = 61721, + [SMALL_STATE(893)] = 61753, + [SMALL_STATE(894)] = 61815, + [SMALL_STATE(895)] = 61857, + [SMALL_STATE(896)] = 61919, + [SMALL_STATE(897)] = 61961, + [SMALL_STATE(898)] = 62028, + [SMALL_STATE(899)] = 62055, + [SMALL_STATE(900)] = 62122, + [SMALL_STATE(901)] = 62151, + [SMALL_STATE(902)] = 62178, + [SMALL_STATE(903)] = 62245, + [SMALL_STATE(904)] = 62272, + [SMALL_STATE(905)] = 62301, + [SMALL_STATE(906)] = 62328, + [SMALL_STATE(907)] = 62365, + [SMALL_STATE(908)] = 62392, + [SMALL_STATE(909)] = 62425, + [SMALL_STATE(910)] = 62454, + [SMALL_STATE(911)] = 62481, + [SMALL_STATE(912)] = 62508, + [SMALL_STATE(913)] = 62537, + [SMALL_STATE(914)] = 62604, + [SMALL_STATE(915)] = 62631, + [SMALL_STATE(916)] = 62693, + [SMALL_STATE(917)] = 62727, + [SMALL_STATE(918)] = 62755, + [SMALL_STATE(919)] = 62811, + [SMALL_STATE(920)] = 62851, + [SMALL_STATE(921)] = 62881, + [SMALL_STATE(922)] = 62943, + [SMALL_STATE(923)] = 62983, + [SMALL_STATE(924)] = 63045, + [SMALL_STATE(925)] = 63101, + [SMALL_STATE(926)] = 63157, + [SMALL_STATE(927)] = 63213, + [SMALL_STATE(928)] = 63249, + [SMALL_STATE(929)] = 63311, + [SMALL_STATE(930)] = 63341, + [SMALL_STATE(931)] = 63397, + [SMALL_STATE(932)] = 63437, + [SMALL_STATE(933)] = 63464, + [SMALL_STATE(934)] = 63491, + [SMALL_STATE(935)] = 63536, + [SMALL_STATE(936)] = 63597, + [SMALL_STATE(937)] = 63626, + [SMALL_STATE(938)] = 63671, + [SMALL_STATE(939)] = 63704, + [SMALL_STATE(940)] = 63749, + [SMALL_STATE(941)] = 63794, + [SMALL_STATE(942)] = 63823, + [SMALL_STATE(943)] = 63884, + [SMALL_STATE(944)] = 63929, + [SMALL_STATE(945)] = 63990, + [SMALL_STATE(946)] = 64035, + [SMALL_STATE(947)] = 64096, + [SMALL_STATE(948)] = 64123, + [SMALL_STATE(949)] = 64152, + [SMALL_STATE(950)] = 64191, + [SMALL_STATE(951)] = 64218, + [SMALL_STATE(952)] = 64249, + [SMALL_STATE(953)] = 64288, + [SMALL_STATE(954)] = 64327, + [SMALL_STATE(955)] = 64372, + [SMALL_STATE(956)] = 64396, + [SMALL_STATE(957)] = 64452, + [SMALL_STATE(958)] = 64508, + [SMALL_STATE(959)] = 64538, + [SMALL_STATE(960)] = 64564, + [SMALL_STATE(961)] = 64590, + [SMALL_STATE(962)] = 64646, + [SMALL_STATE(963)] = 64672, + [SMALL_STATE(964)] = 64728, + [SMALL_STATE(965)] = 64784, + [SMALL_STATE(966)] = 64839, + [SMALL_STATE(967)] = 64894, + [SMALL_STATE(968)] = 64925, + [SMALL_STATE(969)] = 64972, + [SMALL_STATE(970)] = 65019, + [SMALL_STATE(971)] = 65074, + [SMALL_STATE(972)] = 65121, + [SMALL_STATE(973)] = 65176, + [SMALL_STATE(974)] = 65223, + [SMALL_STATE(975)] = 65270, + [SMALL_STATE(976)] = 65317, + [SMALL_STATE(977)] = 65350, + [SMALL_STATE(978)] = 65405, + [SMALL_STATE(979)] = 65431, + [SMALL_STATE(980)] = 65461, + [SMALL_STATE(981)] = 65497, + [SMALL_STATE(982)] = 65523, + [SMALL_STATE(983)] = 65549, + [SMALL_STATE(984)] = 65575, + [SMALL_STATE(985)] = 65601, + [SMALL_STATE(986)] = 65633, + [SMALL_STATE(987)] = 65659, + [SMALL_STATE(988)] = 65685, + [SMALL_STATE(989)] = 65721, + [SMALL_STATE(990)] = 65747, + [SMALL_STATE(991)] = 65783, + [SMALL_STATE(992)] = 65807, + [SMALL_STATE(993)] = 65834, + [SMALL_STATE(994)] = 65859, + [SMALL_STATE(995)] = 65906, + [SMALL_STATE(996)] = 65931, + [SMALL_STATE(997)] = 65966, + [SMALL_STATE(998)] = 66001, + [SMALL_STATE(999)] = 66026, + [SMALL_STATE(1000)] = 66067, + [SMALL_STATE(1001)] = 66108, + [SMALL_STATE(1002)] = 66149, + [SMALL_STATE(1003)] = 66190, + [SMALL_STATE(1004)] = 66215, + [SMALL_STATE(1005)] = 66240, + [SMALL_STATE(1006)] = 66281, + [SMALL_STATE(1007)] = 66310, + [SMALL_STATE(1008)] = 66357, + [SMALL_STATE(1009)] = 66398, + [SMALL_STATE(1010)] = 66445, + [SMALL_STATE(1011)] = 66468, + [SMALL_STATE(1012)] = 66491, + [SMALL_STATE(1013)] = 66518, + [SMALL_STATE(1014)] = 66539, + [SMALL_STATE(1015)] = 66562, + [SMALL_STATE(1016)] = 66609, + [SMALL_STATE(1017)] = 66636, + [SMALL_STATE(1018)] = 66677, + [SMALL_STATE(1019)] = 66718, + [SMALL_STATE(1020)] = 66753, + [SMALL_STATE(1021)] = 66778, + [SMALL_STATE(1022)] = 66801, + [SMALL_STATE(1023)] = 66842, + [SMALL_STATE(1024)] = 66883, + [SMALL_STATE(1025)] = 66930, + [SMALL_STATE(1026)] = 66979, + [SMALL_STATE(1027)] = 67026, + [SMALL_STATE(1028)] = 67046, + [SMALL_STATE(1029)] = 67072, + [SMALL_STATE(1030)] = 67118, + [SMALL_STATE(1031)] = 67164, + [SMALL_STATE(1032)] = 67184, + [SMALL_STATE(1033)] = 67206, + [SMALL_STATE(1034)] = 67228, + [SMALL_STATE(1035)] = 67250, + [SMALL_STATE(1036)] = 67270, + [SMALL_STATE(1037)] = 67316, + [SMALL_STATE(1038)] = 67338, + [SMALL_STATE(1039)] = 67360, + [SMALL_STATE(1040)] = 67406, + [SMALL_STATE(1041)] = 67452, + [SMALL_STATE(1042)] = 67472, + [SMALL_STATE(1043)] = 67494, + [SMALL_STATE(1044)] = 67516, + [SMALL_STATE(1045)] = 67538, + [SMALL_STATE(1046)] = 67560, + [SMALL_STATE(1047)] = 67580, + [SMALL_STATE(1048)] = 67604, + [SMALL_STATE(1049)] = 67624, + [SMALL_STATE(1050)] = 67646, + [SMALL_STATE(1051)] = 67666, + [SMALL_STATE(1052)] = 67712, + [SMALL_STATE(1053)] = 67734, + [SMALL_STATE(1054)] = 67756, + [SMALL_STATE(1055)] = 67779, + [SMALL_STATE(1056)] = 67802, + [SMALL_STATE(1057)] = 67825, + [SMALL_STATE(1058)] = 67860, + [SMALL_STATE(1059)] = 67901, + [SMALL_STATE(1060)] = 67928, + [SMALL_STATE(1061)] = 67951, + [SMALL_STATE(1062)] = 67992, + [SMALL_STATE(1063)] = 68013, + [SMALL_STATE(1064)] = 68032, + [SMALL_STATE(1065)] = 68067, + [SMALL_STATE(1066)] = 68108, + [SMALL_STATE(1067)] = 68143, + [SMALL_STATE(1068)] = 68166, + [SMALL_STATE(1069)] = 68191, + [SMALL_STATE(1070)] = 68232, + [SMALL_STATE(1071)] = 68267, + [SMALL_STATE(1072)] = 68308, + [SMALL_STATE(1073)] = 68343, + [SMALL_STATE(1074)] = 68362, + [SMALL_STATE(1075)] = 68403, + [SMALL_STATE(1076)] = 68438, + [SMALL_STATE(1077)] = 68461, + [SMALL_STATE(1078)] = 68484, + [SMALL_STATE(1079)] = 68525, + [SMALL_STATE(1080)] = 68544, + [SMALL_STATE(1081)] = 68585, + [SMALL_STATE(1082)] = 68604, + [SMALL_STATE(1083)] = 68639, + [SMALL_STATE(1084)] = 68674, + [SMALL_STATE(1085)] = 68693, + [SMALL_STATE(1086)] = 68727, + [SMALL_STATE(1087)] = 68761, + [SMALL_STATE(1088)] = 68801, + [SMALL_STATE(1089)] = 68821, + [SMALL_STATE(1090)] = 68859, + [SMALL_STATE(1091)] = 68877, + [SMALL_STATE(1092)] = 68909, + [SMALL_STATE(1093)] = 68927, + [SMALL_STATE(1094)] = 68965, + [SMALL_STATE(1095)] = 68997, + [SMALL_STATE(1096)] = 69019, + [SMALL_STATE(1097)] = 69041, + [SMALL_STATE(1098)] = 69065, + [SMALL_STATE(1099)] = 69105, + [SMALL_STATE(1100)] = 69123, + [SMALL_STATE(1101)] = 69161, + [SMALL_STATE(1102)] = 69183, + [SMALL_STATE(1103)] = 69207, + [SMALL_STATE(1104)] = 69227, + [SMALL_STATE(1105)] = 69267, + [SMALL_STATE(1106)] = 69299, + [SMALL_STATE(1107)] = 69339, + [SMALL_STATE(1108)] = 69357, + [SMALL_STATE(1109)] = 69395, + [SMALL_STATE(1110)] = 69435, + [SMALL_STATE(1111)] = 69457, + [SMALL_STATE(1112)] = 69479, + [SMALL_STATE(1113)] = 69517, + [SMALL_STATE(1114)] = 69555, + [SMALL_STATE(1115)] = 69589, + [SMALL_STATE(1116)] = 69629, + [SMALL_STATE(1117)] = 69669, + [SMALL_STATE(1118)] = 69687, + [SMALL_STATE(1119)] = 69708, + [SMALL_STATE(1120)] = 69745, + [SMALL_STATE(1121)] = 69780, + [SMALL_STATE(1122)] = 69801, + [SMALL_STATE(1123)] = 69818, + [SMALL_STATE(1124)] = 69835, + [SMALL_STATE(1125)] = 69870, + [SMALL_STATE(1126)] = 69887, + [SMALL_STATE(1127)] = 69916, + [SMALL_STATE(1128)] = 69933, + [SMALL_STATE(1129)] = 69962, + [SMALL_STATE(1130)] = 69991, + [SMALL_STATE(1131)] = 70026, + [SMALL_STATE(1132)] = 70061, + [SMALL_STATE(1133)] = 70090, + [SMALL_STATE(1134)] = 70111, + [SMALL_STATE(1135)] = 70140, + [SMALL_STATE(1136)] = 70169, + [SMALL_STATE(1137)] = 70190, + [SMALL_STATE(1138)] = 70219, + [SMALL_STATE(1139)] = 70240, + [SMALL_STATE(1140)] = 70275, + [SMALL_STATE(1141)] = 70310, + [SMALL_STATE(1142)] = 70341, + [SMALL_STATE(1143)] = 70370, + [SMALL_STATE(1144)] = 70399, + [SMALL_STATE(1145)] = 70434, + [SMALL_STATE(1146)] = 70463, + [SMALL_STATE(1147)] = 70480, + [SMALL_STATE(1148)] = 70509, + [SMALL_STATE(1149)] = 70526, + [SMALL_STATE(1150)] = 70561, + [SMALL_STATE(1151)] = 70590, + [SMALL_STATE(1152)] = 70625, + [SMALL_STATE(1153)] = 70642, + [SMALL_STATE(1154)] = 70659, + [SMALL_STATE(1155)] = 70688, + [SMALL_STATE(1156)] = 70719, + [SMALL_STATE(1157)] = 70756, + [SMALL_STATE(1158)] = 70791, + [SMALL_STATE(1159)] = 70826, + [SMALL_STATE(1160)] = 70846, + [SMALL_STATE(1161)] = 70862, + [SMALL_STATE(1162)] = 70878, + [SMALL_STATE(1163)] = 70912, + [SMALL_STATE(1164)] = 70928, + [SMALL_STATE(1165)] = 70948, + [SMALL_STATE(1166)] = 70968, + [SMALL_STATE(1167)] = 70994, + [SMALL_STATE(1168)] = 71028, + [SMALL_STATE(1169)] = 71062, + [SMALL_STATE(1170)] = 71078, + [SMALL_STATE(1171)] = 71094, + [SMALL_STATE(1172)] = 71114, + [SMALL_STATE(1173)] = 71134, + [SMALL_STATE(1174)] = 71150, + [SMALL_STATE(1175)] = 71184, + [SMALL_STATE(1176)] = 71200, + [SMALL_STATE(1177)] = 71216, + [SMALL_STATE(1178)] = 71232, + [SMALL_STATE(1179)] = 71266, + [SMALL_STATE(1180)] = 71282, + [SMALL_STATE(1181)] = 71316, + [SMALL_STATE(1182)] = 71344, + [SMALL_STATE(1183)] = 71364, + [SMALL_STATE(1184)] = 71398, + [SMALL_STATE(1185)] = 71432, + [SMALL_STATE(1186)] = 71461, + [SMALL_STATE(1187)] = 71490, + [SMALL_STATE(1188)] = 71519, + [SMALL_STATE(1189)] = 71548, + [SMALL_STATE(1190)] = 71577, + [SMALL_STATE(1191)] = 71606, + [SMALL_STATE(1192)] = 71637, + [SMALL_STATE(1193)] = 71666, + [SMALL_STATE(1194)] = 71695, + [SMALL_STATE(1195)] = 71710, + [SMALL_STATE(1196)] = 71739, + [SMALL_STATE(1197)] = 71770, + [SMALL_STATE(1198)] = 71799, + [SMALL_STATE(1199)] = 71828, + [SMALL_STATE(1200)] = 71857, + [SMALL_STATE(1201)] = 71886, + [SMALL_STATE(1202)] = 71915, + [SMALL_STATE(1203)] = 71944, + [SMALL_STATE(1204)] = 71973, + [SMALL_STATE(1205)] = 71988, + [SMALL_STATE(1206)] = 72003, + [SMALL_STATE(1207)] = 72032, + [SMALL_STATE(1208)] = 72061, + [SMALL_STATE(1209)] = 72090, + [SMALL_STATE(1210)] = 72119, + [SMALL_STATE(1211)] = 72148, + [SMALL_STATE(1212)] = 72174, + [SMALL_STATE(1213)] = 72198, + [SMALL_STATE(1214)] = 72222, + [SMALL_STATE(1215)] = 72248, + [SMALL_STATE(1216)] = 72272, + [SMALL_STATE(1217)] = 72298, + [SMALL_STATE(1218)] = 72326, + [SMALL_STATE(1219)] = 72354, + [SMALL_STATE(1220)] = 72382, + [SMALL_STATE(1221)] = 72408, + [SMALL_STATE(1222)] = 72430, + [SMALL_STATE(1223)] = 72456, + [SMALL_STATE(1224)] = 72480, + [SMALL_STATE(1225)] = 72504, + [SMALL_STATE(1226)] = 72532, + [SMALL_STATE(1227)] = 72560, + [SMALL_STATE(1228)] = 72584, + [SMALL_STATE(1229)] = 72610, + [SMALL_STATE(1230)] = 72634, + [SMALL_STATE(1231)] = 72662, + [SMALL_STATE(1232)] = 72688, + [SMALL_STATE(1233)] = 72712, + [SMALL_STATE(1234)] = 72738, + [SMALL_STATE(1235)] = 72764, + [SMALL_STATE(1236)] = 72788, + [SMALL_STATE(1237)] = 72812, + [SMALL_STATE(1238)] = 72840, + [SMALL_STATE(1239)] = 72866, + [SMALL_STATE(1240)] = 72892, + [SMALL_STATE(1241)] = 72918, + [SMALL_STATE(1242)] = 72942, + [SMALL_STATE(1243)] = 72968, + [SMALL_STATE(1244)] = 72994, + [SMALL_STATE(1245)] = 73022, + [SMALL_STATE(1246)] = 73050, + [SMALL_STATE(1247)] = 73074, + [SMALL_STATE(1248)] = 73100, + [SMALL_STATE(1249)] = 73124, + [SMALL_STATE(1250)] = 73148, + [SMALL_STATE(1251)] = 73174, + [SMALL_STATE(1252)] = 73196, + [SMALL_STATE(1253)] = 73224, + [SMALL_STATE(1254)] = 73248, + [SMALL_STATE(1255)] = 73274, + [SMALL_STATE(1256)] = 73298, + [SMALL_STATE(1257)] = 73324, + [SMALL_STATE(1258)] = 73348, + [SMALL_STATE(1259)] = 73374, + [SMALL_STATE(1260)] = 73398, + [SMALL_STATE(1261)] = 73422, + [SMALL_STATE(1262)] = 73446, + [SMALL_STATE(1263)] = 73474, + [SMALL_STATE(1264)] = 73490, + [SMALL_STATE(1265)] = 73514, + [SMALL_STATE(1266)] = 73530, + [SMALL_STATE(1267)] = 73558, + [SMALL_STATE(1268)] = 73582, + [SMALL_STATE(1269)] = 73600, + [SMALL_STATE(1270)] = 73618, + [SMALL_STATE(1271)] = 73642, + [SMALL_STATE(1272)] = 73668, + [SMALL_STATE(1273)] = 73691, + [SMALL_STATE(1274)] = 73714, + [SMALL_STATE(1275)] = 73735, + [SMALL_STATE(1276)] = 73752, + [SMALL_STATE(1277)] = 73773, + [SMALL_STATE(1278)] = 73794, + [SMALL_STATE(1279)] = 73815, + [SMALL_STATE(1280)] = 73832, + [SMALL_STATE(1281)] = 73845, + [SMALL_STATE(1282)] = 73862, + [SMALL_STATE(1283)] = 73879, + [SMALL_STATE(1284)] = 73892, + [SMALL_STATE(1285)] = 73905, + [SMALL_STATE(1286)] = 73926, + [SMALL_STATE(1287)] = 73939, + [SMALL_STATE(1288)] = 73960, + [SMALL_STATE(1289)] = 73983, + [SMALL_STATE(1290)] = 74008, + [SMALL_STATE(1291)] = 74031, + [SMALL_STATE(1292)] = 74054, + [SMALL_STATE(1293)] = 74071, + [SMALL_STATE(1294)] = 74092, + [SMALL_STATE(1295)] = 74105, + [SMALL_STATE(1296)] = 74122, + [SMALL_STATE(1297)] = 74145, + [SMALL_STATE(1298)] = 74158, + [SMALL_STATE(1299)] = 74175, + [SMALL_STATE(1300)] = 74198, + [SMALL_STATE(1301)] = 74211, + [SMALL_STATE(1302)] = 74228, + [SMALL_STATE(1303)] = 74249, + [SMALL_STATE(1304)] = 74262, + [SMALL_STATE(1305)] = 74280, + [SMALL_STATE(1306)] = 74302, + [SMALL_STATE(1307)] = 74322, + [SMALL_STATE(1308)] = 74336, + [SMALL_STATE(1309)] = 74350, + [SMALL_STATE(1310)] = 74364, + [SMALL_STATE(1311)] = 74376, + [SMALL_STATE(1312)] = 74396, + [SMALL_STATE(1313)] = 74410, + [SMALL_STATE(1314)] = 74424, + [SMALL_STATE(1315)] = 74444, + [SMALL_STATE(1316)] = 74464, + [SMALL_STATE(1317)] = 74484, + [SMALL_STATE(1318)] = 74496, + [SMALL_STATE(1319)] = 74518, + [SMALL_STATE(1320)] = 74538, + [SMALL_STATE(1321)] = 74558, + [SMALL_STATE(1322)] = 74572, + [SMALL_STATE(1323)] = 74584, + [SMALL_STATE(1324)] = 74604, + [SMALL_STATE(1325)] = 74624, + [SMALL_STATE(1326)] = 74644, + [SMALL_STATE(1327)] = 74664, + [SMALL_STATE(1328)] = 74684, + [SMALL_STATE(1329)] = 74702, + [SMALL_STATE(1330)] = 74722, + [SMALL_STATE(1331)] = 74742, + [SMALL_STATE(1332)] = 74762, + [SMALL_STATE(1333)] = 74774, + [SMALL_STATE(1334)] = 74790, + [SMALL_STATE(1335)] = 74808, + [SMALL_STATE(1336)] = 74828, + [SMALL_STATE(1337)] = 74848, + [SMALL_STATE(1338)] = 74868, + [SMALL_STATE(1339)] = 74880, + [SMALL_STATE(1340)] = 74900, + [SMALL_STATE(1341)] = 74912, + [SMALL_STATE(1342)] = 74930, + [SMALL_STATE(1343)] = 74950, + [SMALL_STATE(1344)] = 74964, + [SMALL_STATE(1345)] = 74976, + [SMALL_STATE(1346)] = 74998, + [SMALL_STATE(1347)] = 75010, + [SMALL_STATE(1348)] = 75030, + [SMALL_STATE(1349)] = 75042, + [SMALL_STATE(1350)] = 75062, + [SMALL_STATE(1351)] = 75078, + [SMALL_STATE(1352)] = 75100, + [SMALL_STATE(1353)] = 75114, + [SMALL_STATE(1354)] = 75134, + [SMALL_STATE(1355)] = 75154, + [SMALL_STATE(1356)] = 75174, + [SMALL_STATE(1357)] = 75196, + [SMALL_STATE(1358)] = 75216, + [SMALL_STATE(1359)] = 75228, + [SMALL_STATE(1360)] = 75248, + [SMALL_STATE(1361)] = 75260, + [SMALL_STATE(1362)] = 75276, + [SMALL_STATE(1363)] = 75294, + [SMALL_STATE(1364)] = 75310, + [SMALL_STATE(1365)] = 75322, + [SMALL_STATE(1366)] = 75336, + [SMALL_STATE(1367)] = 75356, + [SMALL_STATE(1368)] = 75376, + [SMALL_STATE(1369)] = 75388, + [SMALL_STATE(1370)] = 75406, + [SMALL_STATE(1371)] = 75426, + [SMALL_STATE(1372)] = 75438, + [SMALL_STATE(1373)] = 75456, + [SMALL_STATE(1374)] = 75476, + [SMALL_STATE(1375)] = 75496, + [SMALL_STATE(1376)] = 75516, + [SMALL_STATE(1377)] = 75536, + [SMALL_STATE(1378)] = 75550, + [SMALL_STATE(1379)] = 75570, + [SMALL_STATE(1380)] = 75590, + [SMALL_STATE(1381)] = 75602, + [SMALL_STATE(1382)] = 75618, + [SMALL_STATE(1383)] = 75638, + [SMALL_STATE(1384)] = 75656, + [SMALL_STATE(1385)] = 75676, + [SMALL_STATE(1386)] = 75695, + [SMALL_STATE(1387)] = 75710, + [SMALL_STATE(1388)] = 75727, + [SMALL_STATE(1389)] = 75746, + [SMALL_STATE(1390)] = 75763, + [SMALL_STATE(1391)] = 75778, + [SMALL_STATE(1392)] = 75795, + [SMALL_STATE(1393)] = 75814, + [SMALL_STATE(1394)] = 75831, + [SMALL_STATE(1395)] = 75842, + [SMALL_STATE(1396)] = 75853, + [SMALL_STATE(1397)] = 75872, + [SMALL_STATE(1398)] = 75889, + [SMALL_STATE(1399)] = 75904, + [SMALL_STATE(1400)] = 75923, + [SMALL_STATE(1401)] = 75936, + [SMALL_STATE(1402)] = 75955, + [SMALL_STATE(1403)] = 75970, + [SMALL_STATE(1404)] = 75989, + [SMALL_STATE(1405)] = 76002, + [SMALL_STATE(1406)] = 76013, + [SMALL_STATE(1407)] = 76030, + [SMALL_STATE(1408)] = 76049, + [SMALL_STATE(1409)] = 76068, + [SMALL_STATE(1410)] = 76085, + [SMALL_STATE(1411)] = 76104, + [SMALL_STATE(1412)] = 76121, + [SMALL_STATE(1413)] = 76140, + [SMALL_STATE(1414)] = 76151, + [SMALL_STATE(1415)] = 76170, + [SMALL_STATE(1416)] = 76183, + [SMALL_STATE(1417)] = 76202, + [SMALL_STATE(1418)] = 76217, + [SMALL_STATE(1419)] = 76234, + [SMALL_STATE(1420)] = 76247, + [SMALL_STATE(1421)] = 76264, + [SMALL_STATE(1422)] = 76275, + [SMALL_STATE(1423)] = 76290, + [SMALL_STATE(1424)] = 76307, + [SMALL_STATE(1425)] = 76324, + [SMALL_STATE(1426)] = 76341, + [SMALL_STATE(1427)] = 76356, + [SMALL_STATE(1428)] = 76375, + [SMALL_STATE(1429)] = 76392, + [SMALL_STATE(1430)] = 76403, + [SMALL_STATE(1431)] = 76422, + [SMALL_STATE(1432)] = 76441, + [SMALL_STATE(1433)] = 76460, + [SMALL_STATE(1434)] = 76477, + [SMALL_STATE(1435)] = 76488, + [SMALL_STATE(1436)] = 76507, + [SMALL_STATE(1437)] = 76526, + [SMALL_STATE(1438)] = 76537, + [SMALL_STATE(1439)] = 76554, + [SMALL_STATE(1440)] = 76571, + [SMALL_STATE(1441)] = 76590, + [SMALL_STATE(1442)] = 76609, + [SMALL_STATE(1443)] = 76626, + [SMALL_STATE(1444)] = 76643, + [SMALL_STATE(1445)] = 76662, + [SMALL_STATE(1446)] = 76681, + [SMALL_STATE(1447)] = 76696, + [SMALL_STATE(1448)] = 76707, + [SMALL_STATE(1449)] = 76722, + [SMALL_STATE(1450)] = 76737, + [SMALL_STATE(1451)] = 76751, + [SMALL_STATE(1452)] = 76765, + [SMALL_STATE(1453)] = 76781, + [SMALL_STATE(1454)] = 76797, + [SMALL_STATE(1455)] = 76813, + [SMALL_STATE(1456)] = 76829, + [SMALL_STATE(1457)] = 76845, + [SMALL_STATE(1458)] = 76861, + [SMALL_STATE(1459)] = 76877, + [SMALL_STATE(1460)] = 76891, + [SMALL_STATE(1461)] = 76905, + [SMALL_STATE(1462)] = 76919, + [SMALL_STATE(1463)] = 76933, + [SMALL_STATE(1464)] = 76947, + [SMALL_STATE(1465)] = 76961, + [SMALL_STATE(1466)] = 76975, + [SMALL_STATE(1467)] = 76989, + [SMALL_STATE(1468)] = 77003, + [SMALL_STATE(1469)] = 77017, + [SMALL_STATE(1470)] = 77031, + [SMALL_STATE(1471)] = 77045, + [SMALL_STATE(1472)] = 77059, + [SMALL_STATE(1473)] = 77073, + [SMALL_STATE(1474)] = 77087, + [SMALL_STATE(1475)] = 77101, + [SMALL_STATE(1476)] = 77117, + [SMALL_STATE(1477)] = 77131, + [SMALL_STATE(1478)] = 77145, + [SMALL_STATE(1479)] = 77159, + [SMALL_STATE(1480)] = 77171, + [SMALL_STATE(1481)] = 77185, + [SMALL_STATE(1482)] = 77201, + [SMALL_STATE(1483)] = 77217, + [SMALL_STATE(1484)] = 77231, + [SMALL_STATE(1485)] = 77241, + [SMALL_STATE(1486)] = 77255, + [SMALL_STATE(1487)] = 77269, + [SMALL_STATE(1488)] = 77283, + [SMALL_STATE(1489)] = 77297, + [SMALL_STATE(1490)] = 77311, + [SMALL_STATE(1491)] = 77327, + [SMALL_STATE(1492)] = 77341, + [SMALL_STATE(1493)] = 77351, + [SMALL_STATE(1494)] = 77365, + [SMALL_STATE(1495)] = 77379, + [SMALL_STATE(1496)] = 77393, + [SMALL_STATE(1497)] = 77407, + [SMALL_STATE(1498)] = 77421, + [SMALL_STATE(1499)] = 77437, + [SMALL_STATE(1500)] = 77451, + [SMALL_STATE(1501)] = 77461, + [SMALL_STATE(1502)] = 77475, + [SMALL_STATE(1503)] = 77487, + [SMALL_STATE(1504)] = 77501, + [SMALL_STATE(1505)] = 77515, + [SMALL_STATE(1506)] = 77529, + [SMALL_STATE(1507)] = 77543, + [SMALL_STATE(1508)] = 77557, + [SMALL_STATE(1509)] = 77573, + [SMALL_STATE(1510)] = 77587, + [SMALL_STATE(1511)] = 77601, + [SMALL_STATE(1512)] = 77611, + [SMALL_STATE(1513)] = 77625, + [SMALL_STATE(1514)] = 77635, + [SMALL_STATE(1515)] = 77649, + [SMALL_STATE(1516)] = 77663, + [SMALL_STATE(1517)] = 77677, + [SMALL_STATE(1518)] = 77693, + [SMALL_STATE(1519)] = 77707, + [SMALL_STATE(1520)] = 77721, + [SMALL_STATE(1521)] = 77731, + [SMALL_STATE(1522)] = 77745, + [SMALL_STATE(1523)] = 77755, + [SMALL_STATE(1524)] = 77769, + [SMALL_STATE(1525)] = 77783, + [SMALL_STATE(1526)] = 77799, + [SMALL_STATE(1527)] = 77815, + [SMALL_STATE(1528)] = 77829, + [SMALL_STATE(1529)] = 77845, + [SMALL_STATE(1530)] = 77861, + [SMALL_STATE(1531)] = 77877, + [SMALL_STATE(1532)] = 77891, + [SMALL_STATE(1533)] = 77901, + [SMALL_STATE(1534)] = 77915, + [SMALL_STATE(1535)] = 77929, + [SMALL_STATE(1536)] = 77945, + [SMALL_STATE(1537)] = 77955, + [SMALL_STATE(1538)] = 77971, + [SMALL_STATE(1539)] = 77987, + [SMALL_STATE(1540)] = 77997, + [SMALL_STATE(1541)] = 78013, + [SMALL_STATE(1542)] = 78027, + [SMALL_STATE(1543)] = 78041, + [SMALL_STATE(1544)] = 78055, + [SMALL_STATE(1545)] = 78069, + [SMALL_STATE(1546)] = 78083, + [SMALL_STATE(1547)] = 78097, + [SMALL_STATE(1548)] = 78111, + [SMALL_STATE(1549)] = 78125, + [SMALL_STATE(1550)] = 78139, + [SMALL_STATE(1551)] = 78153, + [SMALL_STATE(1552)] = 78163, + [SMALL_STATE(1553)] = 78177, + [SMALL_STATE(1554)] = 78193, + [SMALL_STATE(1555)] = 78209, + [SMALL_STATE(1556)] = 78223, + [SMALL_STATE(1557)] = 78233, + [SMALL_STATE(1558)] = 78247, + [SMALL_STATE(1559)] = 78261, + [SMALL_STATE(1560)] = 78275, + [SMALL_STATE(1561)] = 78289, + [SMALL_STATE(1562)] = 78299, + [SMALL_STATE(1563)] = 78313, + [SMALL_STATE(1564)] = 78323, + [SMALL_STATE(1565)] = 78339, + [SMALL_STATE(1566)] = 78349, + [SMALL_STATE(1567)] = 78365, + [SMALL_STATE(1568)] = 78379, + [SMALL_STATE(1569)] = 78389, + [SMALL_STATE(1570)] = 78403, + [SMALL_STATE(1571)] = 78417, + [SMALL_STATE(1572)] = 78431, + [SMALL_STATE(1573)] = 78445, + [SMALL_STATE(1574)] = 78459, + [SMALL_STATE(1575)] = 78473, + [SMALL_STATE(1576)] = 78489, + [SMALL_STATE(1577)] = 78505, + [SMALL_STATE(1578)] = 78518, + [SMALL_STATE(1579)] = 78531, + [SMALL_STATE(1580)] = 78544, + [SMALL_STATE(1581)] = 78555, + [SMALL_STATE(1582)] = 78568, + [SMALL_STATE(1583)] = 78581, + [SMALL_STATE(1584)] = 78594, + [SMALL_STATE(1585)] = 78607, + [SMALL_STATE(1586)] = 78620, + [SMALL_STATE(1587)] = 78633, + [SMALL_STATE(1588)] = 78646, + [SMALL_STATE(1589)] = 78659, + [SMALL_STATE(1590)] = 78672, + [SMALL_STATE(1591)] = 78685, + [SMALL_STATE(1592)] = 78698, + [SMALL_STATE(1593)] = 78707, + [SMALL_STATE(1594)] = 78720, + [SMALL_STATE(1595)] = 78733, + [SMALL_STATE(1596)] = 78746, + [SMALL_STATE(1597)] = 78759, + [SMALL_STATE(1598)] = 78772, + [SMALL_STATE(1599)] = 78785, + [SMALL_STATE(1600)] = 78798, + [SMALL_STATE(1601)] = 78811, + [SMALL_STATE(1602)] = 78824, + [SMALL_STATE(1603)] = 78837, + [SMALL_STATE(1604)] = 78850, + [SMALL_STATE(1605)] = 78863, + [SMALL_STATE(1606)] = 78876, + [SMALL_STATE(1607)] = 78889, + [SMALL_STATE(1608)] = 78902, + [SMALL_STATE(1609)] = 78915, + [SMALL_STATE(1610)] = 78928, + [SMALL_STATE(1611)] = 78941, + [SMALL_STATE(1612)] = 78954, + [SMALL_STATE(1613)] = 78967, + [SMALL_STATE(1614)] = 78980, + [SMALL_STATE(1615)] = 78993, + [SMALL_STATE(1616)] = 79006, + [SMALL_STATE(1617)] = 79019, + [SMALL_STATE(1618)] = 79032, + [SMALL_STATE(1619)] = 79045, + [SMALL_STATE(1620)] = 79058, + [SMALL_STATE(1621)] = 79071, + [SMALL_STATE(1622)] = 79080, + [SMALL_STATE(1623)] = 79093, + [SMALL_STATE(1624)] = 79106, + [SMALL_STATE(1625)] = 79119, + [SMALL_STATE(1626)] = 79132, + [SMALL_STATE(1627)] = 79145, + [SMALL_STATE(1628)] = 79158, + [SMALL_STATE(1629)] = 79167, + [SMALL_STATE(1630)] = 79180, + [SMALL_STATE(1631)] = 79193, + [SMALL_STATE(1632)] = 79206, + [SMALL_STATE(1633)] = 79219, + [SMALL_STATE(1634)] = 79232, + [SMALL_STATE(1635)] = 79241, + [SMALL_STATE(1636)] = 79254, + [SMALL_STATE(1637)] = 79267, + [SMALL_STATE(1638)] = 79280, + [SMALL_STATE(1639)] = 79293, + [SMALL_STATE(1640)] = 79306, + [SMALL_STATE(1641)] = 79319, + [SMALL_STATE(1642)] = 79332, + [SMALL_STATE(1643)] = 79345, + [SMALL_STATE(1644)] = 79358, + [SMALL_STATE(1645)] = 79367, + [SMALL_STATE(1646)] = 79378, + [SMALL_STATE(1647)] = 79391, + [SMALL_STATE(1648)] = 79404, + [SMALL_STATE(1649)] = 79417, + [SMALL_STATE(1650)] = 79430, + [SMALL_STATE(1651)] = 79443, + [SMALL_STATE(1652)] = 79456, + [SMALL_STATE(1653)] = 79469, + [SMALL_STATE(1654)] = 79482, + [SMALL_STATE(1655)] = 79495, + [SMALL_STATE(1656)] = 79504, + [SMALL_STATE(1657)] = 79517, + [SMALL_STATE(1658)] = 79530, + [SMALL_STATE(1659)] = 79543, + [SMALL_STATE(1660)] = 79556, + [SMALL_STATE(1661)] = 79565, + [SMALL_STATE(1662)] = 79578, + [SMALL_STATE(1663)] = 79587, + [SMALL_STATE(1664)] = 79600, + [SMALL_STATE(1665)] = 79613, + [SMALL_STATE(1666)] = 79626, + [SMALL_STATE(1667)] = 79639, + [SMALL_STATE(1668)] = 79652, + [SMALL_STATE(1669)] = 79665, + [SMALL_STATE(1670)] = 79678, + [SMALL_STATE(1671)] = 79691, + [SMALL_STATE(1672)] = 79704, + [SMALL_STATE(1673)] = 79717, + [SMALL_STATE(1674)] = 79726, + [SMALL_STATE(1675)] = 79739, + [SMALL_STATE(1676)] = 79752, + [SMALL_STATE(1677)] = 79765, + [SMALL_STATE(1678)] = 79778, + [SMALL_STATE(1679)] = 79791, + [SMALL_STATE(1680)] = 79800, + [SMALL_STATE(1681)] = 79813, + [SMALL_STATE(1682)] = 79826, + [SMALL_STATE(1683)] = 79839, + [SMALL_STATE(1684)] = 79852, + [SMALL_STATE(1685)] = 79865, + [SMALL_STATE(1686)] = 79878, + [SMALL_STATE(1687)] = 79891, + [SMALL_STATE(1688)] = 79904, + [SMALL_STATE(1689)] = 79915, + [SMALL_STATE(1690)] = 79928, + [SMALL_STATE(1691)] = 79937, + [SMALL_STATE(1692)] = 79950, + [SMALL_STATE(1693)] = 79963, + [SMALL_STATE(1694)] = 79972, + [SMALL_STATE(1695)] = 79985, + [SMALL_STATE(1696)] = 79998, + [SMALL_STATE(1697)] = 80011, + [SMALL_STATE(1698)] = 80024, + [SMALL_STATE(1699)] = 80037, + [SMALL_STATE(1700)] = 80046, + [SMALL_STATE(1701)] = 80059, + [SMALL_STATE(1702)] = 80072, + [SMALL_STATE(1703)] = 80085, + [SMALL_STATE(1704)] = 80098, + [SMALL_STATE(1705)] = 80111, + [SMALL_STATE(1706)] = 80124, + [SMALL_STATE(1707)] = 80137, + [SMALL_STATE(1708)] = 80150, + [SMALL_STATE(1709)] = 80159, + [SMALL_STATE(1710)] = 80172, + [SMALL_STATE(1711)] = 80185, + [SMALL_STATE(1712)] = 80198, + [SMALL_STATE(1713)] = 80211, + [SMALL_STATE(1714)] = 80224, + [SMALL_STATE(1715)] = 80237, + [SMALL_STATE(1716)] = 80246, + [SMALL_STATE(1717)] = 80259, + [SMALL_STATE(1718)] = 80272, + [SMALL_STATE(1719)] = 80285, + [SMALL_STATE(1720)] = 80298, + [SMALL_STATE(1721)] = 80311, + [SMALL_STATE(1722)] = 80324, + [SMALL_STATE(1723)] = 80337, + [SMALL_STATE(1724)] = 80350, + [SMALL_STATE(1725)] = 80363, + [SMALL_STATE(1726)] = 80376, + [SMALL_STATE(1727)] = 80389, + [SMALL_STATE(1728)] = 80402, + [SMALL_STATE(1729)] = 80415, + [SMALL_STATE(1730)] = 80428, + [SMALL_STATE(1731)] = 80441, + [SMALL_STATE(1732)] = 80450, + [SMALL_STATE(1733)] = 80463, + [SMALL_STATE(1734)] = 80476, + [SMALL_STATE(1735)] = 80489, + [SMALL_STATE(1736)] = 80502, + [SMALL_STATE(1737)] = 80515, + [SMALL_STATE(1738)] = 80528, + [SMALL_STATE(1739)] = 80541, + [SMALL_STATE(1740)] = 80550, + [SMALL_STATE(1741)] = 80563, + [SMALL_STATE(1742)] = 80576, + [SMALL_STATE(1743)] = 80589, + [SMALL_STATE(1744)] = 80602, + [SMALL_STATE(1745)] = 80615, + [SMALL_STATE(1746)] = 80628, + [SMALL_STATE(1747)] = 80641, + [SMALL_STATE(1748)] = 80654, + [SMALL_STATE(1749)] = 80663, + [SMALL_STATE(1750)] = 80676, + [SMALL_STATE(1751)] = 80689, + [SMALL_STATE(1752)] = 80702, + [SMALL_STATE(1753)] = 80715, + [SMALL_STATE(1754)] = 80728, + [SMALL_STATE(1755)] = 80741, + [SMALL_STATE(1756)] = 80754, + [SMALL_STATE(1757)] = 80763, + [SMALL_STATE(1758)] = 80776, + [SMALL_STATE(1759)] = 80789, + [SMALL_STATE(1760)] = 80802, + [SMALL_STATE(1761)] = 80815, + [SMALL_STATE(1762)] = 80828, + [SMALL_STATE(1763)] = 80841, + [SMALL_STATE(1764)] = 80854, + [SMALL_STATE(1765)] = 80867, + [SMALL_STATE(1766)] = 80880, + [SMALL_STATE(1767)] = 80893, + [SMALL_STATE(1768)] = 80906, + [SMALL_STATE(1769)] = 80919, + [SMALL_STATE(1770)] = 80932, + [SMALL_STATE(1771)] = 80945, + [SMALL_STATE(1772)] = 80958, + [SMALL_STATE(1773)] = 80971, + [SMALL_STATE(1774)] = 80984, + [SMALL_STATE(1775)] = 80997, + [SMALL_STATE(1776)] = 81010, + [SMALL_STATE(1777)] = 81023, + [SMALL_STATE(1778)] = 81036, + [SMALL_STATE(1779)] = 81046, + [SMALL_STATE(1780)] = 81054, + [SMALL_STATE(1781)] = 81064, + [SMALL_STATE(1782)] = 81074, + [SMALL_STATE(1783)] = 81084, + [SMALL_STATE(1784)] = 81092, + [SMALL_STATE(1785)] = 81102, + [SMALL_STATE(1786)] = 81110, + [SMALL_STATE(1787)] = 81120, + [SMALL_STATE(1788)] = 81130, + [SMALL_STATE(1789)] = 81140, + [SMALL_STATE(1790)] = 81148, + [SMALL_STATE(1791)] = 81158, + [SMALL_STATE(1792)] = 81168, + [SMALL_STATE(1793)] = 81176, + [SMALL_STATE(1794)] = 81186, + [SMALL_STATE(1795)] = 81194, + [SMALL_STATE(1796)] = 81202, + [SMALL_STATE(1797)] = 81212, + [SMALL_STATE(1798)] = 81222, + [SMALL_STATE(1799)] = 81232, + [SMALL_STATE(1800)] = 81240, + [SMALL_STATE(1801)] = 81248, + [SMALL_STATE(1802)] = 81258, + [SMALL_STATE(1803)] = 81266, + [SMALL_STATE(1804)] = 81276, + [SMALL_STATE(1805)] = 81284, + [SMALL_STATE(1806)] = 81294, + [SMALL_STATE(1807)] = 81304, + [SMALL_STATE(1808)] = 81312, + [SMALL_STATE(1809)] = 81320, + [SMALL_STATE(1810)] = 81328, + [SMALL_STATE(1811)] = 81338, + [SMALL_STATE(1812)] = 81348, + [SMALL_STATE(1813)] = 81356, + [SMALL_STATE(1814)] = 81364, + [SMALL_STATE(1815)] = 81374, + [SMALL_STATE(1816)] = 81382, + [SMALL_STATE(1817)] = 81390, + [SMALL_STATE(1818)] = 81400, + [SMALL_STATE(1819)] = 81408, + [SMALL_STATE(1820)] = 81418, + [SMALL_STATE(1821)] = 81428, + [SMALL_STATE(1822)] = 81438, + [SMALL_STATE(1823)] = 81448, + [SMALL_STATE(1824)] = 81458, + [SMALL_STATE(1825)] = 81466, + [SMALL_STATE(1826)] = 81476, + [SMALL_STATE(1827)] = 81486, + [SMALL_STATE(1828)] = 81494, + [SMALL_STATE(1829)] = 81502, + [SMALL_STATE(1830)] = 81512, + [SMALL_STATE(1831)] = 81522, + [SMALL_STATE(1832)] = 81532, + [SMALL_STATE(1833)] = 81542, + [SMALL_STATE(1834)] = 81550, + [SMALL_STATE(1835)] = 81558, + [SMALL_STATE(1836)] = 81566, + [SMALL_STATE(1837)] = 81576, + [SMALL_STATE(1838)] = 81584, + [SMALL_STATE(1839)] = 81594, + [SMALL_STATE(1840)] = 81602, + [SMALL_STATE(1841)] = 81612, + [SMALL_STATE(1842)] = 81620, + [SMALL_STATE(1843)] = 81630, + [SMALL_STATE(1844)] = 81638, + [SMALL_STATE(1845)] = 81646, + [SMALL_STATE(1846)] = 81654, + [SMALL_STATE(1847)] = 81662, + [SMALL_STATE(1848)] = 81672, + [SMALL_STATE(1849)] = 81682, + [SMALL_STATE(1850)] = 81692, + [SMALL_STATE(1851)] = 81702, + [SMALL_STATE(1852)] = 81710, + [SMALL_STATE(1853)] = 81720, + [SMALL_STATE(1854)] = 81728, + [SMALL_STATE(1855)] = 81736, + [SMALL_STATE(1856)] = 81746, + [SMALL_STATE(1857)] = 81754, + [SMALL_STATE(1858)] = 81762, + [SMALL_STATE(1859)] = 81770, + [SMALL_STATE(1860)] = 81780, + [SMALL_STATE(1861)] = 81790, + [SMALL_STATE(1862)] = 81798, + [SMALL_STATE(1863)] = 81806, + [SMALL_STATE(1864)] = 81814, + [SMALL_STATE(1865)] = 81824, + [SMALL_STATE(1866)] = 81834, + [SMALL_STATE(1867)] = 81844, + [SMALL_STATE(1868)] = 81854, + [SMALL_STATE(1869)] = 81864, + [SMALL_STATE(1870)] = 81874, + [SMALL_STATE(1871)] = 81884, + [SMALL_STATE(1872)] = 81892, + [SMALL_STATE(1873)] = 81902, + [SMALL_STATE(1874)] = 81912, + [SMALL_STATE(1875)] = 81922, + [SMALL_STATE(1876)] = 81930, + [SMALL_STATE(1877)] = 81938, + [SMALL_STATE(1878)] = 81946, + [SMALL_STATE(1879)] = 81954, + [SMALL_STATE(1880)] = 81962, + [SMALL_STATE(1881)] = 81972, + [SMALL_STATE(1882)] = 81982, + [SMALL_STATE(1883)] = 81992, + [SMALL_STATE(1884)] = 82002, + [SMALL_STATE(1885)] = 82010, + [SMALL_STATE(1886)] = 82018, + [SMALL_STATE(1887)] = 82028, + [SMALL_STATE(1888)] = 82038, + [SMALL_STATE(1889)] = 82046, + [SMALL_STATE(1890)] = 82056, + [SMALL_STATE(1891)] = 82064, + [SMALL_STATE(1892)] = 82074, + [SMALL_STATE(1893)] = 82082, + [SMALL_STATE(1894)] = 82090, + [SMALL_STATE(1895)] = 82100, + [SMALL_STATE(1896)] = 82110, + [SMALL_STATE(1897)] = 82120, + [SMALL_STATE(1898)] = 82130, + [SMALL_STATE(1899)] = 82140, + [SMALL_STATE(1900)] = 82150, + [SMALL_STATE(1901)] = 82160, + [SMALL_STATE(1902)] = 82170, + [SMALL_STATE(1903)] = 82180, + [SMALL_STATE(1904)] = 82190, + [SMALL_STATE(1905)] = 82198, + [SMALL_STATE(1906)] = 82206, + [SMALL_STATE(1907)] = 82214, + [SMALL_STATE(1908)] = 82224, + [SMALL_STATE(1909)] = 82232, + [SMALL_STATE(1910)] = 82240, + [SMALL_STATE(1911)] = 82248, + [SMALL_STATE(1912)] = 82258, + [SMALL_STATE(1913)] = 82266, + [SMALL_STATE(1914)] = 82276, + [SMALL_STATE(1915)] = 82286, + [SMALL_STATE(1916)] = 82296, + [SMALL_STATE(1917)] = 82306, + [SMALL_STATE(1918)] = 82316, + [SMALL_STATE(1919)] = 82326, + [SMALL_STATE(1920)] = 82334, + [SMALL_STATE(1921)] = 82342, + [SMALL_STATE(1922)] = 82352, + [SMALL_STATE(1923)] = 82360, + [SMALL_STATE(1924)] = 82370, + [SMALL_STATE(1925)] = 82380, + [SMALL_STATE(1926)] = 82390, + [SMALL_STATE(1927)] = 82398, + [SMALL_STATE(1928)] = 82406, + [SMALL_STATE(1929)] = 82414, + [SMALL_STATE(1930)] = 82422, + [SMALL_STATE(1931)] = 82430, + [SMALL_STATE(1932)] = 82438, + [SMALL_STATE(1933)] = 82448, + [SMALL_STATE(1934)] = 82458, + [SMALL_STATE(1935)] = 82468, + [SMALL_STATE(1936)] = 82476, + [SMALL_STATE(1937)] = 82486, + [SMALL_STATE(1938)] = 82494, + [SMALL_STATE(1939)] = 82504, + [SMALL_STATE(1940)] = 82514, + [SMALL_STATE(1941)] = 82524, + [SMALL_STATE(1942)] = 82534, + [SMALL_STATE(1943)] = 82544, + [SMALL_STATE(1944)] = 82552, + [SMALL_STATE(1945)] = 82562, + [SMALL_STATE(1946)] = 82570, + [SMALL_STATE(1947)] = 82578, + [SMALL_STATE(1948)] = 82586, + [SMALL_STATE(1949)] = 82596, + [SMALL_STATE(1950)] = 82604, + [SMALL_STATE(1951)] = 82612, + [SMALL_STATE(1952)] = 82622, + [SMALL_STATE(1953)] = 82630, + [SMALL_STATE(1954)] = 82638, + [SMALL_STATE(1955)] = 82648, + [SMALL_STATE(1956)] = 82658, + [SMALL_STATE(1957)] = 82668, + [SMALL_STATE(1958)] = 82678, + [SMALL_STATE(1959)] = 82688, + [SMALL_STATE(1960)] = 82698, + [SMALL_STATE(1961)] = 82708, + [SMALL_STATE(1962)] = 82716, + [SMALL_STATE(1963)] = 82726, + [SMALL_STATE(1964)] = 82734, + [SMALL_STATE(1965)] = 82744, + [SMALL_STATE(1966)] = 82754, + [SMALL_STATE(1967)] = 82764, + [SMALL_STATE(1968)] = 82772, + [SMALL_STATE(1969)] = 82780, + [SMALL_STATE(1970)] = 82788, + [SMALL_STATE(1971)] = 82798, + [SMALL_STATE(1972)] = 82808, + [SMALL_STATE(1973)] = 82816, + [SMALL_STATE(1974)] = 82824, + [SMALL_STATE(1975)] = 82834, + [SMALL_STATE(1976)] = 82842, + [SMALL_STATE(1977)] = 82850, + [SMALL_STATE(1978)] = 82860, + [SMALL_STATE(1979)] = 82868, + [SMALL_STATE(1980)] = 82876, + [SMALL_STATE(1981)] = 82884, + [SMALL_STATE(1982)] = 82892, + [SMALL_STATE(1983)] = 82902, + [SMALL_STATE(1984)] = 82912, + [SMALL_STATE(1985)] = 82922, + [SMALL_STATE(1986)] = 82930, + [SMALL_STATE(1987)] = 82940, + [SMALL_STATE(1988)] = 82950, + [SMALL_STATE(1989)] = 82958, + [SMALL_STATE(1990)] = 82968, + [SMALL_STATE(1991)] = 82978, + [SMALL_STATE(1992)] = 82986, + [SMALL_STATE(1993)] = 82994, + [SMALL_STATE(1994)] = 83004, + [SMALL_STATE(1995)] = 83014, + [SMALL_STATE(1996)] = 83024, + [SMALL_STATE(1997)] = 83034, + [SMALL_STATE(1998)] = 83044, + [SMALL_STATE(1999)] = 83051, + [SMALL_STATE(2000)] = 83058, + [SMALL_STATE(2001)] = 83065, + [SMALL_STATE(2002)] = 83072, + [SMALL_STATE(2003)] = 83079, + [SMALL_STATE(2004)] = 83086, + [SMALL_STATE(2005)] = 83093, + [SMALL_STATE(2006)] = 83100, + [SMALL_STATE(2007)] = 83107, + [SMALL_STATE(2008)] = 83114, + [SMALL_STATE(2009)] = 83121, + [SMALL_STATE(2010)] = 83128, + [SMALL_STATE(2011)] = 83135, + [SMALL_STATE(2012)] = 83142, + [SMALL_STATE(2013)] = 83149, + [SMALL_STATE(2014)] = 83156, + [SMALL_STATE(2015)] = 83163, + [SMALL_STATE(2016)] = 83170, + [SMALL_STATE(2017)] = 83177, + [SMALL_STATE(2018)] = 83184, + [SMALL_STATE(2019)] = 83191, + [SMALL_STATE(2020)] = 83198, + [SMALL_STATE(2021)] = 83205, + [SMALL_STATE(2022)] = 83212, + [SMALL_STATE(2023)] = 83219, + [SMALL_STATE(2024)] = 83226, + [SMALL_STATE(2025)] = 83233, + [SMALL_STATE(2026)] = 83240, + [SMALL_STATE(2027)] = 83247, + [SMALL_STATE(2028)] = 83254, + [SMALL_STATE(2029)] = 83261, + [SMALL_STATE(2030)] = 83268, + [SMALL_STATE(2031)] = 83275, + [SMALL_STATE(2032)] = 83282, + [SMALL_STATE(2033)] = 83289, + [SMALL_STATE(2034)] = 83296, + [SMALL_STATE(2035)] = 83303, + [SMALL_STATE(2036)] = 83310, + [SMALL_STATE(2037)] = 83317, + [SMALL_STATE(2038)] = 83324, + [SMALL_STATE(2039)] = 83331, + [SMALL_STATE(2040)] = 83338, + [SMALL_STATE(2041)] = 83345, + [SMALL_STATE(2042)] = 83352, + [SMALL_STATE(2043)] = 83359, + [SMALL_STATE(2044)] = 83366, + [SMALL_STATE(2045)] = 83373, + [SMALL_STATE(2046)] = 83380, + [SMALL_STATE(2047)] = 83387, + [SMALL_STATE(2048)] = 83394, + [SMALL_STATE(2049)] = 83401, + [SMALL_STATE(2050)] = 83408, + [SMALL_STATE(2051)] = 83415, + [SMALL_STATE(2052)] = 83422, + [SMALL_STATE(2053)] = 83429, + [SMALL_STATE(2054)] = 83436, + [SMALL_STATE(2055)] = 83443, + [SMALL_STATE(2056)] = 83450, + [SMALL_STATE(2057)] = 83457, + [SMALL_STATE(2058)] = 83464, + [SMALL_STATE(2059)] = 83471, + [SMALL_STATE(2060)] = 83478, + [SMALL_STATE(2061)] = 83485, + [SMALL_STATE(2062)] = 83492, + [SMALL_STATE(2063)] = 83499, + [SMALL_STATE(2064)] = 83506, + [SMALL_STATE(2065)] = 83513, + [SMALL_STATE(2066)] = 83520, + [SMALL_STATE(2067)] = 83527, + [SMALL_STATE(2068)] = 83534, + [SMALL_STATE(2069)] = 83541, + [SMALL_STATE(2070)] = 83548, + [SMALL_STATE(2071)] = 83555, + [SMALL_STATE(2072)] = 83562, + [SMALL_STATE(2073)] = 83569, + [SMALL_STATE(2074)] = 83576, + [SMALL_STATE(2075)] = 83583, + [SMALL_STATE(2076)] = 83590, + [SMALL_STATE(2077)] = 83597, + [SMALL_STATE(2078)] = 83604, + [SMALL_STATE(2079)] = 83611, + [SMALL_STATE(2080)] = 83618, + [SMALL_STATE(2081)] = 83625, + [SMALL_STATE(2082)] = 83632, + [SMALL_STATE(2083)] = 83639, + [SMALL_STATE(2084)] = 83646, + [SMALL_STATE(2085)] = 83653, + [SMALL_STATE(2086)] = 83660, + [SMALL_STATE(2087)] = 83667, + [SMALL_STATE(2088)] = 83674, + [SMALL_STATE(2089)] = 83681, + [SMALL_STATE(2090)] = 83688, + [SMALL_STATE(2091)] = 83695, + [SMALL_STATE(2092)] = 83702, + [SMALL_STATE(2093)] = 83709, + [SMALL_STATE(2094)] = 83716, + [SMALL_STATE(2095)] = 83723, + [SMALL_STATE(2096)] = 83730, + [SMALL_STATE(2097)] = 83737, + [SMALL_STATE(2098)] = 83744, + [SMALL_STATE(2099)] = 83751, + [SMALL_STATE(2100)] = 83758, + [SMALL_STATE(2101)] = 83765, + [SMALL_STATE(2102)] = 83772, + [SMALL_STATE(2103)] = 83779, + [SMALL_STATE(2104)] = 83786, + [SMALL_STATE(2105)] = 83793, + [SMALL_STATE(2106)] = 83800, + [SMALL_STATE(2107)] = 83807, + [SMALL_STATE(2108)] = 83814, + [SMALL_STATE(2109)] = 83821, + [SMALL_STATE(2110)] = 83828, + [SMALL_STATE(2111)] = 83835, + [SMALL_STATE(2112)] = 83842, + [SMALL_STATE(2113)] = 83849, + [SMALL_STATE(2114)] = 83856, + [SMALL_STATE(2115)] = 83863, + [SMALL_STATE(2116)] = 83870, + [SMALL_STATE(2117)] = 83877, + [SMALL_STATE(2118)] = 83884, + [SMALL_STATE(2119)] = 83891, + [SMALL_STATE(2120)] = 83898, + [SMALL_STATE(2121)] = 83905, + [SMALL_STATE(2122)] = 83912, + [SMALL_STATE(2123)] = 83919, + [SMALL_STATE(2124)] = 83926, + [SMALL_STATE(2125)] = 83933, + [SMALL_STATE(2126)] = 83940, + [SMALL_STATE(2127)] = 83947, + [SMALL_STATE(2128)] = 83954, + [SMALL_STATE(2129)] = 83961, + [SMALL_STATE(2130)] = 83968, + [SMALL_STATE(2131)] = 83975, + [SMALL_STATE(2132)] = 83982, + [SMALL_STATE(2133)] = 83989, + [SMALL_STATE(2134)] = 83996, + [SMALL_STATE(2135)] = 84003, + [SMALL_STATE(2136)] = 84010, + [SMALL_STATE(2137)] = 84017, + [SMALL_STATE(2138)] = 84024, + [SMALL_STATE(2139)] = 84031, + [SMALL_STATE(2140)] = 84038, + [SMALL_STATE(2141)] = 84045, + [SMALL_STATE(2142)] = 84052, + [SMALL_STATE(2143)] = 84059, + [SMALL_STATE(2144)] = 84066, + [SMALL_STATE(2145)] = 84073, + [SMALL_STATE(2146)] = 84080, + [SMALL_STATE(2147)] = 84087, + [SMALL_STATE(2148)] = 84094, + [SMALL_STATE(2149)] = 84101, + [SMALL_STATE(2150)] = 84108, + [SMALL_STATE(2151)] = 84115, + [SMALL_STATE(2152)] = 84122, + [SMALL_STATE(2153)] = 84129, + [SMALL_STATE(2154)] = 84136, + [SMALL_STATE(2155)] = 84143, + [SMALL_STATE(2156)] = 84150, + [SMALL_STATE(2157)] = 84157, + [SMALL_STATE(2158)] = 84164, + [SMALL_STATE(2159)] = 84171, + [SMALL_STATE(2160)] = 84178, + [SMALL_STATE(2161)] = 84185, + [SMALL_STATE(2162)] = 84192, + [SMALL_STATE(2163)] = 84199, + [SMALL_STATE(2164)] = 84206, + [SMALL_STATE(2165)] = 84213, + [SMALL_STATE(2166)] = 84220, + [SMALL_STATE(2167)] = 84227, + [SMALL_STATE(2168)] = 84234, + [SMALL_STATE(2169)] = 84241, + [SMALL_STATE(2170)] = 84248, + [SMALL_STATE(2171)] = 84255, + [SMALL_STATE(2172)] = 84262, + [SMALL_STATE(2173)] = 84269, + [SMALL_STATE(2174)] = 84276, + [SMALL_STATE(2175)] = 84283, + [SMALL_STATE(2176)] = 84290, + [SMALL_STATE(2177)] = 84297, + [SMALL_STATE(2178)] = 84304, + [SMALL_STATE(2179)] = 84311, + [SMALL_STATE(2180)] = 84318, + [SMALL_STATE(2181)] = 84325, + [SMALL_STATE(2182)] = 84332, + [SMALL_STATE(2183)] = 84339, + [SMALL_STATE(2184)] = 84346, + [SMALL_STATE(2185)] = 84353, + [SMALL_STATE(2186)] = 84360, + [SMALL_STATE(2187)] = 84367, + [SMALL_STATE(2188)] = 84374, + [SMALL_STATE(2189)] = 84381, + [SMALL_STATE(2190)] = 84388, + [SMALL_STATE(2191)] = 84395, + [SMALL_STATE(2192)] = 84402, + [SMALL_STATE(2193)] = 84409, + [SMALL_STATE(2194)] = 84416, + [SMALL_STATE(2195)] = 84423, + [SMALL_STATE(2196)] = 84430, + [SMALL_STATE(2197)] = 84437, + [SMALL_STATE(2198)] = 84444, + [SMALL_STATE(2199)] = 84451, + [SMALL_STATE(2200)] = 84458, + [SMALL_STATE(2201)] = 84465, + [SMALL_STATE(2202)] = 84472, + [SMALL_STATE(2203)] = 84479, + [SMALL_STATE(2204)] = 84486, + [SMALL_STATE(2205)] = 84493, + [SMALL_STATE(2206)] = 84500, + [SMALL_STATE(2207)] = 84507, + [SMALL_STATE(2208)] = 84514, + [SMALL_STATE(2209)] = 84521, + [SMALL_STATE(2210)] = 84528, + [SMALL_STATE(2211)] = 84535, + [SMALL_STATE(2212)] = 84542, + [SMALL_STATE(2213)] = 84549, + [SMALL_STATE(2214)] = 84556, + [SMALL_STATE(2215)] = 84563, + [SMALL_STATE(2216)] = 84570, + [SMALL_STATE(2217)] = 84577, + [SMALL_STATE(2218)] = 84584, + [SMALL_STATE(2219)] = 84591, + [SMALL_STATE(2220)] = 84598, + [SMALL_STATE(2221)] = 84605, + [SMALL_STATE(2222)] = 84612, + [SMALL_STATE(2223)] = 84619, + [SMALL_STATE(2224)] = 84626, + [SMALL_STATE(2225)] = 84633, + [SMALL_STATE(2226)] = 84640, + [SMALL_STATE(2227)] = 84647, + [SMALL_STATE(2228)] = 84654, + [SMALL_STATE(2229)] = 84661, + [SMALL_STATE(2230)] = 84668, + [SMALL_STATE(2231)] = 84675, + [SMALL_STATE(2232)] = 84682, + [SMALL_STATE(2233)] = 84689, + [SMALL_STATE(2234)] = 84696, + [SMALL_STATE(2235)] = 84703, + [SMALL_STATE(2236)] = 84710, + [SMALL_STATE(2237)] = 84717, + [SMALL_STATE(2238)] = 84724, + [SMALL_STATE(2239)] = 84731, + [SMALL_STATE(2240)] = 84738, + [SMALL_STATE(2241)] = 84745, + [SMALL_STATE(2242)] = 84752, + [SMALL_STATE(2243)] = 84759, + [SMALL_STATE(2244)] = 84766, + [SMALL_STATE(2245)] = 84773, + [SMALL_STATE(2246)] = 84780, + [SMALL_STATE(2247)] = 84787, + [SMALL_STATE(2248)] = 84794, + [SMALL_STATE(2249)] = 84801, + [SMALL_STATE(2250)] = 84808, + [SMALL_STATE(2251)] = 84815, + [SMALL_STATE(2252)] = 84822, + [SMALL_STATE(2253)] = 84829, + [SMALL_STATE(2254)] = 84836, + [SMALL_STATE(2255)] = 84843, + [SMALL_STATE(2256)] = 84850, + [SMALL_STATE(2257)] = 84857, + [SMALL_STATE(2258)] = 84864, + [SMALL_STATE(2259)] = 84871, + [SMALL_STATE(2260)] = 84878, + [SMALL_STATE(2261)] = 84885, + [SMALL_STATE(2262)] = 84892, + [SMALL_STATE(2263)] = 84899, + [SMALL_STATE(2264)] = 84906, + [SMALL_STATE(2265)] = 84913, + [SMALL_STATE(2266)] = 84920, + [SMALL_STATE(2267)] = 84927, + [SMALL_STATE(2268)] = 84934, + [SMALL_STATE(2269)] = 84941, + [SMALL_STATE(2270)] = 84948, + [SMALL_STATE(2271)] = 84955, + [SMALL_STATE(2272)] = 84962, + [SMALL_STATE(2273)] = 84969, + [SMALL_STATE(2274)] = 84976, + [SMALL_STATE(2275)] = 84983, + [SMALL_STATE(2276)] = 84990, + [SMALL_STATE(2277)] = 84997, + [SMALL_STATE(2278)] = 85004, + [SMALL_STATE(2279)] = 85011, + [SMALL_STATE(2280)] = 85018, + [SMALL_STATE(2281)] = 85025, + [SMALL_STATE(2282)] = 85032, + [SMALL_STATE(2283)] = 85039, + [SMALL_STATE(2284)] = 85046, + [SMALL_STATE(2285)] = 85053, + [SMALL_STATE(2286)] = 85060, + [SMALL_STATE(2287)] = 85067, + [SMALL_STATE(2288)] = 85074, + [SMALL_STATE(2289)] = 85081, + [SMALL_STATE(2290)] = 85088, + [SMALL_STATE(2291)] = 85095, + [SMALL_STATE(2292)] = 85102, + [SMALL_STATE(2293)] = 85109, + [SMALL_STATE(2294)] = 85116, + [SMALL_STATE(2295)] = 85123, + [SMALL_STATE(2296)] = 85130, + [SMALL_STATE(2297)] = 85137, + [SMALL_STATE(2298)] = 85144, + [SMALL_STATE(2299)] = 85151, + [SMALL_STATE(2300)] = 85158, + [SMALL_STATE(2301)] = 85165, + [SMALL_STATE(2302)] = 85172, + [SMALL_STATE(2303)] = 85179, + [SMALL_STATE(2304)] = 85186, + [SMALL_STATE(2305)] = 85193, + [SMALL_STATE(2306)] = 85200, + [SMALL_STATE(2307)] = 85207, + [SMALL_STATE(2308)] = 85214, + [SMALL_STATE(2309)] = 85221, + [SMALL_STATE(2310)] = 85228, + [SMALL_STATE(2311)] = 85235, + [SMALL_STATE(2312)] = 85242, + [SMALL_STATE(2313)] = 85249, + [SMALL_STATE(2314)] = 85256, + [SMALL_STATE(2315)] = 85263, + [SMALL_STATE(2316)] = 85270, + [SMALL_STATE(2317)] = 85277, + [SMALL_STATE(2318)] = 85284, + [SMALL_STATE(2319)] = 85291, + [SMALL_STATE(2320)] = 85298, + [SMALL_STATE(2321)] = 85305, + [SMALL_STATE(2322)] = 85312, + [SMALL_STATE(2323)] = 85319, + [SMALL_STATE(2324)] = 85326, + [SMALL_STATE(2325)] = 85333, + [SMALL_STATE(2326)] = 85340, + [SMALL_STATE(2327)] = 85347, + [SMALL_STATE(2328)] = 85354, + [SMALL_STATE(2329)] = 85361, + [SMALL_STATE(2330)] = 85368, + [SMALL_STATE(2331)] = 85375, + [SMALL_STATE(2332)] = 85382, + [SMALL_STATE(2333)] = 85389, + [SMALL_STATE(2334)] = 85396, + [SMALL_STATE(2335)] = 85403, + [SMALL_STATE(2336)] = 85410, + [SMALL_STATE(2337)] = 85417, + [SMALL_STATE(2338)] = 85424, + [SMALL_STATE(2339)] = 85431, + [SMALL_STATE(2340)] = 85438, + [SMALL_STATE(2341)] = 85445, + [SMALL_STATE(2342)] = 85452, + [SMALL_STATE(2343)] = 85459, + [SMALL_STATE(2344)] = 85466, + [SMALL_STATE(2345)] = 85473, + [SMALL_STATE(2346)] = 85480, + [SMALL_STATE(2347)] = 85487, + [SMALL_STATE(2348)] = 85494, + [SMALL_STATE(2349)] = 85501, + [SMALL_STATE(2350)] = 85508, + [SMALL_STATE(2351)] = 85515, + [SMALL_STATE(2352)] = 85522, + [SMALL_STATE(2353)] = 85529, + [SMALL_STATE(2354)] = 85536, + [SMALL_STATE(2355)] = 85543, + [SMALL_STATE(2356)] = 85550, + [SMALL_STATE(2357)] = 85557, + [SMALL_STATE(2358)] = 85564, + [SMALL_STATE(2359)] = 85571, + [SMALL_STATE(2360)] = 85578, + [SMALL_STATE(2361)] = 85585, + [SMALL_STATE(2362)] = 85592, + [SMALL_STATE(2363)] = 85599, + [SMALL_STATE(2364)] = 85606, + [SMALL_STATE(2365)] = 85613, + [SMALL_STATE(2366)] = 85620, + [SMALL_STATE(2367)] = 85627, + [SMALL_STATE(2368)] = 85634, + [SMALL_STATE(2369)] = 85641, + [SMALL_STATE(2370)] = 85648, + [SMALL_STATE(2371)] = 85655, + [SMALL_STATE(2372)] = 85662, + [SMALL_STATE(2373)] = 85669, + [SMALL_STATE(2374)] = 85676, + [SMALL_STATE(2375)] = 85683, + [SMALL_STATE(2376)] = 85690, + [SMALL_STATE(2377)] = 85697, + [SMALL_STATE(2378)] = 85704, + [SMALL_STATE(2379)] = 85711, + [SMALL_STATE(2380)] = 85718, + [SMALL_STATE(2381)] = 85725, + [SMALL_STATE(2382)] = 85732, + [SMALL_STATE(2383)] = 85739, + [SMALL_STATE(2384)] = 85746, + [SMALL_STATE(2385)] = 85753, + [SMALL_STATE(2386)] = 85760, + [SMALL_STATE(2387)] = 85767, + [SMALL_STATE(2388)] = 85774, + [SMALL_STATE(2389)] = 85781, + [SMALL_STATE(2390)] = 85788, + [SMALL_STATE(2391)] = 85795, + [SMALL_STATE(2392)] = 85802, + [SMALL_STATE(2393)] = 85809, + [SMALL_STATE(2394)] = 85816, + [SMALL_STATE(2395)] = 85823, + [SMALL_STATE(2396)] = 85830, + [SMALL_STATE(2397)] = 85837, + [SMALL_STATE(2398)] = 85844, + [SMALL_STATE(2399)] = 85851, + [SMALL_STATE(2400)] = 85858, + [SMALL_STATE(2401)] = 85865, + [SMALL_STATE(2402)] = 85872, + [SMALL_STATE(2403)] = 85879, + [SMALL_STATE(2404)] = 85886, + [SMALL_STATE(2405)] = 85893, + [SMALL_STATE(2406)] = 85900, + [SMALL_STATE(2407)] = 85907, + [SMALL_STATE(2408)] = 85914, + [SMALL_STATE(2409)] = 85921, + [SMALL_STATE(2410)] = 85928, + [SMALL_STATE(2411)] = 85935, + [SMALL_STATE(2412)] = 85942, + [SMALL_STATE(2413)] = 85949, + [SMALL_STATE(2414)] = 85956, + [SMALL_STATE(2415)] = 85963, + [SMALL_STATE(2416)] = 85970, + [SMALL_STATE(2417)] = 85977, + [SMALL_STATE(2418)] = 85984, + [SMALL_STATE(2419)] = 85991, + [SMALL_STATE(2420)] = 85998, + [SMALL_STATE(2421)] = 86005, + [SMALL_STATE(2422)] = 86012, + [SMALL_STATE(2423)] = 86019, + [SMALL_STATE(2424)] = 86026, + [SMALL_STATE(2425)] = 86033, + [SMALL_STATE(2426)] = 86040, + [SMALL_STATE(2427)] = 86047, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -91056,2045 +92817,2095 @@ 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(1820), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), [31] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 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), + [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [35] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 2), [43] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 2), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 1), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_types, 1), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), - [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), - [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 2), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_types, 2), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 5), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 3), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_repeat1, 2), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1977), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2141), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 5), - [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 5), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1820), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1757), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(980), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2320), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1558), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2308), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2302), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1541), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1561), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1562), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1794), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(775), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1890), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1792), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1401), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(845), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(678), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(675), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(415), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1013), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 3), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 3), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 4), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 4), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2072), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2020), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2197), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2295), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2187), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2164), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1996), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2118), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2095), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1820), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1757), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(980), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2320), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1558), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2308), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2302), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1541), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1561), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1562), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(415), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), + [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), + [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_length, 3), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_length, 3), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), + [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 3), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 5), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_repeat1, 2), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2004), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2174), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1826), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1780), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1025), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2390), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1579), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2387), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2386), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1452), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1580), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1581), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1994), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(843), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1924), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1986), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1412), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(737), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(712), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(697), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(411), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1044), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 4), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 4), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 5), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 5), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 3), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 3), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2048), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2102), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2233), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2254), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2222), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2025), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2198), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2150), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2126), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1826), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1780), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1025), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2390), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1579), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2387), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1580), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1581), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(411), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1302), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2278), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1756), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2066), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1817), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1322), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2215), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1290), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2289), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1899), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1815), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1726), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1813), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2221), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2223), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1810), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2232), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1153), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2240), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1281), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2236), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1827), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(742), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1805), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1088), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2273), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2269), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2262), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1784), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1309), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2267), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(705), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2048), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1223), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1341), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2255), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(800), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(688), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(703), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1235), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1198), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(676), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, .production_id = 1), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 5), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1383), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2318), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1943), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2090), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1941), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1341), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2089), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1900), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1990), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1687), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1996), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2030), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2029), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1993), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2022), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1176), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2021), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1372), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2330), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1328), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2273), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1369), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2306), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(754), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1898), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1092), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2163), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2148), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2139), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1911), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1783), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(717), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2077), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1261), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1362), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2293), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(766), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(726), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(708), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1236), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1253), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(703), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, .production_id = 1), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(1908), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1410), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1258), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), - [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1419), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1197), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 5), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(821), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 4), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 1), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1226), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 3), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 2), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 3), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1700), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 5), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 3), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1263), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1430), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(1814), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1431), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1246), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 2), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 5), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 1), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 3), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 4), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1647), [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 2), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(695), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 3), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(718), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(842), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 3), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1241), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(756), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 2), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(718), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1407), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1871), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1443), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(704), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 1), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1599), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1273), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1793), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 3), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 5), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), SHIFT_REPEAT(672), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1320), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(674), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1911), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1549), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1348), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1676), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), - [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1515), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1699), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1306), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1930), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1483), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(1115), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 1), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 3), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10, .production_id = 5), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1407), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 3), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1850), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1806), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(705), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1276), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1518), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1767), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 5), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 1), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 3), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1936), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(692), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1956), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1304), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), SHIFT_REPEAT(694), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1554), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1770), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1697), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1539), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1318), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(1130), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1288), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1530), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 1), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 3), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10, .production_id = 5), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 6), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 7), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 6), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 4), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 6), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 4), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 6), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 7), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4207] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), }; #ifdef __cplusplus diff --git a/test/corpus/create_table_statement.txt b/test/corpus/create_table_statement.txt index b476ad2..31cd3ea 100644 --- a/test/corpus/create_table_statement.txt +++ b/test/corpus/create_table_statement.txt @@ -55,6 +55,54 @@ create unlogged table foo(); ) ) +================================================================================ +create table with predefined types +================================================================================ +create table foo( + col1 numeric, + col2 numeric(2), + col3 numeric(2, 4), + col4 varchar, + col5 varchar(255) +); +-------------------------------------------------------------------------------- + +(source_file + (create_table_statement + (identifier) + (create_table_item + (table_column_item + (identifier) + (predefined_type) + ) + ) + (create_table_item + (table_column_item + (identifier) + (predefined_type (precision (number))) + ) + ) + (create_table_item + (table_column_item + (identifier) + (predefined_type (precision (number) (number))) + ) + ) + (create_table_item + (table_column_item + (identifier) + (predefined_type) + ) + ) + (create_table_item + (table_column_item + (identifier) + (predefined_type (type_length (number))) + ) + ) + ) +) + ================================================================================ constraints with deferred ================================================================================ @@ -85,7 +133,7 @@ create table foo( (create_table_item (table_column_item (identifier) - (predefined_types + (predefined_type (precision (number) (number))) @@ -137,7 +185,7 @@ create table foo( (create_table_item (table_column_item (identifier) - (predefined_types + (predefined_type (precision (number) (number))) diff --git a/tree-sitter-plpgsql.wasm b/tree-sitter-plpgsql.wasm index 7df80ea..a4ea96b 100755 Binary files a/tree-sitter-plpgsql.wasm and b/tree-sitter-plpgsql.wasm differ